* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
}
@font-face {
  font-family: "hadding";
  src: url(fonts/BaarMetanoia-BWZ8.ttf);
}

@font-face {
  font-family: "text";
  src: url(fonts/TitilliumWeb-1eq2.ttf);
}


#main{
    position: relative;
    width: 100%;
    height: 100%;
}
/* loader */
#green{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #7ebb42;
}

/* Navbar */




.nav-links {
  margin: 0 auto; /* center the whole container */
  font-family: "hadding";
  font-weight: bold;
  font-size: 1.5rem;
  display: flex;
  list-style: none;
  gap: 10rem;
  align-items: center;
  justify-content: center; /* center the links inside */
  padding: 10px 60px 10px 60px;
  border: 1px solid rgb(16, 203, 94);
  border-radius: 10px;
  width: fit-content; /* make width adjust to content */
}

.nav-links .navlist .navlink {
  position: relative;
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  
}

.nav-links .navlist .navlink::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #000000;
  transition: width 0.3s ease;
}

.nav-links  .navlist .navlink:hover::before {
  width: 100%;
}

.navbar {
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 0 0 5em;
  gap: 20px;
  flex-wrap: wrap;
  padding: 1rem 2rem;
  color: white;
  position: relative;
}

.logo-box,
.talk-btn {
  height: 60px;
  display: flex;
  align-items: center;
  border: 1px solid #47ba39;
  border-radius: 12px;
  padding: 0 20px;
  background: white;
  font-size: clamp(14px, 5vw, 18px); 
}

/* LOGO */
.logo-box {
  padding: 0 35px;
  border: 1px solid rgb(16, 203, 94);
  border-radius: 10px;
}

.logo {
  height: 30px;
}

.logo-box .logo{
    width: 10rem;
}

/* NAVIGATION LINKS */
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

.navbar-logo {
  padding: 0 35px;
  border: 1px solid rgb(16, 203, 94);
  border-radius: 10px;
}

.navbar-logo .logo-img {
  width: 10rem;
}

/* BUTTON */
.talk-btn {
  padding: 0 25px;
  border: 1px solid rgb(16, 203, 94);
  border-radius: 10px;
  color: #47ba39;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.talk-btn:hover {
  background-color: #47ba39;
  color: white;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #47ba39;
  border-radius: 2px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
.navbar{
    margin: auto;

}

  .logo-box {
 margin-left: 25px;
}
 .hamburger span {
 background-color: #000000;
 margin-right: 25px;
  }
  .nav-links {
    height: 20em;
    position: absolute;
    top: 70px;
    right: 30px;
    background: #7ebb42;
    flex-direction: column;
    gap: 30px;
    padding: 40px;
    display: none;
    z-index: 100;
  }

  .nav-links .navlist .navlink {
  position: relative;
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: bold; 
}

.logo-box,
.talk-btn {
  height: 60px;
  display: flex;
  align-items: center;
  border: 1px solid #47ba39;
  border-radius: 12px;
  padding: 0 20px;
  background: white;
  font-size: clamp(14px, 3vw, 18px); 
}

  .nav-links.show {
    display: flex;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

@media (min-width: 769px) {
  .mobile-only {
    display: none;
  }
}
/* Responsive Navbar */
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */


/* Header Container*/


 #videoSection {
      position: relative;
      width: 100%;
      height: 100dvh; 
      overflow: hidden;
      background-color: #7ebb42;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
      transition: border-radius 0.5s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    #heroVideo {
      margin-top: 10px;
      margin-left: 10px;
      position: absolute;
      border-radius: 50px;
      top: 0;
      left: 0;
      width: 99%;
      height: 97%;
      object-fit: cover;
      z-index: 1;
    }

    .content-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  max-width: 90%;
  margin: auto;
  display: inline-block;
}

/* Responsive tweaks for small screens */



