html {
  margin:0;
  scroll-behavior: smooth; /* Enables smooth scrolling for anchor links */
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #000;
  padding: 20px 60px; /* Increased padding for a larger navbar */
  position: relative;
}


.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 120px;
  width: auto;
  margin-right: 20px;
}

.brand {
  font-weight: bold;
  font-size: 24px; /* Bigger brand text */
  color: white;
}

.menu {
  display: flex;
  list-style: none;
  gap: 40px; /* More space between menu items */
  padding: 0;
  margin: 0;
}

.menu a {
  text-decoration: none;
  color: white;
  font-size: 18px; /* Bigger text */
  position: relative;
  padding: 8px 0;
}

.menu a.active {
  color: orange;
}

.menu a::after {
  content: "";
  display: block;
  height: 3px;
  width: 0%;
  background: orange;
  transition: width 0.3s ease;
  position: absolute;
  bottom: 0;
  left: 0;
}

.menu a:hover::after {
  width: 100%;
}

.menu a:hover {
  color: white;
}

.intro-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 40px;
  gap: 50px;
}

.intro-text {
  flex: 1;
  color: white;
}

.intro-text h1 {
  font-size: 36px;
  color: orange;
  margin-bottom: 20px;
}

.intro-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #ddd;
}
.intro-image {
  max-width: 800px; /* Increase container width */
  width: 100%;
  text-align: center;
  margin: 0 auto;/* Center the container */
  overflow: hidden;
   /* Prevent overflow */
}

.intro-image video {
  width: 100%;
  margin-left: 10px; /* Restrict the video width to the container size */
  height: auto; /* Maintain aspect ratio */
  object-fit: contain; /* Ensure it fits nicely */
  border-radius: 20px; /* Add rounded corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Add a subtle shadow */
}
.divider {
  width: 200px; /* Length of the divider */
  height: 4px; /* Thickness of the divider */
  margin: 40px auto; /* Center the divider and add vertical spacing */
  background: linear-gradient(to right, orange, transparent); /* Orange to transparent gradient */
  border-radius: 2px; /* Rounded edges */
}
.dividerwhite {
  width: 200px; /* Length of the divider */
  height: 4px; /* Thickness of the divider */
  margin: 40px auto; /* Center the divider and add vertical spacing */
  background: linear-gradient(to right, rgb(243, 242, 240), transparent); /* Orange to transparent gradient */
  border-radius: 2px; /* Rounded edges */
}
.reveal {
  opacity: 0; /* Make the element invisible initially */
  transform: translateY(20px); /* Slight downward shift */
  transition: opacity 0.6s ease, transform 0.6s ease; /* Smooth transition */
}

.reveal.visible {
  opacity: 1; /* Make the element fully visible */
  transform: translateY(0); /* Reset the position */
}


.features-section {
  text-align: center;
  padding: 40px 20px;
  background-color: black;
}









.features-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive columns */
  gap: 20px;
  align-items: stretch; /* Ensures all cards stretch to the same height */
}

.feature-card {
  display: flex;
  flex-direction: column; /* Stack content vertically */
  justify-content: space-between; /* Spread content evenly */
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-height: 370px;
}


.feature-image {
  width: 100%;
  height: 190px; /* Adjust height as needed */
  overflow: hidden;
}

.feature-image img {
  margin-top: 2px;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the entire area */
}

.feature-title {
  font-size: 1.2em;
  margin: 10px 0 5px; /* Adjust spacing */
  color: black;
  font-weight: bold;
}

.feature-description {
  font-size: 1em;
  color:grey;
  padding: 0 10px 20px; /* Add padding for spacing */
}
.pricing-section {
  text-align: center;
  margin: 50px 0; /* Add spacing around the section */
}

.features-title {
  font-size: 3em;
  font-weight: bold;
  margin-bottom: 10px;
  color: orange; /* Highlight the title in orange */
}

.features-subtitle {
  font-size: 1.2em;
  font-weight: normal;
  color: grey; /* Keep the subtitle in white */
  margin-bottom: 20px;
}

/* From Uiverse.io by Wendell47 */ 
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border: 0;
  width: 200px;
  position: relative;
  overflow: hidden;
  border-radius: 10rem;
  transition: all 0.02s;
  font-weight: bold;
  cursor: pointer;
  color: rgb(37, 37, 37);
  z-index: 0;
  box-shadow: 0 0px 7px -5px rgba(0, 0, 0, 0.5);
}

.button:hover {
  background: rgb(255, 167, 248);
  color: rgb(85, 27, 0);
}

.button:active {
  transform: scale(0.97);
}

