@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Baloo+2:wght@400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #f5f7fa;
}

/* ================= COMMON HINDI FONT ================= */

:lang(hi),
*[lang="hi"],
.hindi-content,
.hindi-content * {
  font-family: "Baloo 2", sans-serif;
}

/* ================= HINDI HEADINGS ================= */

.hero-content h1,
.cta-right h2,
.contact-left h2,
.faq-left h2,
.testimonials-container h2,
.why-heading-text h2,
.product-heading h2,
.transform-heading h2,
.about-content h2 {
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  letter-spacing: 0.3px;
}

/* ================= SUB HEADINGS ================= */

.hero-content h2,
.about-content h3,
.hindi-content h3,
.faq-question span,
.contact-form-box h3 {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.8;
}

/* ================= PARAGRAPHS ================= */

.hero-content p,
.cta-right p,
.faq-answer p,
.testi-card p,
.contact-left > p,
.ci-text p,
.cf-note,
.contact-form-box > p,
.about-content p,
.vm-box p,
.faq-left p,
.why-card p,
.product-card > p,
.transform-heading p,
.product-heading p,
.why-heading-text p {
  font-family: "Baloo 2", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.2px;
}

















/* ==================================================
   HEADER + NAVBAR + HERO (FULLY FIXED RESPONSIVE)
   ================================================== */


* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

/* ================= HEADER ================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
}

/* ================= NAVBAR ================= */

.navbar {
  width: calc(100% - 24px);
  max-width: 1400px;
  height: 88px;

  margin-inline: auto;
  padding: 0 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 22px;

  backdrop-filter: blur(14px);

  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.08);
}

/* ================= LOGO ================= */

.logo img {
  width: 240px;
  max-width: 100%;
  object-fit: contain;

  transition: 0.4s;
}

.logo img:hover {
  transform: scale(1.03);
}

/* ================= NAV LINKS ================= */

.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;

  list-style: none;
}

.nav-links a {
  position: relative;

  text-decoration: none;

  color: #333;

  font-size: 16px;
  font-weight: 600;

  transition: 0.4s;
}

