/* =========================================
   1. RESET & GLOBAL
========================================= */

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.background-grid {
  background: url(../img/bg-lines.png) no-repeat top !important;
}

.gradient-bg {
  background: linear-gradient(180deg, #fff1eb 26.09%, #ace0f9 113.71%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Ubuntu", sans-serif !important;
}
.intro{line-height: 40px;;}
/* =========================================
   2. BUTTONS
========================================= */
.submit-btn {
  background: #000;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.submit-btn:hover {
  background: #222;
  color: #fff;
}

/* Arrow animation */
.arrow-icon {
  transition: transform 0.3s ease;
}

.submit-btn:hover .arrow-icon {
  transform: translateX(6px);
}

/* =========================================
   3. NAVBAR
========================================= */
.navbar {
  padding: 15px 0;
}
.navbar.scrolled {
  padding: 0px 0;
  transition: 0.3s ease;

  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  /*! border-bottom: 1px solid rgba(255,255,255,0.3); */
  box-shadow: 0 8px 30px rgba(154, 141, 135, 0.27);
}


.nav-item {
  padding: 0 10px;
}

.navbar-nav .nav-link {
  position: relative;
  padding: 20px 15px;
  color: #172838;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.64px;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 15px;
  bottom: 0;
  width: 0;
  height: 4px;
  background: #000;
  transition: width 0.3s ease;
}

/* hover effect */
.navbar-nav .nav-link:hover::after {
  width: calc(100% - 0px);
	position: absolute;
	left: 0;
}

/* active state */
.navbar-nav .nav-link.active::after {
	width: calc(100% - 0px);
	position: absolute;
	left: 0;
}


/* Custom hamburger */
.custom-toggler {
  width: 30px;
  height: 20px;
  position: relative;
}

/* Lines */
.custom-toggler span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #000;
  left: 0;
  transition: 0.3s ease;
}

/* Top */
.custom-toggler span:nth-child(1) {
  top: 0;
}

/* Middle */
.custom-toggler span:nth-child(2) {
  top: 9px;
  width: 70%;
}

/* Bottom */
.custom-toggler span:nth-child(3) {
  bottom: 0;
  /*! width: 70%; */
}

/* OPEN → X animation */
.custom-toggler.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

.custom-toggler.active span:nth-child(2) {
  opacity: 0; /* middle line hide */
}

.custom-toggler.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 9px;
}

/* =========================================
   4. HERO SECTION
========================================= */
#home {
  background: #e9ddd4;
  padding: 160px 0px 80px 4px;
}

.hero-title {
  font-family: "Ubuntu", sans-serif;
  font-size: 56px;
  line-height: 86px;
  color: #000;
}

.hero-text {
  font-size: 25px;
  line-height: 54px;
  letter-spacing: 1px;
  color: #000;
}


/* animate text */
/* word base */
.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  filter: blur(4px);
  animation: wordReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* animation */
@keyframes wordReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}




/* =========================================
   5. ABOUT / CARDS
========================================= */
.card-box {
  position: relative;
  padding: 60px 30px 80px;
  border-radius: 80px;
  overflow: hidden;
  height: 100%;

  background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), url("../img/waves.png");

  background-size: cover;
  background-position: 0 100%;
  background-repeat: repeat-x;
/* 
  animation: waveMove 30s linear infinite; */
}

@keyframes waveMove {
  0% {
    background-position: 0 100%;
  }
  100% {
    background-position: 1000px 100%;
  }
}

/* .card-box:hover {
  transform: translateY(-8px);
  transition: 0.3s ease;
} */