@media (max-width: 600px) {
  .content-overlay {
    padding: 1rem;
    font-size: 0.9rem;
    max-width: 80%;
  }

  .content-overlay h1 {
    font-size: 1rem;
  }

  .content-overlay p {
    font-size: 0.5rem;
  }
}


    .content-overlay h1 {
      font-size: 3rem;
      font-weight: bold;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .content-overlay h1 {
        font-size: 2rem;
      }

      #videoSection {
        height: 100dvh;
      }

      #heroVideo {
        object-fit: cover;
      position: absolute;
      border-radius: 50px;
      }
    }

     @media (max-width: 768px) {
      #heroVideo {
        object-fit: cover; 
        height: 50dvh;
        margin: 2px 2px 2px 2px;
      }

      .content-overlay h1 {
        font-size: 1.75rem;
        padding: 0 1rem;
      }

      #videoSection {
        height: 50dvh;
        padding: 0;
      }
    }

     @media (max-width: 468px) {
      #heroVideo {
        object-fit: cover; 
         height: 50dvh;
         margin: 2px 2px 2px 2px;
      position: absolute;
      border-radius: 50px;
      }

      .content-overlay h1 {
        font-size: 1.75rem;
        padding: 0 1rem;
      }

      #videoSection {
        height: 50dvh;
        padding: 0;
      }
    }

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
/* 1st section */

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
/* ========== BRAND HEADING SECTION ========== */
.brand-heading-section {
  padding: clamp(20px, 5vw, 60px) clamp(16px, 5vw, 40px) 0;
}

.brand-heading-container {
  max-width: clamp(300px, 90%, 1200px);
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.brand-heading-container  .brand-title {
  font-size: clamp(32px, 10vw, 120px);
  font-family: "hadding";
  color: #111;
  line-height: 1;
  margin: 0;
}

.brand {
  color: #7ebb42;
  font-weight: 600;
}


/* ========== ABOUT SECTION (IMAGE + TEXT) ========== */

.image-text-section {
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 60px);
}

.image-text-section .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 4vw, 60px);
}

.image-text-section .left,
.image-text-section .right {
  flex: 1 1 45%;
  min-width: 280px;
}

.image-text-section img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.image-text-section .right .abtp {
  padding: 10px 0px;  
  font-family: "text";
  font-size: clamp(16px, 2vw, 26px);
  line-height: 1.6;
  font-weight: 400;
  color: #111;
  text-align: left;
  font-family: "text";
}

/* Apply the same custom green-black gradient to all */
.bg-text {
  font-weight: bold;
  display: inline-block;
  background-size: 300% 300%;
  background-position: center;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  padding: 0 4px;
  animation: gradientShift 3s linear infinite;
  font-size: inherit;
}

.creative,
.design,
.data,
.spark,
.grow {
  background-image: linear-gradient(
    270deg,
    #475832,
    #68913c,
    #7ebb42,
    #000000,
    #7ebb42,
    #68913c,
    #475832
  );
}

/* Smooth fast animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}


/* ========== BUTTON STYLING ========== */
.abtbtn {
  margin: 15px auto 0;
  padding: 10px 15px;
  background-color: white;
  color: #7ebb42;
  border: 2px solid #7ebb42;
  border-radius: 8px;
  font-family: "hadding";
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-align: center;
}


.abtbtn:hover {
  background-color: #7ebb42;
  letter-spacing: 5px;
  border-color: #ffffff;
  color: #ffffff;
}

.about-video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  border: 5px solid #7ebb42;
}

/* 2nd section >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
 .track-section {
      background-color: #7ebb42;
      padding: 60px 20px 100px;
      border-radius: 30px;
      margin-top: 30px;
      position: relative;
    }

    .track-label {
      position: absolute;
      top: -30px;
      left: 30px;
      background-color: #ffffff;
      color: #000000;
      padding: 15px 25px;
      border-radius: 25px;
      font-family: "hadding";
      font-size: 30px;
      font-weight: bold;
    }

    .cards {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      margin-top: 40px;
      
    }

    .card {
      border-radius: 20px;
      padding: 40px;
      flex: 1 1 250px;
      min-width: 260px;
      max-width: 300px;
      height: 250px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    }

    .white-card, .dark-card ,.green-card {
      position: relative;
  background: rgba(255, 255, 255, 0.25); /* semi-white frosted glass */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.2);
  transform: perspective(1000px) translateZ(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 20px;
  z-index: 1;
  color: #000; 
    }
.green-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0) 60%
  );
  border-radius: 20px;
  pointer-events: none;
  z-index: 2;
}

.card:hover {
   transform: perspective(1000px) translateZ(40px) scale(1.03);
  box-shadow: 0 35px 60px rgba(0, 0, 0, 0.4);
}

    .card h2 {
      font-size: 36px;
      margin-bottom: 10px;
    }

    .card p {
      font-size: 16px;
    }





    /*  */

#services {
  padding: 60px 20px;
  border-radius: 10px;
  background-color: #7ebb42;
}
 


.service-card img:hover{
  transform: scale(1.2);
}


.service-card img {
  height: 50px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-family: "hadding";
  font-size: 20px;
  font-weight: 600;

  margin-bottom: 10px;
}

.service-card p {
  font-family: "text";
  font-size: 15px;

  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .services-title {
    font-size: 32px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 14px;
  }
}