.nav-links a::before {
  content: "";

  position: absolute;
  left: 50%;
  bottom: -8px;

  transform: translateX(-50%);

  width: 0;
  height: 3px;

  border-radius: 30px;

  background: linear-gradient(to right, #3d6fab, #5b9b24);

  transition: 0.4s;
}

.nav-links a:hover {
  color: #3d6fab;
  transform: translateY(-2px);
}

.nav-links a:hover::before {
  width: 100%;
}

/* ================= BUTTONS ================= */

.nav-btn,
.hero-btn,
.hero-btn-outline {
  padding: 16px 34px;

  border-radius: 40px;

  text-decoration: none;

  font-weight: 600;

  transition: 0.4s;
}

.nav-btn,
.hero-btn {
  background: linear-gradient(to right, #3d6fab, #5b9b24);
  color: #fff;
}

.nav-btn {
  padding: 14px 30px;

  font-size: 15px;

  box-shadow: 0 8px 25px rgba(61, 111, 171, 0.25);
}

.nav-btn:hover,
.hero-btn:hover {
  transform: translateY(-4px);
}

.hero-btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.hero-btn-outline:hover {
  background: #fff;
  color: #000;
}

/* ================= MENU BUTTON ================= */

.menu-btn {
  width: 48px;
  height: 48px;

  display: none;
  justify-content: center;
  align-items: center;

  border-radius: 12px;

  cursor: pointer;

  color: #fff;
  font-size: 26px;

  background: linear-gradient(to right, #3d6fab, #5b9b24);

  transition: 0.4s;
}

.menu-btn:hover {
  transform: scale(1.05);
}

/* ================= HERO ================= */

.hero,
.hero-slider,
.slide {
  width: 100%;
  height: 100vh;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-slider,
.slide {
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;

  opacity: 0;
  visibility: hidden;

  transition: 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

/* ================= IMAGE ================= */

.slide img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* ================= OVERLAY ================= */

.overlay {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.45);

  z-index: 1;
}

/* ================= HERO CONTENT ================= */

.hero-content {
  position: absolute;
  top: 50%;
  left: 8%;

  transform: translateY(-50%);

  z-index: 2;

  width: 100%;
  max-width: 700px;

  padding-right: 20px;

  color: #fff;
}

/* ================= HERO TAG ================= */

.hero-tag {
  display: inline-block;

  margin-bottom: 25px;
  padding: 10px 22px;

  font-size: 14px;
  font-weight: 600;

  background: rgba(255, 255, 255, 0.15);

  border-radius: 40px;

  backdrop-filter: blur(10px);
}

/* ================= HERO TEXT ================= */

.hero-content h1 {
  font-family: "Baloo 2", sans-serif;
  font-size: 78px;
  font-weight: 800;
  line-height: 1.3;

  letter-spacing: 1px;

  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.35);
}

.hero-content h1 span {
  color: #8bc34a;
  text-shadow: 0 0 20px rgba(139, 195, 74, 0.45);
}

.hero-content h2 {
  margin-top: 15px;

  font-family: "Baloo 2", sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.8;

  letter-spacing: 0.5px;

  color: rgba(255, 255, 255, 0.92);
}

.hero-content p {
  margin-top: 20px;
  max-width: 700px;

  font-family: "Baloo 2", sans-serif;
  font-size: 18px;
  line-height: 2;

  color: rgba(255, 255, 255, 0.9);
}

/* ================= HERO BUTTONS ================= */

.hero-buttons {
  display: flex;
  gap: 20px;

  margin-top: 35px;
}

/* ================= DOTS ================= */

.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;

  transform: translateX(-50%);

  z-index: 10;

  display: flex;
  gap: 10px;
}

.dot {
  width: 14px;
  height: 14px;

  border-radius: 50%;

  cursor: pointer;

  background: rgba(255, 255, 255, 0.5);
}

.dot.active {
  width: 40px;

  border-radius: 30px;

  background: #8bc34a;
}

/* ==================================================
   RESPONSIVE
   ================================================== */

@media (min-width: 1500px) {

  .navbar {
    max-width: 1500px;
  }

  .nav-links {
    gap: 50px;
  }
}


@media (max-width: 992px) {

  .nav-btn {
    display: none;
  }

  .menu-btn {
    display: flex;
    z-index: 1001;
  }

  .navbar {
    width: calc(100% - 16px);
    height: 78px;
    padding: 0 22px;
  }

  .logo img {
    width: 160px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;

    width: 100%;
    height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 35px;

    background: rgba(255,255,255,0.98);

    backdrop-filter: blur(15px);

    transition: right 0.4s ease;

    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 28px;
  }


  .hero-content {
    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 92%;
    max-width: 700px;

    padding-inline: 20px;

    text-align: center;
  }

  .hero-content h1 {
    font-size: 54px;
  }

  .hero-content h2 {
    font-size: 22px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-buttons {
    justify-content: center;
  }
}

/* ================= 768px ================= */

@media (max-width: 768px) {

  .header {
    padding: 12px 0;
  }

  .navbar {
    width: calc(100% - 12px);
    height: 72px;

    padding: 0 16px;

    border-radius: 16px;
  }

  .logo img {
    width: 130px;
  }

  .menu-btn {
    width: 42px;
    height: 42px;

    font-size: 22px;
  }

  .hero,
  .hero-slider,
  .slide {
    height: 85svh;
    min-height: 620px;
  }

  .hero-content {
    width: 100%;
    padding-inline: 18px;
  }

  .hero-content h1 {
    font-size: 40px;
    line-height: 1.35;
  }

  .hero-content h2 {
    font-size: 18px;
    line-height: 1.6;
  }

  .hero-content p {
    font-size: 14px;
    line-height: 1.8;
  }

  .hero-buttons {
    justify-content: center;
    gap: 14px;
  }

  .slider-dots {
    bottom: 20px;
  }
}

/* ================= 480px ================= */

@media (max-width: 480px) {

  .navbar {
    width: calc(100% - 8px);

    height: 66px;

    padding: 0 12px;

    border-radius: 14px;
  }

  .logo img {
    width: 110px;
  }

  .menu-btn {
    width: 38px;
    height: 38px;

    font-size: 20px;

    border-radius: 10px;
  }

  .nav-links {
    gap: 28px;
  }

  .nav-links a {
    font-size: 24px;
  }

  .hero,
  .hero-slider,
  .slide {
    height: 78svh;
    min-height: 560px;
  }

  .hero-content {
    padding-inline: 14px;
  }

  .hero-tag {
    padding: 8px 16px;

    font-size: 11px;

    margin-bottom: 14px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content h2 {
    font-size: 15px;
  }

  .hero-content p {
    font-size: 13px;
    line-height: 1.7;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-btn,
  .hero-btn-outline {
    width: 100%;
    text-align: center;

    padding: 14px 18px;
  }

  .slider-dots {
    bottom: 14px;
  }
}

/* ================= 360px ================= */

@media (max-width: 360px) {

  .navbar {
    width: calc(100% - 6px);
  }

  .logo img {
    width: 95px;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content h2 {
    font-size: 14px;
  }
}






























/* =====================================================
   ABOUT SECTION — FULLY FIXED & RESPONSIVE
   ===================================================== */

.about {
  width: 100%;
  padding: 110px 6%;
  background: #f8fbff;
  overflow: hidden;
}

/* ================= CONTAINER ================= */

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

/* ================= LEFT IMAGE ================= */

.about-image {
  flex: 1;

  position: sticky;
  top: 160px;

  min-height:800px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  position: absolute;

  width: 100%;
  max-width: 470px;

  border-radius: 30px;
  object-fit: cover;

  opacity: 0;
  visibility: hidden;

  transform: scale(0.92);

  transition: 0.7s ease;

  animation: floatImage 4s ease-in-out infinite;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.about-image img.active-image {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/* ================= FLOAT CARD ================= */

.about-card {
  position: absolute;

  left: 20px;
  bottom: 20px;

  z-index: 5;

  padding: 20px 24px;

  border-radius: 18px;

  background: rgba(255, 255, 255, 0.92);

  backdrop-filter: blur(12px);

  animation: floatCard 3s ease-in-out infinite;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-card h3 {
  margin-bottom: 5px;
  color: #3d6fab;
}

.about-card p {
  color: #5b9b24;
  font-weight: 600;
}

/* ================= RIGHT CONTENT ================= */

.about-content {
  flex: 1.2;
}

/* ================= TAG ================= */

.section-tag {
  display: inline-block;

  margin-bottom: 22px;
  padding: 10px 22px;

  border-radius: 40px;

  font-size: 14px;
  font-weight: 600;

  color: #3d6fab;

  background: rgba(61, 111, 171, 0.08);
}

/* ================= HEADING ================= */

.about-content h2 {
  margin-bottom: 10px;

  font-size: 52px;
  font-weight: 800;
  line-height: 1.25;

  color: #222;
}

.about-content h2 span {
  color: #3d6fab;
}

.about-content h3 {
  margin-bottom: 22px;

  font-size: 24px;
  color: #5b9b24;
}

.about-content p {
  margin-bottom: 18px;

  font-size: 16px;
  line-height: 1.9;

  color: #555;
}

/* ================= LANGUAGE BUTTONS ================= */

.language-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;

  margin: 28px 0;
}

.lang-btn {
  padding: 12px 28px;

  border: none;
  border-radius: 40px;

  cursor: pointer;

  background: #fff;

  font-size: 15px;
  font-weight: 600;

  transition: 0.4s;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.lang-btn.active {
  color: #fff;
  background: linear-gradient(to right, #3d6fab, #5b9b24);
}

/* ================= CONTENT BOX ================= */

.english-content,
.hindi-content {
  display: none;

  position: relative;
  overflow: hidden;

  max-height: 700px;

  margin-top: 20px;
  padding: 35px;

  border-radius: 24px;

  transition: 0.7s ease;
  animation: fadeContent 0.5s ease;
}

.active-content {
  display: block;
}

.english-content {
  background: rgba(61, 111, 171, 0.04);
  border-left: 5px solid #3d6fab;
}

.hindi-content {
  background: rgba(91, 155, 36, 0.05);
  border-left: 5px solid #5b9b24;
}

/* ================= CONTENT TYPOGRAPHY ================= */

.english-content h3,
.hindi-content h3 {
  margin-bottom: 22px;

  font-size: 30px;
  line-height: 1.5;

  color: #3d6fab;
}

.english-content p,
.hindi-content p {
  margin-bottom: 20px;

  font-size: 17px;
  line-height: 2;

  color: #444;
}

/* ================= EXPERTISE ================= */

.about-box {
  margin-top: 35px;
}

.about-box h4,
.vm-box h4 {
  margin-bottom: 18px;

  font-size: 24px;
  color: #222;
}

.vm-box h4 {
  color: #3d6fab;
}

.expertise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.expertise-list span {
  padding: 12px 20px;

  border-radius: 40px;

  background: #fff;

  font-size: 15px;
  font-weight: 600;

  transition: 0.4s;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

.expertise-list span:hover {
  color: #fff;
  background: linear-gradient(to right, #3d6fab, #5b9b24);

  transform: translateY(-4px);
}

/* ================= BOXES ================= */

.vm-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;

  margin-top: 35px;
}

.vm-box,
.quote {
  flex: 1;
  min-width: 250px;

  padding: 28px;

  border-radius: 20px;

  background: #fff;

  transition: 0.4s;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.vm-box:hover,
.quote:hover {
  transform: translateY(-5px);
}

.english-content .vm-box {
  border-left: 4px solid #3d6fab;
}

.hindi-content .vm-box {
  border-left: 4px solid #5b9b24;
}

/* ================= READ MORE ================= */

.read-more-btn {
  margin-top: 35px;
  padding: 15px 35px;

  border: none;
  border-radius: 50px;

  cursor: pointer;

  color: #fff;

  font-size: 15px;
  font-weight: 600;

  background: linear-gradient(to right, #3d6fab, #5b9b24);

  transition: 0.4s;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.read-more-btn:hover {
  transform: translateY(-4px);
}

/* ================= SHOW CONTENT ================= */

.english-content.show-content,
.hindi-content.show-content {
  max-height: 5000px;
}

.english-content::before,
.hindi-content::before {
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 120px;

  background: linear-gradient(transparent, #f8fbff);
}

.english-content.show-content::before,
.hindi-content.show-content::before {
  display: none;
}

/* ================= ANIMATION ================= */

@keyframes fadeContent {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatImage {
  0%,100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatCard {
  0%,100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}


/* =====================================================
   RESPONSIVE
   ===================================================== */


@media (max-width: 1100px) {

  .about {
    padding: 90px 5%;
  }

  .about-container {
    flex-direction: column;
    gap: 40px;
  }

  .about-image,
  .about-content {
    width: 100%;
  }

  .about-image {
    position: relative;
    top: 0;

    min-height: 480px;
  }

  .about-card {
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    text-align: center;
  }

  .about-content {
    text-align: center;
  }

  .language-buttons,
  .expertise-list {
    justify-content: center;
  }
}

/* ================= ABOUT MOBILE LAYOUT FIX ================= */
@media (max-width: 768px) {

  .about-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }


  .about-content {
    order: 1;
    text-align: center;
  }


  .about-image {
    order: 2;

    position: relative;

    width: 100%;
    min-height: auto;

    margin-top: -10px;

    display: flex;
    justify-content: center;
    align-items: center;
  }

  .about-image img {
    position: relative !important;

    width: 100%;
    max-width: 100%;

    height: auto;

    display: none;

    border-radius: 24px;

    object-fit: cover;

    transform: none;
    animation: none;
  }

  .about-image img.active-image {
    display: block;
    opacity: 1;
    visibility: visible;
  }


  .about-card {
    position: absolute;

    left: 50%;
    bottom: 10px;

    transform: translateX(-50%);

    width: 90%;
  }

  .language-buttons,
  .english-content,
  .hindi-content,
  .about-box,
  .vm-wrapper,
  .read-more-btn {
    order: 3;
  }
}
/* ================= SMALL MOBILE ================= */

@media (max-width: 480px) {

  .about {
    padding: 55px 4%;
  }

  .about-container {
    gap: 24px;
  }

  .about-content h2 {
    font-size: 30px;
  }

  .about-content h3 {
    font-size: 18px;
  }

  .about-content p {
    font-size: 14px;
  }

  .about-image {
    width: 100%;
  }

  .about-image img.active-image {
    width: 100%;
    max-width: 100%;
  }

  .about-card {
    width: 92%;
    padding: 14px;
  }

  .language-buttons {
    flex-direction: column;
  }

  .lang-btn,
  .read-more-btn {
    width: 100%;
  }

  .vm-box,
  .quote {
    padding: 22px;
  }

}








/* ================= CTA SECTION ================= */

.cta {
  position: relative;
  overflow: hidden;

  width: 100%;
  padding: 70px 8%;

  background: linear-gradient(135deg, #1a3a6b 0%, #2d5a1b 60%, #3d6fab 100%);
}

/* ================= BACKGROUND EFFECTS ================= */

.cta-blob,
.cta-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-blob {
  inset: auto;
  border-radius: 50%;
  opacity: 0.25;
  filter: blur(80px);
}

.cta-blob-1 {
  top: -150px;
  right: -100px;

  width: 500px;
  height: 500px;

  background: #5b9b24;

  animation: blobFloat1 8s ease-in-out infinite;
}

.cta-blob-2 {
  bottom: -120px;
  left: -80px;

  width: 400px;
  height: 400px;

  background: #3d6fab;

  animation: blobFloat2 10s ease-in-out infinite;
}

/* ================= PARTICLES ================= */

.cta-particles span {
  position: absolute;

  display: block;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.12);

  animation: particleFloat linear infinite;
}

.cta-particles span:nth-child(1) {
  width: 12px;
  height: 12px;
  left: 10%;
  animation: particleFloat 12s linear infinite;
}

.cta-particles span:nth-child(2) {
  width: 8px;
  height: 8px;
  left: 25%;
  animation: particleFloat 9s linear infinite 2s;
}

.cta-particles span:nth-child(3) {
  width: 16px;
  height: 16px;
  left: 40%;
  animation: particleFloat 14s linear infinite 1s;
}

.cta-particles span:nth-child(4) {
  width: 6px;
  height: 6px;
  left: 55%;
  animation: particleFloat 10s linear infinite 3s;
}

.cta-particles span:nth-child(5) {
  width: 14px;
  height: 14px;
  left: 68%;
  animation: particleFloat 11s linear infinite 0.5s;
}

.cta-particles span:nth-child(6) {
  width: 10px;
  height: 10px;
  left: 78%;
  animation: particleFloat 13s linear infinite 2.5s;
}

.cta-particles span:nth-child(7) {
  width: 7px;
  height: 7px;
  left: 88%;
  animation: particleFloat 8s linear infinite 1.5s;
}

.cta-particles span:nth-child(8) {
  width: 18px;
  height: 18px;
  left: 5%;
  animation: particleFloat 15s linear infinite 4s;
}

/* ================= CONTAINER ================= */

.cta-container {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 60px;

  max-width: 1300px;
  margin: auto;
}

/* ================= LEFT STATS ================= */

.cta-left {
  width: 190px;
  flex-shrink: 0;

  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-stat-item {
  padding: 20px 24px;

  text-align: center;

  border-radius: 20px;
  backdrop-filter: blur(10px);

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);

  transition: 0.4s;
}

.cta-stat-item:hover {
  transform: translateY(-5px);

  background: rgba(255, 255, 255, 0.15);
}

.cta-stat-item h3 {
  margin-bottom: 6px;

  font-size: 36px;
  font-weight: 800;

  color: #8bc34a;
}

.cta-stat-item p {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;

  color: rgba(255, 255, 255, 0.8);
}

/* ================= RIGHT CONTENT ================= */

.cta-right {
  flex: 1;
}

.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 20px;
  padding: 10px 22px;

  border-radius: 40px;
  border: 1px solid rgba(139, 195, 74, 0.4);

  background: rgba(139, 195, 74, 0.2);

  color: #8bc34a;

  font-size: 14px;
  font-weight: 600;
}

.cta-right h2 {
  margin-bottom: 16px;

  font-family: "Baloo 2", sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.35;

  color: #fff;
}

.cta-right h2 span {
  color: #8bc34a;
}

.cta-right p {
  margin-bottom: 28px;

  font-family: "Baloo 2", sans-serif;
  font-size: 16px;
  line-height: 1.9;

  color: rgba(255, 255, 255, 0.82);
}

/* ================= BUTTONS ================= */

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;

  margin-bottom: 26px;
}

.cta-btn-primary,
.cta-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 30px;

  border-radius: 50px;

  text-decoration: none;

  font-size: 15px;
  font-weight: 700;

  transition: 0.4s;
}

.cta-btn-primary {
  position: relative;
  overflow: hidden;

  color: #fff;

  background: linear-gradient(to right, #3d6fab, #5b9b24);

  box-shadow: 0 10px 30px rgba(61, 111, 171, 0.4);
}

.cta-btn-whatsapp {
  color: #fff;
  background: #25d366;

  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

.cta-btn-primary:hover,
.cta-btn-whatsapp:hover {
  transform: translateY(-4px);
}

.cta-btn-whatsapp:hover {
  background: #1ebe5d;
}

/* ================= BUTTON SHINE ================= */

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;

  width: 60%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );

  animation: shineSweep 3s ease-in-out infinite;
}

/* ================= BADGES ================= */

.cta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 9px 16px;

  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);

  background: rgba(255, 255, 255, 0.1);

  color: rgba(255, 255, 255, 0.9);

  font-size: 13px;
  font-weight: 600;

  transition: 0.3s;
}

.cta-badges span:hover {
  transform: translateY(-3px);

  background: rgba(255, 255, 255, 0.18);
}

.cta-badges i {
  color: #8bc34a;
}

/* ================= IMAGE ================= */

.cta-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-image img {
  width: 100%;
  max-width: 430px;

  border-radius: 20px;

  object-fit: contain;

  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.25));
}

/* ================= ANIMATIONS ================= */

@keyframes blobFloat1 {
  50% {
    transform: translate(-30px, 30px) scale(1.1);
  }
}

@keyframes blobFloat2 {
  50% {
    transform: translate(30px, -25px) scale(1.08);
  }
}

@keyframes particleFloat {
  0% {
    bottom: -20px;
    opacity: 0;
    transform: translateX(0) rotate(0);
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    bottom: 110%;
    opacity: 0;
    transform: translateX(60px) rotate(360deg);
  }
}

@keyframes shineSweep {
  40%,
  100% {
    left: 150%;
  }
}




/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
  }

  .cta-left {
    width: 100%;

    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta-buttons,
  .cta-badges {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .cta {
    padding: 60px 5%;
  }

  .cta-right h2 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .cta-right h2 {
    font-size: 26px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-btn-primary,
  .cta-btn-whatsapp {
    width: 100%;
  }
}



















/* ================= TESTIMONIALS ================= */

.testimonials {
  width: 100%;
  padding: 100px 8%;
  background: #f8fbff;
}

.testimonials-container {
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.testimonials-container h2 {
  font-size: 46px;
  font-weight: 800;
  color: #222;
  margin-bottom: 60px;
}

.testimonials-container h2 span {
  color: #3d6fab;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}

.testi-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  transition: 0.4s;
  border: 1px solid rgba(61, 111, 171, 0.08);
  position: relative;
  overflow: hidden;
}

.testi-card::before {
  content: "\201C";
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 120px;
  color: rgba(61, 111, 171, 0.06);
  font-family: Georgia, serif;
  line-height: 1;
}

.testi-card.featured {
  background: linear-gradient(135deg, #3d6fab, #5b9b24);
  color: white;
  border: none;
}

.testi-card.featured p,
.testi-card.featured .testi-author span {
  color: rgba(255, 255, 255, 0.85);
}

.testi-card.featured h4 {
  color: white;
}

.testi-card.featured::before {
  color: rgba(255, 255, 255, 0.1);
}

.testi-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.testi-stars {
  margin-bottom: 16px;
}
.testi-stars i {
  color: #f5a623;
  font-size: 18px;
}
.testi-card.featured .testi-stars i {
  color: #ffe082;
}

.testi-card p {
  color: #555;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 24px;
  font-family: "Baloo 2", sans-serif;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(to right, #3d6fab, #5b9b24);
  color: white;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-card.featured .testi-avatar {
  background: rgba(255, 255, 255, 0.25);
}

.testi-author h4 {
  font-size: 15px;
  color: #222;
  margin-bottom: 3px;
}
.testi-author span {
  font-size: 13px;
  color: #888;
}

@media (max-width: 1024px) {
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-container h2 {
    font-size: 32px;
  }
  .testimonials {
    padding: 70px 5%;
  }
}





/* ================= FAQ ================= */

.faq {
  width: 100%;
  padding: 100px 8%;

  background: #fff;
}

.faq-container {
  display: flex;
  align-items: flex-start;
  gap: 80px;

  max-width: 1300px;
  margin: auto;
}

/* ================= LEFT ================= */

.faq-left {
  position: sticky;
  top: 120px;

  width: 300px;
  flex-shrink: 0;
}

.faq-left h2 {
  margin-bottom: 16px;

  font-family: "Baloo 2", sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.3;

  color: #222;
}

.faq-left h2 span {
  color: #3d6fab;
}

.faq-left p,
.faq-answer p,
.faq-question span {
  font-family: "Baloo 2", sans-serif;
}

.faq-left p {
  margin-bottom: 30px;

  line-height: 1.8;

  color: #666;
}

/* ================= BUTTON ================= */

.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 14px 28px;

  border-radius: 50px;

  background: linear-gradient(to right, #3d6fab, #5b9b24);

  color: #fff;

  font-size: 15px;
  font-weight: 600;
  text-decoration: none;

  transition: 0.4s;

  box-shadow: 0 8px 25px rgba(61, 111, 171, 0.3);
}

.faq-cta-btn:hover {
  transform: translateY(-3px);
}

/* ================= RIGHT ================= */

.faq-right {
  flex: 1;
}

/* ================= ITEM ================= */

.faq-item {
  overflow: hidden;

  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* ================= QUESTION ================= */

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  padding: 22px 0;

  cursor: pointer;

  transition: 0.3s;
}

.faq-question span {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;

  color: #222;
}

.faq-question i {
  flex-shrink: 0;

  font-size: 22px;

  color: #3d6fab;

  transition: 0.4s;
}

/* ================= ACTIVE ================= */

.faq-item.open .faq-question span {
  color: #3d6fab;
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);

  color: #5b9b24;
}

/* ================= ANSWER ================= */

.faq-answer {
  max-height: 0;
  overflow: hidden;

  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
}

.faq-answer p {
  padding-bottom: 20px;

  font-size: 15px;
  line-height: 1.9;

  color: #555;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .faq {
    padding: 70px 5%;
  }

  .faq-container {
    flex-direction: column;
    gap: 40px;
  }

  .faq-left {
    position: relative;
    top: 0;

    width: 100%;
  }

  .faq-left h2 {
    font-size: 32px;
  }
}






/* ================= CONTACT ================= */

.contact {
  width: 100%;
  padding: 100px 8%;
  background: #f8fbff;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;

  max-width: 1300px;
  margin: auto;
}

/* ================= LEFT ================= */

.contact-left,
.contact-right,
#contactForm {
  display: flex;
  flex-direction: column;
}

.contact-left h2 {
  margin: 14px 0 12px;

  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;

  color: #222;
}

.contact-left h2 span {
  color: #3d6fab;
}

.contact-left > p,
.ci-text p,
.contact-form-box > p,
.cf-note {
  font-family: "Baloo 2", sans-serif;
}

.contact-left > p {
  margin-bottom: 36px;

  font-size: 16px;
  line-height: 1.8;

  color: #666;
}

/* ================= INFO LIST ================= */

.contact-info-list {
  display: flex;
  flex-direction: column;

  margin-bottom: 36px;
  flex: 1;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;

  padding: 18px 0;

  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.ci-icon {
  width: 44px;
  height: 44px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  color: #fff;
  font-size: 20px;

  background: linear-gradient(135deg, #3d6fab, #5b9b24);
}

.ci-text h4 {
  margin-bottom: 4px;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;

  color: #999;
}

.ci-text p,
.ci-text a {
  font-size: 15px;
  line-height: 1.6;
}

.ci-text p {
  color: #333;
}

.ci-text a {
  color: #3d6fab;
  font-weight: 600;
  text-decoration: none;
}

.ci-text a:hover {
  color: #5b9b24;
}

/* ================= BUTTONS ================= */

.contact-btns {
  display: flex;
  gap: 14px;
}

.c-btn-wa,
.c-btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 13px 26px;

  border-radius: 50px;

  color: #fff;

  font-size: 15px;
  font-weight: 700;
  text-decoration: none;

  transition: 0.3s;
}

.c-btn-wa {
  background: #25d366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.c-btn-call {
  background: linear-gradient(to right, #3d6fab, #5b9b24);
  box-shadow: 0 6px 20px rgba(61, 111, 171, 0.3);
}

.c-btn-wa:hover,
.c-btn-call:hover {
  transform: translateY(-3px);
}

.c-btn-wa:hover {
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}

/* ================= FORM BOX ================= */

.contact-right {
  position: sticky;
  top: 110px;
}

.contact-form-box {
  flex: 1;

  display: flex;
  flex-direction: column;

  padding: 44px 40px;

  border-radius: 28px;
  border: 1px solid rgba(61, 111, 171, 0.1);

  background: #fff;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.09);
}

.contact-form-box h3 {
  margin-bottom: 6px;

  font-family: "Baloo 2", sans-serif;
  font-size: 26px;
  font-weight: 800;

  color: #222;
}

.contact-form-box h3 span {
  color: #3d6fab;
}

.contact-form-box > p {
  margin-bottom: 28px;

  font-size: 14px;
  color: #888;
}

/* ================= FORM ================= */

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cf-group {
  position: relative;

  display: flex;
  flex-direction: column;

  margin-bottom: 16px;
}

.cf-group.cf-textarea {
  flex: 1;
}

.cf-group i {
  position: absolute;
  left: 16px;
  top: 50%;

  transform: translateY(-50%);

  z-index: 1;

  color: #aaa;
  font-size: 18px;

  pointer-events: none;
}

.cf-textarea i {
  top: 18px;
  transform: none;
}

.cf-group input,
.cf-group select,
.cf-group textarea {
  width: 100%;
  padding: 14px 16px 14px 46px;

  border: 1.5px solid #e8edf5;
  border-radius: 14px;

  outline: none;
  resize: none;

  background: #f8fbff;

  color: #333;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;

  transition: 0.3s;
}

.cf-group textarea {
  flex: 1;
  min-height: 130px;
}

.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
  border-color: #3d6fab;
  background: #fff;

  box-shadow: 0 0 0 4px rgba(61, 111, 171, 0.08);
}

.cf-group input::placeholder,
.cf-group textarea::placeholder {
  color: #bbb;
}

/* ================= SUBMIT ================= */

.cf-submit {
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 100%;
  margin-top: 4px;
  padding: 16px;

  border: none;
  border-radius: 14px;

  cursor: pointer;

  background: linear-gradient(to right, #3d6fab, #5b9b24);

  color: #fff;

  font-size: 15px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;

  transition: 0.4s;

  box-shadow: 0 10px 28px rgba(61, 111, 171, 0.3);
}

.cf-submit:hover {
  transform: translateY(-3px);

  box-shadow: 0 16px 38px rgba(61, 111, 171, 0.42);
}

/* ================= NOTE ================= */

.cf-note {
  display: flex;
  align-items: center;
  gap: 8px;

  margin-top: 16px;

  font-size: 12px;
  color: #aaa;
}

.cf-note i {
  color: #5b9b24;
  font-size: 16px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .contact {
    padding: 70px 5%;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-right {
    position: relative;
    top: 0;
  }

  .contact-left h2 {
    font-size: 36px;
  }
}

@media (max-width: 540px) {
  .cf-row {
    grid-template-columns: 1fr;
  }

  .contact-form-box {
    padding: 28px 22px;
  }

  .contact-left h2 {
    font-size: 30px;
  }

  .contact-btns {
    flex-direction: column;
  }

  .c-btn-wa,
  .c-btn-call {
    width: 100%;
  }
}






/* ================= FOOTER ================= */

.footer {
  background: #0f1f3d;
  color: white;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding: 70px 8%;
  max-width: 1500px;
  margin: auto;
}

.footer-brand img {
  width: 180px;
  margin-bottom: 16px;
  filter: brightness(1.1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
}

.footer-social a:hover {
  background: linear-gradient(to right, #3d6fab, #5b9b24);
  border-color: transparent;
  transform: translateY(-3px);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-contact h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 3px;
  background: linear-gradient(to right, #3d6fab, #5b9b24);
  border-radius: 10px;
}

.footer-links ul,
.footer-services ul,
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #8bc34a;
  transform: translateX(4px);
}
.footer-links a i {
  color: #5b9b24;
}

.footer-services li {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-services li i {
  color: #8bc34a;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact li i {
  color: #8bc34a;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: 0.3s;
}
.footer-contact a:hover {
  color: #8bc34a;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1500px;
  margin: auto;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.footer-bottom i {
  color: #e74c3c;
}

@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr;
    padding: 50px 5%;
    gap: 35px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 20px 5%;
  }
}

.form-row {
  display: flex;
  gap: 20px;
}

















/* ================= WHY CHOOSE US ================= */

.why {
  position: relative;
  overflow: hidden;

  width: 100%;
  padding: 80px 8%;

  background: #f8fbff;
}

/* ================= BACKGROUND ================= */

.why::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(61, 111, 171, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(91, 155, 36, 0.08) 0%,
      transparent 60%
    );

  pointer-events: none;
}


.why-container {
  position: relative;
  z-index: 1;

  max-width: 1300px;
  margin: auto;
}


.why-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;

  margin-bottom: 50px;
}

.why-heading-text h2 {
  margin: 10px 0 8px;

  font-family: "Baloo 2", sans-serif;
  font-size: 38px;
  font-weight: 800;

  color: #222;
}

.why-heading-text h2 span {
  color: #3d6fab;
}

.why-heading-text p {
  font-family: "Baloo 2", sans-serif;
  font-size: 15px;

  color: #888;
}
 

.why-heading-stat {
  display: flex;
  gap: 30px;
}

.why-stat {
  padding: 16px 24px;

  text-align: center;

  border-radius: 16px;
  border: 1px solid rgba(61, 111, 171, 0.08);

  background: #fff;

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.why-stat strong {
  display: block;

  font-size: 28px;
  font-weight: 800;

  background: linear-gradient(to right, #3d6fab, #5b9b24);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-stat span {
  font-size: 12px;
  font-weight: 600;

  color: #888;
}

/* ================= GRID ================= */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ================= CARD ================= */

.why-card {
  position: relative;
  overflow: hidden;

  padding: 28px 24px;

  border-radius: 20px;
  border: 1px solid rgba(61, 111, 171, 0.08);

  background: #fff;

  cursor: default;

  opacity: 0;
  transform: translateY(30px);

  transition:
    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.4s,
    border-color 0.4s,
    background 0.4s,
    opacity 0.5s ease;

  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.why-card.why-visible {
  opacity: 1;
  transform: translateY(0);
}

.why-card:hover {
  transform: translateY(-6px) scale(1.02);

  border-color: transparent;

  background: linear-gradient(135deg, #3d6fab, #5b9b24);

  box-shadow: 0 20px 50px rgba(61, 111, 171, 0.15);
}

.why-card:hover h3,
.why-card:hover p,
.why-card:hover .why-icon i {
  color: #fff;

  -webkit-text-fill-color: #fff;
}

.why-card:hover .why-icon {
  background: rgba(255, 255, 255, 0.2);
}

.why-card:hover .why-num {
  color: rgba(255, 255, 255, 0.08);
}

/* ================= ICON ================= */

.why-icon {
  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 16px;

  border-radius: 14px;

  background: linear-gradient(
    135deg,
    rgba(61, 111, 171, 0.1),
    rgba(91, 155, 36, 0.1)
  );

  transition: 0.4s;
}

.why-icon i {
  font-size: 24px;

  background: linear-gradient(to right, #3d6fab, #5b9b24);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  transition: 0.4s;
}

/* ================= TEXT ================= */

.why-card h3 {
  margin-bottom: 8px;

  font-size: 16px;
  font-weight: 700;

  color: #222;

  transition: 0.4s;
}

.why-card p {
  font-family: "Baloo 2", sans-serif;
  font-size: 13px;
  line-height: 1.7;

  color: #777;

  transition: 0.4s;
}

/* ================= NUMBER ================= */

.why-num {
  position: absolute;
  right: 12px;
  bottom: -8px;

  font-family: "Montserrat", sans-serif;
  font-size: 60px;
  font-weight: 900;
  line-height: 1;

  color: rgba(0, 0, 0, 0.04);

  pointer-events: none;

  transition: 0.4s;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-heading {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .why {
    padding: 60px 5%;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-heading-text h2 {
    font-size: 28px;
  }

  .why-heading-stat {
    flex-wrap: wrap;
  }
}



/* ================= MODERN PRODUCTS SECTION ================= */

.products{
    padding:110px 7%;
    background:
    radial-gradient(circle at top left,#dfffe8 0%,transparent 30%),
    radial-gradient(circle at bottom right,#d7fff4 0%,transparent 30%),
    #f7fff9;
}

/* ================= CONTAINER ================= */

.products-container{
    max-width:1450px;
    margin:auto;
}

/* ================= HEADING ================= */

.products-heading{
    text-align:center;
    margin-bottom:75px;
}

.products-heading .section-tag{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:#dfffe8;
    color:#0f9d58;
    font-size:14px;
    font-weight:700;
    letter-spacing:.5px;
    margin-bottom:18px;
}

.products-heading h2{
    font-size:58px;
    font-weight:900;
    line-height:1.1;
    margin-bottom:18px;
    color:#111;
}

.products-heading h2 span{
    background:linear-gradient(135deg,#0f9d58,#34d399);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.products-heading p{
    max-width:750px;
    margin:auto;
    color:#666;
    font-size:17px;
    line-height:1.9;
}

/* ================= GRID ================= */

.products-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/* ================= CARD ================= */

.product-card{
    background:rgba(255,255,255,0.9);
    backdrop-filter:blur(10px);

    border-radius:30px;

    padding:18px;

    position:relative;
    overflow:hidden;

    border:1px solid rgba(255,255,255,.8);

    box-shadow:
    0 10px 25px rgba(0,0,0,.05),
    inset 0 1px 0 rgba(255,255,255,.8);

    transition:.45s ease;

    min-height:390px;

    display:flex;
    flex-direction:column;
}


.product-card:hover{
    transform:translateY(-12px);
    box-shadow:
    0 20px 50px rgba(15,157,88,.15);
}


.product-card::before{
    content:"";
    position:absolute;
    top:-80px;
    right:-80px;
    width:180px;
    height:180px;
    background:#22c55e10;
    border-radius:50%;
}

/* ================= IMAGE ================= */

.product-img{
    width:100%;
    height:170px;

    background:linear-gradient(135deg,#f6fff8,#ebfff1);

    border-radius:22px;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;

    padding:12px;

    margin-bottom:20px;
}


.product-img img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:.4s ease;
}

.product-card:hover .product-img img{
    transform:scale(1.08);
}

/* ================= TEXT ================= */

.product-card h3{
    font-size:24px;
    font-weight:800;
    color:#111;
    line-height:1.3;
    margin-bottom:12px;
}

.product-card p{
    color:#666;
    line-height:1.8;
    font-size:15px;

    margin-bottom:22px;
}

/* ================= BUTTON ================= */

.product-btn{
    margin-top:auto;

    width:100%;
    border:none;
    outline:none;

    padding:14px 20px;

    border-radius:60px;

    background:linear-gradient(135deg,#0f9d58,#34d399);

    color:#fff;
    font-size:15px;
    font-weight:700;

    cursor:pointer;

    position:relative;
    overflow:hidden;

    transition:.4s ease;
}


.product-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:rgba(255,255,255,.25);
    transition:.5s;
}

.product-btn:hover::before{
    left:100%;
}

.product-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 25px rgba(15,157,88,.3);
}

/* ================= RESPONSIVE ================= */

@media(max-width:1200px){

    .products-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:900px){

    .products-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .products-heading h2{
        font-size:45px;
    }

}

@media(max-width:650px){

    .products{
        padding:90px 5%;
    }

    .products-grid{
        grid-template-columns:1fr;
    }

    .products-heading h2{
        font-size:35px;
    }

    .product-card{
        min-height:auto;
    }

}








/* ================= POPUP OVERLAY ================= */

.product-popup{
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.75);

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 20px;

    z-index: 9999;

    opacity: 0;
    visibility: hidden;

    transition: .4s ease;
}

.product-popup.active{
    opacity: 1;
    visibility: visible;
}

/* ================= POPUP BOX ================= */

.popup-box{

    width: 90%;
    max-width: 950px;

    max-height: 90vh;

    background: #fff;

    border-radius: 25px;

    overflow: hidden;

    display: grid;
    grid-template-columns: 1fr 1fr;

    position: relative;

    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* ================= LEFT SIDE ================= */

.popup-left{

    background: #f8fff8;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 40px;

    height: 450px;
}

.popup-left img{

    width: 100%;
    height: 100%;

    object-fit: contain;
}

/* ================= RIGHT SIDE ================= */

.popup-right{

    padding: 40px;

    overflow-y: auto;
}

.popup-right h2{

    font-size: 42px;

    color: #111;

    margin-bottom: 20px;

    line-height: 1.2;
}

.popup-right p{

    color: #666;

    line-height: 1.8;

    font-size: 17px;

    margin-bottom: 30px;
}



.popup-features{

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 30px;
}

.popup-features span{

    background: #f2fff5;

    color: #0f9d58;

    padding: 10px 18px;

    border-radius: 30px;

    font-size: 14px;

    font-weight: 600;
}


.popup-btn{

    display: inline-block;

    padding: 15px 35px;

    border-radius: 50px;

    background: linear-gradient(135deg,#0f9d58,#34d399);

    color: #fff;

    text-decoration: none;

    font-size: 17px;

    font-weight: 600;

    transition: .3s ease;
}

.popup-btn:hover{

    transform: translateY(-4px);
}



.popup-close{

    position: absolute;

    top: 20px;
    right: 20px;

    width: 50px;
    height: 50px;

    background: #16a34a;

    color: #fff;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 24px;

    cursor: pointer;

    z-index: 10;

    transition: .3s;
}

.popup-close:hover{
    transform: rotate(90deg);
}


@media(max-width:900px){

    .popup-box{

        grid-template-columns: 1fr;

        width: 95%;

        max-height: 95vh;

        overflow-y: auto;
    }

    .popup-left{

        height: 300px;

        padding: 25px;
    }

    .popup-right{

        padding: 30px 22px;
    }

    .popup-right h2{

        font-size: 32px;
    }

    .popup-right p{

        font-size: 15px;
    }
}

@media(max-width:500px){

    .popup-left{

        height: 240px;
    }

    .popup-right h2{

        font-size: 28px;
    }

    .popup-btn{

        width: 100%;

        text-align: center;
    }

    .popup-close{

        width: 42px;
        height: 42px;

        font-size: 20px;
    }
}

















/* ================= FOOTER ================= */

.footer {
  color: #fff;
  background: #0f1f3d;
}


.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;

  max-width: 1500px;
  margin: auto;
  padding: 70px 8%;
}


.footer-brand img {
  width: 200px;
  margin-bottom: 16px;

  filter: brightness(1.1);
  background-color: #fff;
  border-radius: 10px;
}

.footer-brand p,
.footer-links a,
.footer-services li,
.footer-contact li,
.footer-contact a {
  font-size: 14px;
  line-height: 1.8;

  color: rgba(255, 255, 255, 0.65);
}

.footer-brand p {
  margin-bottom: 24px;
}



/* ================= SOCIAL ================= */

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);

  background: rgba(255, 255, 255, 0.08);

  color: #fff;
  font-size: 20px;
  text-decoration: none;

  transition: 0.3s;
}

.footer-social a:hover {
  transform: translateY(-3px);

  border-color: transparent;

  background: linear-gradient(to right, #3d6fab, #5b9b24);
}


.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  position: relative;

  margin-bottom: 22px;
  padding-bottom: 12px;

  font-size: 16px;
  font-weight: 700;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-contact h4::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  width: 35px;
  height: 3px;

  border-radius: 10px;

  background: linear-gradient(to right, #3d6fab, #5b9b24);
}


.footer-links ul,
.footer-services ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;

  list-style: none;
}


.footer-links a,
.footer-services li,
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;

  text-decoration: none;

  transition: 0.3s;
}

.footer-contact li {
  align-items: flex-start;
  line-height: 1.6;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #8bc34a;
}

.footer-links a:hover {
  transform: translateX(4px);
}


.footer-links i,
.footer-services i,
.footer-contact i {
  color: #8bc34a;
}

.footer-contact i {
  margin-top: 2px;

  flex-shrink: 0;

  font-size: 18px;
}


.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;

  max-width: 1500px;
  margin: auto;
  padding: 22px 8%;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom i {
  color: #e74c3c;
}


@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {

  .footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 50px 5%;

    justify-items: center;
    text-align: center;
  }

  .footer-brand,
  .footer-links,
  .footer-services,
  .footer-contact {
    width: 100%;
    max-width: 320px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links h4::after,
  .footer-services h4::after,
  .footer-contact h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links ul,
  .footer-services ul,
  .footer-contact ul {
    align-items: center;
  }

  .footer-links a,
  .footer-services li,
  .footer-contact li {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 20px 5%;
  }
}








/* ================= TRANSFORMATION SECTION ================= */

.transform {
    position: relative;
    padding: 120px 6%;
    background: linear-gradient(180deg, #f7fff8 0%, #ffffff 100%);
    overflow: hidden;
}


.transform::before,
.transform::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 0;
}

.transform::before {
    width: 350px;
    height: 350px;
    background: rgba(0, 200, 120, 0.15);
    top: -100px;
    left: -100px;
}

.transform::after {
    width: 300px;
    height: 300px;
    background: rgba(0, 255, 180, 0.12);
    bottom: -120px;
    right: -80px;
}

.transform-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: auto;
}



.transform-heading {
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    display: inline-block;
    padding: 10px 22px;
    background: rgba(0, 170, 100, 0.1);
    color: #00a86b;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 170, 100, 0.2);
}

.transform-heading h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.2;
}

.transform-heading h2 span {
    color: #00a86b;
    position: relative;
}

.transform-heading p {
    max-width: 700px;
    margin: auto;
    font-size: 1.08rem;
    color: #666;
    line-height: 1.8;
}

.transform-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}



.tg-item {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    height: 420px;
    cursor: pointer;
    transform: translateY(80px);
    opacity: 0;
    transition:
        transform 0.8s ease,
        opacity 0.8s ease,
        box-shadow 0.5s ease;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.tg-item.show {
    transform: translateY(0);
    opacity: 1;
}

.tg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.7s ease,
        filter 0.6s ease;
}

.tg-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.78),
        rgba(0, 0, 0, 0.15),
        transparent
    );
    opacity: 0;
    transition: 0.5s ease;
}

.tg-overlay h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    transform: translateY(40px);
    transition: 0.5s ease;
}

.tg-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.tg-item:hover img {
    transform: scale(1.12);
    filter: brightness(0.75);
}

.tg-item:hover .tg-overlay {
    opacity: 1;
}

.tg-item:hover .tg-overlay h3 {
    transform: translateY(0);
}












/* ================= CTA ================= */

.transform-cta {
    margin-top: 90px;
    text-align: center;
    padding: 20px 20px;
    border-radius: 35px;
    background: linear-gradient(135deg, #058e5c, #00d084);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.transform-cta::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    top: -180px;
    right: -120px;
}

.transform-cta p {
    font-size: 1.5rem;
    margin-bottom: 28px;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.transform-cta span {
    font-weight: 800;
}

.transform-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 38px;
    background: #fff;
    color: #00a86b;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.4s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.transform-btn:hover {
    transform: translateY(-6px) scale(1.05);
    background: #111;
    color: #fff;
}


@keyframes floatCard {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.tg-item:nth-child(2),
.tg-item:nth-child(6),
.tg-item:nth-child(10) {
    animation: floatCard 5s ease-in-out infinite;
}

.tg-item:nth-child(3),
.tg-item:nth-child(7),
.tg-item:nth-child(11) {
    animation: floatCard 6s ease-in-out infinite;
}



@media (max-width: 1200px) {

    .transform-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 900px) {

    .transform {
        padding: 90px 5%;
    }

    .transform-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .transform-heading h2 {
        font-size: 2.4rem;
    }

    .tg-item {
        height: 360px;
    }

}

@media (max-width: 600px) {

    .transform-grid {
        grid-template-columns: 1fr;
    }

    .transform-heading h2 {
        font-size: 2rem;
    }

    .transform-heading p {
        font-size: 0.95rem;
    }

    .tg-item {
        height: 400px;
        border-radius: 24px;
    }

    .transform-cta {
        padding: 45px 20px;
    }

    .transform-cta p {
        font-size: 1.15rem;
        line-height: 1.6;
    }

    .transform-btn {
        width: 100%;
        padding: 16px;
    }

}












/* ================= FLOATING BUTTONS ================= */

.floating-buttons{
    position: fixed;
    left: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}


.float-btn{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: 0.3s ease;
    animation: pulse 2s infinite;
}


.float-btn:hover{
    transform: scale(1.12);
}

.whatsapp{
    background: #25D366;
}

.call{
    background: #0d6efd;
}

@keyframes pulse{
    0%{
        box-shadow: 0 0 0 0 rgba(0,0,0,0.4);
    }
    70%{
        box-shadow: 0 0 0 15px rgba(0,0,0,0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(0,0,0,0);
    }
}


@media(max-width:768px){

    .float-btn{
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

}