.card-box .icon {
  width: 120px;
  height: 120px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.card-box h4 {
  font-family: Ubuntu;
  font-size: 22px;
  text-align: center;
  margin-bottom: 10px;
}

.card-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

/* =========================================
   6. CONTACT SECTION
========================================= */
.contact-section {
  padding: 100px 0;
}

.contact-text h2 {
  font-size: 32px;
  font-weight: 500;
}

.sub-text {
  font-size: 15px;
  margin-bottom: 30px;
}

.desc {
  font-size: 17px;
  line-height: 34px;
}

.email-box a {
  font-size: 19px;
  text-decoration: none;
  color: #000;
}

.form-box {
  max-width: 545px;
  padding: 60px;
  border-radius: 80px;
  background: #bee3f5;
}

/* Inputs */
.form-control {
  border: none;
  border-radius: 10px;
  padding: 14px;
  background: #e0e0e0;
}

.form-control:focus {
  box-shadow: none;
}

/* Floating labels */
.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
}

.form-group label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s ease;
  pointer-events: none;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
  top: 0;
  font-size: 12px;
  background: #9fd1e9;
  padding: 0 5px;
  border-radius: 5px;
}
/* asdfasdf asdfas */


/* =========================================
   7. CTA SECTION
========================================= */
.cta-section {
  padding: 100px 0;
}