.servicebtn {
  margin-top: 30px;
  padding: 10px 20px;
  background-color: white;            
  color: #7ebb42;                    
  border: 2px solid #7ebb42;        
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none; 
  display: inline-block; 
}

.servicebtn:hover {
  background-color: #000000;            
  color: #7ebb42;
}


  @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
  }

  /* Responsive */
  @media (max-width: 768px) {
  .services-left{
    display: none;
  }
    .services-container {
      flex-direction: column;
    }

    .services-heading {
      padding-left: 20px ;
      font-weight: bold;
      font-size: 30px;
     }

    .services-subtext {
      padding-left: 20px ;
      font-size: 16px;
    }

    .service-title {
      font-size: 20px;
    }
    .excrd{
      display: none;
    }
    #cardnone{
      display: none;
    }
    .call-form input,
  .call-form textarea {
    width: 100%;
    margin-bottom: 10px;
  }

  .schedule-btn {
    display: none !important;
  }
    
  }


  .mobile-heading {
  display: none;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 12px;
  text-align: center;
  color: #7ebb42;
}

@media (max-width: 768px) {
  .mobile-heading {
    display: block;
  }
}


/* work section */

.work-section {
  width: 100%;
  min-height: 100vh;
  background-color: #ffffff;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  perspective: 1200px;
}

.work-heading {
  text-align: center;
  margin-bottom: 40px;
}

.work-title {
font-family: "hadding";
  font-size: 40px;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.work-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

/* Cards */
.work-card {
  position: relative;
  width: 400px;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.08);
}

.work-card:nth-child(1),
.work-card:nth-child(4),
.work-card:nth-child(7) {
  transform: rotateY(-12deg);
}

.work-card:nth-child(3),
.work-card:nth-child(6),
.work-card:nth-child(9) {
  transform: rotateY(12deg);
}

.work-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-text {
  font-family: "text";
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

/* ============ RESPONSIVE FIX ============ */

@media (max-width: 991px) {
  .work-wrapper {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }

  .work-card {
    max-width: 260px;
    height: 200px;
    transform: none !important;
  }

  .work-section {
    perspective: none;
  }
}

@media (max-width: 576px) {
  .work-wrapper {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .work-card {
    max-width: 90vw;
    height: 220px;
    transform: none !important;
  }

  .work-title {
    font-size: 22px;
  }

  .work-text {
    font-size: 14px;
  }
}
















.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #7ebb42;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 9999;
}
@media (pointer: coarse), (max-width: 1024px) {
  .cursor-dot {
    display: none !important;
  }
}


/* whatsapp */
  @keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: #25D366;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  animation: pulse 2s infinite;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.15);
}

.whatsapp-float img {
  width: 40px;
  height: 40px;
}











/* footer */
.footer {
  width: 100%;
  background-color: #7ebb42;
}


/* Fullscreen Coming Soon Section */
.coming-soon-section {
  height: 50vh;
  width: 100%;
  background-color: #7ebb42;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

/* Glowing Gradient Text */
.footer-coming {
  font-family: "hadding";
  font-size: 8rem;
  font-weight: bold;
  background: linear-gradient(45deg, #ffffff, #71f923);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: glow 2s infinite alternate;
}

/* Social icon */
.footer-social {
  margin-top: 10px;
}

.footer-icon img {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-icon img:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 10px #4a4a4a);
}


/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer-coming {
    font-size: 4rem;
  }

  
}













/* pop *//* Launch Button */
.launch-btn {
  z-index: 10;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(91, 89, 89, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

/* Modal Content */
.modal-content {
  color: #fff;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  font-size: 1.5rem;
  max-width: 90%;
  box-shadow: 0 0 30px #7ebb42;
  transform: scale(0.8);
}

.close-modal {
  margin-top: 20px;
  padding: 10px 20px;
  background: #7ebb42;
  border: none;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
}



/*  pop come */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.modal-content {
  color: #fff;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  font-size: 1.5rem;
  max-width: 90%;
  box-shadow: 0 0 30px #1ebe5d;
  transform: scale(0.8);
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #25D366;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  font-size: 1rem;
  box-shadow: 0 0 10px #25D366;
  transition: background 0.3s;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

.close-auto-modal {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #7ebb42;
  border: none;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}
@media (max-width: 600px) {
  .modal-content {
    padding: 25px 20px;
    font-size: 1.2rem;
  }

  .whatsapp-btn,
  .close-auto-modal {
    font-size: 0.95rem;
    padding: 10px 16px;
  }
}