.hoverEffect {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hoverEffect div {
  background: rgb(222, 0, 75);
  background: linear-gradient(
    90deg,
    rgba(222, 0, 75, 1) 0%,
    rgb(239, 168, 25) 49%,
    rgb(162, 81, 30) 100%
  );
  border-radius: 40rem;
  width: 10rem;
  height: 10rem;
  transition: 0.4s;
  filter: blur(20px);
  animation: effect infinite 3s linear;
  opacity: 0.5;
}

.button:hover .hoverEffect div {
  width: 8rem;
  height: 8rem;
}

@keyframes effect {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.pricing-container {
  display: flex;
  margin-top: 30px;
  justify-content: center;
  gap: 2rem;
}

.card {
  position: relative;
  background: #fff;
  color: #000;
  border-radius: 16px;
  padding: 2rem;
  width: 280px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.card.premium {
  background: linear-gradient(180deg, #ff9900 0%, #ffd699 100%);




  color:BLACK;
}

.label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #eee;
  color: #000;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.card.premium .label {
  background-color: #fff;
  color: #ff7b00;
}

.price {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 20px;
}

.amount {
  color: #fff;
  font-weight: 900;
}

.per {
  color: #f0f0f0; /* light grey */
  font-weight: 100;
  margin-left: 4px;
  font-size: 18px;
}
.amountblack {
  color: #020202;
  font-weight: 700;
}
.perblack {
  color: #3d3d3d; /* light grey */
  font-weight: 100;
  margin-left: 4px;
  font-size: 18px;
}


.desc {
  font-size: 0.95rem;
 
  line-height: 1.5;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features li {
  margin-bottom: 0.5rem;
}

.features li::before {
  content: '✔ ';
  color: inherit;
  font-weight: bold;
}

.contact-section {
  text-align: center;
  margin: 50px 0;
 
} 
/* contact */
.contact-titles {
  font-size: 3em;
  font-weight: bold;
  margin-bottom: 1px;
  color: orange; /* Highlight the title in orange */
}

.contact-subtitles {
  font-size: 1.2em;
  font-weight: normal;
  margin-top: 1px;
  color: grey; /* Keep the subtitle in white */
  margin-bottom: 20px;
}




/* === Two-column grid on desktop via the section’s ID === */
#contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 0 1rem;      /* optional horizontal padding */
  text-align: left;     /* override center only inside cards */
}

/* switch to two columns on larger screens */
@media (min-width: 500px) {
  #contact {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Force the main headings to span full width */
#contact .contact-titles,
#contact .contact-subtitles {
  grid-column: 1 / -1;
}


/* === Card wrapper styling === */
#contact .contact-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* === Left (form) card tweaks === */
#contact .contact-card--form {
  text-align: left;  /* override inherited center */
}
#contact .contact-pretitle {
  color: #f97316;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}
#contact .contact-titles,
#contact .contact-subtitles {
  grid-column: 1 / -1;   /* span full width of the grid */
  text-align: center;    /* center the text */
  margin-left: auto;
  margin-right: auto;
}
#contact .contact-title{
  color: black;
  margin-top: 1px;
  margin-bottom: 1px;
}
/* Optional: shrink the subtitle’s max-width so it’s not ultra-wide */
#contact .contact-subtitles {
  max-width: 600px;
}
#contact .contact-desc {
  color: #555;
  font-size: 1rem;
  margin-bottom: 1rem;
  margin-top: 1px;
}

/* form grid */
#contact .contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
#contact .form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 480px) {
  #contact .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}
#contact .form-group label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  color: #333;
}
#contact .form-group input,
#contact .form-group textarea {
  width: 90%;
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  background: #f8fafc;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
#contact .form-group input:focus,
#contact .form-group textarea:focus {
  outline: none;
  border-color: #60a5fa;
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.4);
}
#contact .form-group textarea {
  min-height: 8rem;
  resize: vertical;
}
#contact .btn-submit {
  align-self: flex-start;
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
#contact .btn-submit:hover {
  background: #1e40af;
}

/* === Right (info) card tweaks === */
#contact .contact-card--info {
  text-align: center;
  align-items: center;
}
#contact .contact-image {
  
    max-width: 60%; /* Adjust as needed */
    height: auto; /* Maintain aspect ratio */
    margin: 0 auto; /* Center the image */
  }

#contact .contact-details {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#contact .info-line {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
}

.icon-link {
  text-decoration: none;
  transition: transform 0.2s, fill 0.2s, color 0.2s;
}

.icon {
  width: 32px;
  height: 32px;
  fill: black; /* Default color */
  transition: transform 0.2s, fill 0.2s;
}

/* Hover Effects */
.mail-icon:hover .icon {
  fill: red; /* Email icon turns red on hover */
  transform: scale(1.1); /* Slightly enlarge on hover */
}

.instagram-icon:hover .icon {
  fill: pink; /* Instagram icon turns pink on hover */
  transform: scale(1.1); /* Slightly enlarge on hover */
}

.facebook:hover .icon {
  fill: blue; /* Facebook icon turns blue on hover */
  transform: scale(1.1); /* Slightly enlarge on hover */
}

.linkdin:hover .icon {
  fill: blue; /* LinkedIn icon turns blue on hover */
  transform: scale(1.1); /* Slightly enlarge on hover */
}