.cta-box {
  max-width: 900px;
  padding: 50px 90px;
  border-radius: 60px;
  background: linear-gradient(90deg, #fff1eb, #8ad2f5);
  box-shadow: 0 0 59px rgba(0, 45, 67, 0.26);
  overflow: hidden;
}

.cta-box h2 {
  font-family: Ubuntu;
  font-size: 32px;
}
.cta-box p {
  margin: 30px auto;
  max-width: 620px;
}

.cta-btn {
  background: #000;
  color: #fff;
  padding: 10px 25px;
  border-radius: 8px;
}

/* =========================================
   8. FOOTER
========================================= */
.footer-section {
  background: #000;
  color: #ccc;
}
.social a {
  margin-right: 30px;
}
.footer-section p {
  color: #f0eee6;
  line-height: 30px;
  max-width: 300px;
}

.footer-section h6 {
  color: #ceccc5;
  font-family: Ubuntu;
  font-size: 20px;

  margin-top: 14px;
}

.footer-section ul {
  list-style: none;
  padding: 0px;
}

.footer-section ul li {
  margin-bottom: 25px;
}

.footer-section a {
  color: #aaa;
  text-decoration: none;
  display: inline-block;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}
.footer-section ul li a {
  font-size: 13px;
}

.footer-section ul li a:hover {
  color: #fff;
  transform: translateX(6px);
  letter-spacing: 0.5px;
}

.c-text {
  padding: 14px 0px;
  margin: 0px !important;
  font-size: 16px;
}

.contact-card {
  background: #111;
  padding: 25px;
  border-radius: 12px;
}

.small-text {
  color: #777;
  font-size: 14px;
}

/* =========================================
   9. OWL CAROUSEL
========================================= */
.text-slider p {
  min-height: 48px;
}

.text-slider .owl-dots {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
}

.text-slider .owl-dot span {
  width: 8px;
  height: 8px;
  background: #6f8a92;
  border-radius: 50%;
}

.text-slider .owl-dot.active span {
  background: #2f4f57;
}

.text-slider p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

/* dots style */
.owl-dots {
  text-align: center;
  margin-top: 10px;
}

.owl-dot span {
  width: 8px;
  height: 8px;
  background: #6f8a92;
  display: inline-block;
  border-radius: 50%;
  margin: 0 4px;
}

/* =========================================
   10. WATERMARK
========================================= */

.watermark {
  position: absolute;
  left: -150px;
  z-index: 0;
  margin-top: -230px;
}

.watermark-wrapper {
  position: absolute;
  left: -40px;
  z-index: 0;
}

.watermark-wrapper img {
  width: 300px;
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* =========================================
   11. RESPONSIVE (LAST)
========================================= */

/* Tablet */
@media (min-width: 1600px) {
.navbar .container {
  max-width: 1600px !important;
}}
@media (max-width: 992px) {
  .hero-title {
    font-size: 42px;
    line-height: 1.2;
  }

  .hero-text {
    font-size: 18px;
    line-height: 1.6;
  }

  .card-box {
    border-radius: 40px;
    padding: 40px 20px 60px;
  }

  .cta-box {
    padding: 40px 25px;
    border-radius: 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  #home {
    padding: 100px 0 0px 0;
    text-align: center;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-text {
    font-size: 16px;
  }

  .form-box {
    padding: 30px;
    border-radius: 30px;
    margin-top: 75px;
  }

  .cta-box h2 {
    font-size: 24px;
  }

  .navbar {
    transition: 0.3s ease;
    background: rgb(255, 241, 235);
    /*! backdrop-filter: blur(15px); */
    /* border-bottom: 1px solid rgba(255,255,255,0.3); */
    /*! box-shadow: 0 8px 30px rgba(154, 141, 135, 0.27); */
  }

  .social {
    margin-bottom: 20px;
  }

.navbar-light .navbar-toggler {
	color: rgba(0,0,0,0);
	border:none !important;
}

.navbar-light .navbar-nav .nav-link {
	color: rgba(0,0,0,.55);
	border-bottom: 1px solid #f2e7e3;
	padding: 25px 0px;
}

.navbar-collapse {
	flex-basis: 100%;
	flex-grow: 1;
	align-items: center;
	height: 80vh;
}

.navbar.scrolled {
	padding: 0px 0;
	transition: 0.3s ease;
	background: rgb(255, 241, 235);
	/* backdrop-filter: blur(15px); */
	/* border-bottom: 1px solid rgba(255,255,255,0.3); */
	/* box-shadow: 0 8px 30px rgba(154, 141, 135, 0.27); */
}
}

/* Small Mobile */
@media (max-width: 576px) {
  a.navbar-brand img {
    width: 200px;
  }

  .hero-title {
    /*! font-size: 30px; */
    line-height: 48px;
  }

  .hero-text {
    font-size: 14px;
  }

  .submit-btn {
    padding: 8px 16px;
    font-size: 14px;
    position: relative;
    z-index: 99999;
  }
}

/* ---------==========================
          About 
------------=================== */

#about {
  
  padding: 100px 0 10px 0;
}

.hero-text-page {
  max-width: 620px;
  color: #000;
  text-align: center;
  font-family: "Plus Jakarta Sans";
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 54px; /* 216% */
  letter-spacing: 1px;
  margin: 0 auto;
}

/* Left */
.purpose-left h2 {
  font-family: "Ubuntu", sans-serif;
  font-size: 42px;
  margin-bottom: 15px;
}

.purpose-left p {
  font-size: 15px;
  color: #444;
}

/* Intro */


/* Right content */
.purpose-section h5 {
  font-family: "Ubuntu", sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
}

.purpose-section p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  max-width: 300px;
}

/* Responsive */
@media (max-width: 768px) {
  .purpose-left h2 {
    font-size: 30px;
  }

  {
    font-size: 16px;
  }

  .navbar-nav .nav-link {
	position: relative;
	padding: 10px 15px;
	color: #172838;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.64px;
}
}


/* Left */
.team-left h2 {
  font-family: "Ubuntu", sans-serif;
  font-size: 42px;
  margin-bottom: 15px;
}

.team-left p {
  font-size: 15px;
  color: #444;
  max-width: 300px;
}

/* Intro */

.team-intro {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 700px;
}

/* Card */
.team-card img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 15px;
}

.team-card h5 {
  font-family: "Ubuntu", sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
}

.team-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* Hover (optional premium) */
.team-card:hover img {
  transform: scale(1.03);
  transition: 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .team-left h2 {
    font-size: 30px;
  }

  .team-intro {
    font-size: 16px;
  }
  .hero-text-page {
	font-size: 16px;
  line-height: 30px;

}
}



/* contact map */
.location-section {
  /*! background: linear-gradient(180deg, #cfe3ef, #b8cfdc); */
}

/* Heading */
.location-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 36px;
  margin-bottom: 10px;
}

.location-sub {
  font-size: 15px;
  color: #555;
  margin-bottom: 40px;
}

/* Map Box */
.map-box {
  height: 280px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}



/* Content */
.map-content {
  position: relative;
  z-index: 2;
}

.location-icon {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

.map-content p {
  font-size: 14px;
  font-weight: 500;
  color: #222;
}


/* =========================================
   11. scroll
========================================= */

/* Button container */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 999;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

/* Show button */
.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

/* Icon */
.scroll-top i {
  position: absolute;
  color: #000;
  font-size: 18px;
}

/* SVG circles */
.progress-bg {
  fill: none;
  /*! stroke: #ddd; */
  stroke-width: 4;
}

.progress-bar {
  fill: none;
  stroke: rgb(145, 212, 244);
  stroke-width: 4;
  stroke-dasharray: 163;
  stroke-dashoffset: 163;
  transition: stroke-dashoffset 0.2s linear;
  transform: rotate(-90deg);
  transform-origin: center;
}

.scroll-top {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255);
  border-radius: 50%;
}
/* folater whatasapp and call*/
/* Container */
      .floating-buttons {
        position: fixed;
        left: 20px;
        bottom: 30px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 999;
      }

      /* Base button */
      .float-btn {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;

        font-size: 22px;
        color: #fff;

        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
      }

      /* WhatsApp */
      .float-btn.whatsapp {
        background: linear-gradient(135deg, #25d366, #128c7e);
      }
      .float-btn.whatsapp:hover {
        color: #fff;
      }
      /* Call */
      .float-btn.call {
        background: linear-gradient(135deg, #d6e8ff, #8ad2f5);
        color: #000;
      }

      /* Hover */
      .float-btn:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
      }

      /* Pulse animation */
      .float-btn::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: inherit;
        opacity: 0.4;
        animation: pulse 2s infinite;
        z-index: -1;
      }

      @keyframes pulse {
        0% {
          transform: scale(1);
          opacity: 0.5;
        }
        70% {
          transform: scale(1.6);
          opacity: 0;
        }
        100% {
          opacity: 0;
        }
      }

/* 

ye navigaition ki script hai

<script>
      const sections = document.querySelectorAll("section");
      const navLinks = document.querySelectorAll("#navMenu .nav-link");
      const underline = document.querySelector(".nav-underline");

      // underline move function
      function moveUnderline(el) {
        const rect = el.getBoundingClientRect();
        const parentRect = el.parentElement.parentElement.getBoundingClientRect();

        underline.style.width = rect.width + "px";
        underline.style.left = rect.left - parentRect.left + "px";
      }

      // set active link
      function setActive(id) {
        navLinks.forEach((link) => {
          link.classList.remove("active");
          if (link.getAttribute("href") === "#" + id) {
            link.classList.add("active");
            moveUnderline(link);
          }
        });
      }

      // scroll detection
      window.addEventListener("scroll", () => {
        let currentSection = "";

        sections.forEach((section) => {
          const sectionTop = section.offsetTop - 120;
          const sectionHeight = section.clientHeight;

          if (pageYOffset >= sectionTop && pageYOffset < sectionTop + sectionHeight) {
            currentSection = section.getAttribute("id");
          }
        });

        if (currentSection) {
          setActive(currentSection);
        }
      });

      // click pe bhi smooth kaam kare
      navLinks.forEach((link) => {
        link.addEventListener("click", function () {
          navLinks.forEach((l) => l.classList.remove("active"));
          this.classList.add("active");
          moveUnderline(this);
        });
      });

      // initial load
      window.addEventListener("load", () => {
        const active = document.querySelector(".nav-link.active");
        if (active) moveUnderline(active);
      });
    </script>
    
    
    */