/* Imports */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* CSS Variables */
:root {
  --color-primary: #0d47a1;
  /* Royal Blue (main brand) */
  --color-secondary: #1976d2;
  /* Lighter Blue (hover / accents) */
  --color-accent: #00b6b1;
  /* Orange (CTA, highlights) */
  --color-success: #2e7d32;
  /* Green (success states) */
  --color-danger: #d32f2f;
  /* Red (errors, alerts) */
  --color-warning: #f9a825;
  /* Yellow (warnings) */
  --color-info: #0288d1;
  /* Info states */
  --color-light: #f5f5f5;
  /* Background light grey */
  --color-dark: #212121;
  /* Dark text */
  --color-white: #ffffff;
  --color-black: #000000;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}

body,
html {
  width: 100%;
  height: 100%;
  /* overflow-x: hidden; */
  background-color: var(--color-light);
  color: var(--color-black);
  font-size: 12px;
}

.navTop {
  background-color: var(--color-primary);
  color: var(--color-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  /* padding: 20px 40px; */
}

.navTop .left {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 0 0 35%;
  /* padding: 10px 40px 50px 20px; */

  /* padding: 20px 50px 40px; */
  background-color: var(--color-secondary);
  box-sizing: border-box;
}

.navTop .left a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 11px;
  border-radius: 100%;
  border: 1px solid var(--color-white);
  background-color: var(--color-primary);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.navTop .left a:hover {
  transform: translateY(-5px) scale(1.1);
  background-color: var(--color-secondary);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.navTop .left a i {
  font-size: 0.9em;
}

.navTop .right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 25px;
  flex: 0 0 65%;
  /* padding: 20px 40px 50px 20px; */

  box-sizing: border-box;
}

.navTop .right a {
  text-decoration: none;
  color: var(--color-light);
  font-size: 1.1em;
}

.navTop .right a i {
  margin-right: 8px;
  font-size: 1em;
  opacity: 0.8;
}

.navTop .right,
.navTop .left {
  padding: 25px 100px 50px 100px;
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 90%;
  margin: auto;
  border-radius: 20px;
  left: 0px;
  right: 0px;
  background-color: var(--color-white);
  padding: 0px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  top: 75px;
  /* Smooth transition for all properties */
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* When navbar slides to top */
.navbar.navbar-top {
  top: 0px !important;
  width: 100% !important;
  border-radius: 0px !important;
  border-bottom-left-radius: 20px !important;
  border-bottom-right-radius: 20px !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar .logo {
  height: 85px;
  width: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  transition: height 0.4s ease; /* Smooth logo resize */
}
.navbar.navbar-top .logo {
  height: 75px;
}

.navbar .logo img {
  height: 105%;
  width: auto;
}

.navbar .nav-links ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.navbar .nav-links ul li a {
  text-decoration: none;
  color: var(--color-dark);
  font-weight: 500;
  padding: 8px 12px;
  height: 100%;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.navbar .nav-links ul li a:hover,
.navbar .nav-links ul li a.active {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.navbar .navBtns a {
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 10px 20px;
  border: none;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar .nav-links ul li.dropdown {
  position: relative;
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  /* border: 1px solid var(--color-secondary); */
  top: calc(100% + 3px);
  left: 50%;
  transform: translate(-50%, 0);
  background: var(--color-white);
  padding: 20px 30px;
  min-width: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); */
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}

.dropdown-menu ul {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-menu ul li a {
  text-decoration: none;
  color: var(--color-dark);
  font-size: 14px;
  padding: 6px 0;
  display: block;
  transition: color 0.2s ease;
}

.dropdown-menu ul li a:hover {
  color: var(--color-secondary);
  background-color: transparent;
}

.menuIcon {
  display: none;
  cursor: pointer;
  font-size: 1.5em;
  color: var(--color-dark);
  transition: color 0.3s;
}

.menuIcon:hover {
  color: var(--color-secondary);
}

/* Body push-down effect for mobile navbar */
body {
  transition: padding-top 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hide navTop on devices below desktop */
@media (max-width: 1024px) {
  .navTop {
    display: none !important;
  }
}

/* Responsive adjustments for tablet */
@media (max-width: 1024px) {
  .navbar {
    width: 95%;
    padding: 0px 40px;
  }

  .navbar.navbar-top {
    padding: 10px 30px !important;
  }

  .dropdown-menu {
    min-width: 400px;
    padding: 15px 20px;
  }

  .dropdown-menu ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
  }
}

/* Mobile responsive - changes layout to logo, hamburger, call button */
@media (max-width: 768px) {
  .navbar {
    width: 100%;
    padding: 10px 20px;
    border-radius: 0px;
    top: 0px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .navbar.navbar-top {
    border: 0px;
    border-radius: 0px !important;
  }

  .navbar .logo {
    height: 60px;
    order: 1;
  }

  .navbar.navbar-top .logo {
    height: 55px;
  }

  .menuIcon {
    display: block;
    order: 2;
    margin: 0 15px;
  }

  .navbar .navBtns {
    order: 3;
    display: none !important;
  }

  .navbar .navBtns a {
    padding: 8px 15px;
    font-size: 14px;
  }

  /* Mobile navigation - slide down instead of left */
  .navbar .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 999;
    max-height: 80vh;
    overflow-y: auto;
  }

  .navbar .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .navbar .nav-links ul {
    flex-direction: column;
    padding: 20px;
    gap: 0;
    margin: 0;
  }

  .navbar .nav-links ul li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .navbar .nav-links ul li:last-child {
    border-bottom: none;
  }

  .navbar .nav-links ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 10px;
    font-size: 16px;
    border-radius: 0;
  }

  .navbar .nav-links ul li a:hover {
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--color-secondary);
  }

  /* Mobile dropdown adjustments */
  .navbar .nav-links ul li.dropdown {
    position: static;
  }

  /* Dropdown arrow rotation animation */
  .dropdown .fa-chevron-down {
    transition: transform 0.3s ease;
  }

  .dropdown.active .fa-chevron-down {
    transform: rotate(180deg);
  }

  /* Mobile dropdown menu - initially hidden */
  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    margin: 0;
    padding: 0;
    min-width: auto;
    width: 100%;
    background: rgba(37, 99, 235, 0.05);
    transform: none;
    left: auto;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  /* Show dropdown when active on mobile */
  .dropdown.active .dropdown-menu {
    display: block;
    max-height: 500px; /* Adjust based on your content */
    padding: 10px 0;
  }

  .dropdown-menu ul {
    display: block !important;
    grid-template-columns: none !important;
    gap: 0 !important;
    padding: 0 !important;
  }

  .dropdown-menu ul li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
  }

  .dropdown-menu ul li:last-child {
    border-bottom: none !important;
  }

  .dropdown-menu ul li a {
    padding: 12px 20px !important;
    font-size: 14px;
    color: var(--color-dark);
    justify-content: flex-start !important;
    gap: 0 !important;
  }

  .dropdown-menu ul li a:hover {
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--color-secondary);
  }

  /* Add overlay to prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
  }

  /* Body content push down when mobile menu is open */
  body.mobile-menu-open {
    padding-top: 400px; /* Adjust based on your menu height */
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .navbar {
    padding: 8px 15px;
  }

  .navbar .logo {
    height: 50px;
  }

  .navbar.navbar-top .logo {
    height: 45px;
  }

  .navbar .navBtns a {
    padding: 6px 12px;
    font-size: 12px;
  }

  .menuIcon {
    font-size: 1.3em;
    margin: 0 10px;
  }

  /* Adjust body padding for smaller screens */
  body.mobile-menu-open {
    padding-top: 350px;
  }

}

/* HERO SECTION */
        .heroSec {
            position: relative;
            min-height: 90vh;
            width: 100%;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: 100px 60px 60px 60px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .hero-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            gap: 60px;
        }

        /* TEXT CONTENT */
        .hero-text {
            flex: 1;
            max-width: 650px;
            color: #111;
            text-align: left;
            animation: fadeInLeft 1s ease forwards;
        }

        .hero-text .tagline {
            font-size: 1.4em;
            font-weight: 800;
            letter-spacing: 1px;
            color: var(--color-accent);
            text-transform: uppercase;
            margin-bottom: 15px;
            display: block;
        }

        .hero-text h2 {
            font-size: 3.2em;
            line-height: 1.2em;
            font-weight: 800;
            margin: 15px 0 25px;
            color: #111;
        }

        .wave-wrap {
            position: relative;
            display: inline-block;
            color: var(--color-accent);
        }

        .wave-svg {
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 20px;
            fill: none;
            stroke: var(--color-accent);
            stroke-width: 3;
        }

        .hero-text p {
            font-size: 1.1em;
            line-height: 1.7em;
            margin-bottom: 30px;
            color: #333;
            max-width: 550px;
        }

        .heroBtn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: var(--color-accent);
            color: var(--color-white);
            padding: 16px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05em;
            box-shadow: 0 6px 20px rgba(0, 181, 173, 0.3);
            transition: all 0.3s ease;
        }

        .heroBtn:hover {
            background-color: var(--color-primary);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 181, 173, 0.4);
        }

        /* IMAGE CONTENT */
        .hero-image {
            flex: 1;
            max-width: 600px;
            position: relative;
            animation: fadeInRight 1s ease forwards;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            object-fit: cover;
        }

        /* Decorative elements */
        .hero-image::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, var(--color-accent), var(--color-primary));
            border-radius: 50%;
            opacity: 0.1;
            z-index: -1;
        }

        .hero-image::after {
            content: '';
            position: absolute;
            bottom: -30px;
            left: -30px;
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
            border-radius: 30px;
            opacity: 0.05;
            z-index: -1;
        }

        /* ANIMATIONS */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* RESPONSIVE DESIGN */
        @media (max-width: 992px) {
            .heroSec {
                padding: 120px 40px 50px;
            }
            .hero-container {
                gap: 40px;
            }
            .hero-text h2 {
                font-size: 2.6em;
            }
        }

        /* MOBILE: Stack vertically - Image top, Text bottom */
        @media (max-width: 768px) {
            .heroSec {
                padding: 110px 20px 40px;
                min-height: auto;
            }
            
            .hero-container {
                flex-direction: column;
                gap: 40px;
                text-align: center;
            }
            
            /* Image first on mobile */
            .hero-image {
                order: 1;
                max-width: 100%;
                animation: fadeInDown 1s ease forwards;
            }
            
            /* Text second on mobile */
            .hero-text {
                order: 2;
                max-width: 100%;
                text-align: center;
                animation: fadeInUp 1s ease forwards;
            }
            
            .hero-text h2 {
                font-size: 2.2em;
            }
            
            .hero-text p {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .heroSec {
                padding: 110px 15px 40px;
            }
            
            .hero-container {
                gap: 30px;
            }
            
            .hero-text h2 {
                font-size: 1.9em;
            }
            
            .hero-text .tagline {
                font-size: 1.2em;
            }
        }

/* ================= ABOUT US SECTION ================= */
.about-us {
  display: flex;
  align-items: center;
  flex-wrap: wrap-reverse;
  justify-content: center;
  padding: 40px 50px;
  margin-top: 50px;
  gap: 50px;
  margin-bottom: 60px;
}

.about-us .left {
  position: relative;
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.about-us .left img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
}

/* Badge */
.about-us .left .badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--color-info);
  color: var(--color-white);
  padding: 10px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.about-us .left .badge .text {
  border-radius: 30px;
  padding: 0px 20px;
  border: 1px dashed var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.about-us .left .badge .text h2 {
  font-size: 2.5rem;
}

/* Right Side */
.about-us .right {
  flex: 1 1 500px;
  max-width: 600px;
}

.about-us .right h4 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #004b8c;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.about-us .right h4 img {
  width: 20px;
  animation: spin 4s linear infinite;
}
.about-us .right h4 .gears {
  position: relative;
}
/* #gear2 {
  position: absolute;
  top: -10px;
  left: 10px;
} */

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.about-us .right h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #003b66;
}
.about-us .right h1 span {
  color: var(--color-info);
}
.about-us .right p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #353535;
}

/* Info Table */
.aboutTable {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  border: 1px solid #808080;
  border-radius: 20px;
}
.aboutTable .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.aboutTable .box img {
  width: 45px;
}
.aboutTable .box h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #003b66;
}
.about-us .right .box p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0;
  line-height: normal;
}

/* CTA button */
.about-us .right a {
  display: inline-block;
  background-color: var(--color-success);
  color: var(--color-white);
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin: 25px 0 30px;
  font-size: 1.05rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.about-us .right a:hover {
  background-color: #25d366;
  transform: scale(1.05);
}

/* ================= Responsive ================= */
@media (max-width: 1024px) {
  .about-us {
    padding: 30px 30px;
    gap: 40px;
  }
  .about-us .right h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .about-us {
    flex-direction: column-reverse;
    padding: 20px;
    gap: 30px;
  }
  .about-us .left img {
    max-width: 400px;
  }
  .about-us .right {
    max-width: 100%;
    text-align: center;
  }
  .aboutTable {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .about-us .left img {
    max-width: 100%;
  }
  .about-us .left .badge .text h2 {
    font-size: 2rem;
  }
  .about-us .right h1 {
    font-size: 2rem;
  }
  .about-us .right p {
    font-size: 0.95rem;
  }
  .aboutTable .box h3 {
    font-size: 1.2rem;
  }
  .about-us .right a {
    width: 100%;
    font-size: 1rem;
    padding: 12px 20px;
  }
}

/* Info Cards */
.info-cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 80px auto;
  max-width: 1200px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.info-cards .card {
  background-color: #003b66;
  color: #fff;
  border-radius: 25px;
  padding: 40px 30px;
  width: 350px;
  position: relative;
  text-align: left;
  flex: 1 1 300px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.info-cards .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  background: linear-gradient(135deg, #004b8c, #006fa1);
}

.info-cards .icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00c8c8, #00f0f0);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.info-cards .icon::after {
  content: "";
  position: absolute;
  border: 2px dashed rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  animation: pulse 2s infinite;
}

.info-cards .icon i {
  font-size: 32px;
  color: #fff;
}

.info-cards h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.info-cards p {
  font-size: 1rem;
  line-height: 1.7;
  color: #f0f0f0;
}

.info-cards .card-number {
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(0, 200, 200, 0.8);
  transition: color 0.4s ease;
}

.info-cards .card:hover .card-number {
  color: #00f0f0;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}

/* Responsive  */
@media (max-width: 992px) {
  .info-cards {
    gap: 20px;
  }
  .info-cards .card {
    width: 100%;
    max-width: 480px;
    padding: 30px 20px;
  }
}

/* CHOOSE US */
.choose-us {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 80px;
  gap: 50px;
  margin-bottom: 150px;
  flex-direction: row-reverse;
  flex-wrap: wrap;
}

.choose-us .left {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
}

.choose-us .left img {
  height: auto;
  max-width: 100%;
  max-height: 600px;
  object-fit: contain;
  border-radius: 15px;
}

.choose-us .right {
  flex: 1;
  max-width: 600px;
}

.choose-us .right h4 {
  position: relative;
  font-size: 1.7rem;
  font-weight: 700;
  color: #004b8c;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.choose-us .right h4 img {
  width: 22px;
  animation: spin 4s linear infinite;
}

.choose-us .right h4 .gears {
  position: relative;
}

#gear2 {
  position: absolute;
  top: -12px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.choose-us .right h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #003b66;
}

.choose-us .right h1 span {
  color: var(--color-info);
}

.choose-us .right p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #353535;
}

.choose-us .right .box {
  display: flex;
  align-items: center;
  border: 1px solid #c0c0c0;
  gap: 20px;
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 12px;
  background: #fff;
  transition: all 0.3s ease;
}

.choose-us .right .box:hover {
  border-color: var(--color-info);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.choose-us .right .box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #003b66;
}

.choose-us .right .box p {
  font-size: 1rem;
  color: #333;
  margin: 0;
}

.choose-us .right .box .icon {
  padding: 12px;
  background-color: var(--color-info);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.choose-us .right .box i {
  font-size: 1.8rem;
  color: #fff;
}

/* 🔹 Responsive */
@media (max-width: 1024px) {
  .choose-us {
    gap: 30px;
  }
  .choose-us .right h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .choose-us {
    flex-direction: column; /* ✅ stack image & text */
    text-align: center;
  }
  .choose-us .right {
    max-width: 100%;
  }
  .choose-us .right h4 {
    justify-content: center;
  }
  .choose-us .right .box {
    justify-content: center;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .choose-us {
    padding: 20px;
    margin-bottom: 80px;
  }
  .choose-us .right h1 {
    font-size: 2rem;
  }
  .choose-us .right p {
    font-size: 1rem;
  }
  .choose-us .right .box h3 {
    font-size: 1.2rem;
  }
}

/* Contact Section */
.contact-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  padding: 100px 10%;
  flex-wrap: wrap;
  /* background: #f9f9f9; */
  font-family: "Inter", sans-serif;
}

/* Left Side */
.contact-info {
  flex: 1;
  min-width: 320px;
  animation: fadeInLeft 1s ease forwards;
}

.contact-info h2 {
  font-size: 2.3rem;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-info h2 span {
  color: #00b5ad;
}

.contact-info p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #333;
}

/* Info boxes */
.info-box {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 18px 25px;
  border-radius: 18px;
  margin-bottom: 22px;
  gap: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

.info-box .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: #fff;
  background: linear-gradient(45deg, #00b5ad, #00f0f0, #008c85, #00b5ad);
  background-size: 400% 400%;
  animation: gradientAnimation 6s ease infinite;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box .icon.email {
  background: linear-gradient(45deg, #0d47a1, #1565c0, #1976d2, #0d47a1);
  background-size: 400% 400%;
}

.info-box .icon.whatsapp {
  background: linear-gradient(45deg, #25d366, #1ebd57, #00c851, #25d366);
  background-size: 400% 400%;
}

.info-box:hover .icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 0 25px rgba(0, 181, 173, 0.6), 0 0 50px rgba(0, 181, 173, 0.4);
}

.info-box h4 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
}

.info-box p {
  margin: 4px 0 0;
  font-size: 0.96rem;
  color: #555;
}

/* Right Side */
.contact-form {
  flex: 1;
  min-width: 350px;
  background: #fff;
  padding: 45px 40px;
  border-radius: 20px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  animation: fadeInRight 1s ease forwards;
}

.contact-form:hover {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.contact-form h2 {
  font-size: 2.1rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.contact-form h2 span {
  color: #00b5ad;
}

.contact-form p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 35px;
  color: #555;
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 1rem;
  resize: none;
  outline: none;
  transition: border 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-form form input:focus,
.contact-form form textarea:focus {
  border-color: #00b5ad;
  box-shadow: 0 6px 20px rgba(0, 181, 173, 0.25);
  transform: scale(1.02);
}

.contact-form button {
  background: #00b5ad;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 0;
  width: 100%;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.contact-form button:hover {
  background: #008c85;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Gradient animation */
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Fade-in animations */
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .contact-section {
    flex-direction: column;
    padding: 60px 20px;
  }
  .contact-info,
  .contact-form {
    min-width: 100%;
  }
}

.our-services {
  background: var(--color-primary);
  padding: 80px 20px;
  margin-bottom: 80px; /* spacing before footer */
  color: var(--color-white);
  text-align: center;
}

.our-services .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 50px;
}

.section-header .section-subtitle {
  color: var(--color-light);
  font-size: 18px;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-white);
}

.section-header h2 span {
  color: var(--color-accent);
}

.section-header p {
  font-size: 15px;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  color: var(--color-light);
}

.section-header p a {
  color: var(--color-white);
  text-decoration: underline;
}

/* Service Cards Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--color-white);
  color: var(--color-dark);
  border-radius: 20px;
  padding: 15px 30px;
  /* position: relative; */
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
  width: 200px;
  height: 200px;
  margin: 0 auto 15px;
  border-radius: 15px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  /* margin-bottom: 12px; */
}

.service-card p {
  font-size: 14px;
  color: var(--color-dark);
  line-height: 1.6;
  /* margin-bottom: 0; */
}

/* WhatsApp Button */
.service-btn {
  display: block;
  /* position: absolute; */
  /* bottom: 15px; */
  /* left: 50%; */
  /* transform: translateX(-50%); */
  background: linear-gradient(45deg, #25d366, #1ebd57, #00c851, #25d366);
  color: var(--color-white);
  font-size: 18px;
  padding: 12px 14px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.service-btn:hover {
  background: #1b5e20;
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 22px;
  }

  .section-header p {
    font-size: 14px;
  }

  .service-card {
    padding: 25px 15px 55px;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 20px;
  }
}

/* ================= BRAND REPAIRS SECTION ================= */
.brand-repairs {
  text-align: center;
  padding: 80px 20px;
  margin-top: -150px;
}

.brand-repairs h4 {
  font-size: 1.2rem;
  color: var(--color-info, #008c9e);
  margin-bottom: 15px;
  font-weight: 600;
}

.brand-repairs h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #003b66;
  margin-bottom: 20px;
  line-height: 1.3;
}

.brand-repairs h1 span {
  color: var(--color-info, #00b3b3);
}

.brand-repairs p {
  font-size: 1.1rem;
  color: #222;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

.brand-repairs .brands {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.brand-repairs .brands button {
  padding: 14px 24px;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  background: #003b66;
  color: #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
  width: 100%;
}

.brand-repairs .brands button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--color-info, #00b3b3);
  z-index: -1;
  transition: width 0.4s ease-in-out;
}

.brand-repairs .brands button:hover::before {
  width: 100%;
}

.brand-repairs .brands button:hover {
  color: #fff;
  cursor: help;
}

/* Responsive */
@media (max-width: 1024px) {
  .brand-repairs .brands {
    grid-template-columns: repeat(3, 1fr);
  }
  .brand-repairs h1 {
    font-size: 2.2rem;
  }
  .brand-repairs p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .brand-repairs {
    padding: 60px 15px;
  }
  .brand-repairs .brands {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .brand-repairs h1 {
    font-size: 1.9rem;
  }
  .brand-repairs p {
    font-size: 0.95rem;
  }
  .brand-repairs .brands button {
    font-size: 1rem;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .brand-repairs .brands {
    grid-template-columns: repeat(2, 1fr);
  }
  .brand-repairs h1 {
    font-size: 1.6rem;
  }
  .brand-repairs p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .brand-repairs .brands button {
    max-width: 250px;
    margin: 0 auto;
    font-size: 0.95rem;
    padding: 10px 15px;
  }
}

/* ================= CTA SECTION ================= */
.ctaSection {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px 100px;
  color: white;
  position: relative;
  overflow: hidden;
}

.ctaSection::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(/Assets/contactUs.webp) center/cover no-repeat;
  opacity: 0.5;
  filter: brightness(0.2);
  z-index: -1;
}

.ctaSection p {
  font-size: 1.2rem;
}

.ctaSection h2 {
  font-size: 3rem;
  font-weight: 700;
  margin: 20px 0;
  color: var(--color-light, #fff);
  line-height: 1.3;
}

.ctaSection h2 span {
  color: var(--color-info, #00b3b3);
}

.ctaSection a {
  text-decoration: none;
  color: #fff;
  background-color: #00c851;
  padding: 12px 24px;
  font-size: 1.2rem;
  border-radius: 10px;
  transition: all 0.33s ease;
  margin-bottom: 40px; /* space before achievements */
}

.ctaSection a:hover {
  transform: scale(1.08);
  filter: grayscale(0.3);
}

/* Awards / Achievements Box */
.ctaSection .achievementsBox {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  background-color: #003b66;
  border: 5px solid var(--color-light, #fff);
  border-radius: 20px;
  padding: 30px 40px;
  justify-items: center;
  align-items: center;
  width: 90%;
  max-width: 1100px;
}

.ctaSection .achievementsBox .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
  gap: 10px;
}

.ctaSection .achievementsBox .box img {
  width: 60px;
}

.ctaSection .achievementsBox .box h3 {
  font-size: 2rem;
}

/* Responsive */
@media (max-width: 992px) {
  .ctaSection h2 {
    font-size: 2.2rem;
  }
  .ctaSection .achievementsBox {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .ctaSection .achievementsBox .box h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .ctaSection h2 {
    font-size: 1.8rem;
  }
  .ctaSection a {
    font-size: 1rem;
    padding: 10px 18px;
  }
  .ctaSection .achievementsBox {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 95%;
  }
  .ctaSection .achievementsBox .box h3 {
    font-size: 1.4rem;
  }
}

/* ================= APPOINTMENT SECTION ================= */
.appointmentSec {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 80px;
  padding: 60px 40px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.appointmentSec .left,
.appointmentSec .right {
  width: 45%;
  min-width: 300px;
}

.appointmentSec .left h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #003b66;
}

.appointmentSec .left p,
.appointmentSec .right p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #353535;
}

.appointmentSec .left form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.appointmentSec .form-item {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.appointmentSec input,
.appointmentSec textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ddd;
  resize: none;
  outline: none;
}

.appointmentSec form button {
  cursor: pointer;
  padding: 12px;
  background-color: #003b66;
  color: white;
  border-radius: 10px;
  border: none;
  transition: 0.3s;
}

.appointmentSec form button:hover {
  background-color: #25d366;
  border: 2px solid #fff;
}

/* --- Gears Animation --- */
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.appointmentSec .right h4 {
  position: relative;
  font-size: 1.7rem;
  font-weight: 700;
  color: #004b8c;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 25px;
}

.appointmentSec .right h4 .gears {
  position: relative;
  display: flex;
  align-items: center;
}

.appointmentSec .right h4 img {
  width: 20px;
  animation: spin 4s linear infinite;
}

#gear2 {
  position: absolute;
  top: -10px;
  left: 20px;
}

.appointmentSec .right h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 15px;
  color: #003b66;
  line-height: 1.2;
}

.appointmentSec .right h1 span {
  color: var(--color-info, #00b3b3);
}

.appointmentSec .right details {
  background: #fff;
  border-radius: 10px;
  margin: 10px 0;
  border: 2px dashed #cacaca;
  overflow: hidden;
}

.appointmentSec .right summary {
  padding: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  background: #ffe7e7;
  cursor: pointer;
}

.appointmentSec .right p {
  padding: 0 10px 10px;
}

/* Responsive */
@media (max-width: 1024px) {
  .appointmentSec {
    gap: 50px;
  }
  .appointmentSec .left,
  .appointmentSec .right {
    width: 100%;
  }
  .appointmentSec .right h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .appointmentSec {
    padding: 40px 20px;
  }
  .appointmentSec .left h2 {
    font-size: 1.8rem;
  }
  .appointmentSec .right h1 {
    font-size: 1.6rem;
  }
  .appointmentSec .right h4 {
    font-size: 1.2rem;
  }
}

footer {
  color: var(--color-light);
  padding-top: 100px; /* extra space for CTA box */
  font-size: 14px;
  position: relative;
}

/* Background element */
footer .footerBg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  display: none;
}

footer .cta-section {
  margin-top: 100px;
  background: url("./Assets/cta-bg.jpg") center/cover no-repeat;
  color: #0a2a43;
  text-align: center;
  padding: 25px 40px;
  width: 90%;
  margin: 10px auto;
  max-width: 1200px;
  /* top: -10px; */
  /* left: 50%; */
  /* transform: translateX(-50%); */
  /* position: absolute; */
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

/* Headline text */
footer .cta-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-left: 0;
  /* flex: 1 1 auto; */
  color: #003366;
}

footer .cta-section h2 span {
  color: var(--color-accent);
}

/* WhatsApp button */
footer .cta-section .cta-btn {
  background: #003366; /* navy dark */
  color: #fff;
  padding: 14px 30px;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 51, 102, 0.25);
}

footer .cta-section .cta-btn i {
  font-size: 1.2rem;
}

footer .cta-section .cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #25d366;
  z-index: -1;
  transition: width 0.33s ease-in-out;
  border-radius: 30px;
}

footer .cta-section .cta-btn:hover {
  color: #fff;
  transform: translateY(-3px);
}

footer .cta-section .cta-btn:hover::before {
  width: 100%;
}

/* Main Footer Content */
.mainFooter {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding: 120px 100px 60px;
  background: linear-gradient(rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.9)),
    /* tint overlay */ url("../Assets/footerBg.webp") center/cover no-repeat;
}

footer .box h4 {
  font-size: 2em;
  margin-bottom: 15px;
  color: var(--color-white);
}

footer .box ul {
  list-style: none;
  padding: 0;
}

footer .box ul li {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 1.1em;
}

footer .box ul li a {
  text-decoration: none;
  color: var(--color-light);
  transition: color 0.3s;
  font-weight: 500;
  font-size: 1.2em;
}
footer .box ul li a:hover {
  color: var(--color-accent);
}

footer .logo-box .logo img {
  height: 250px;
  margin-top: -80px;
  border-radius: 8px;
  /* mix-blend-mode: color-burn; */
  /* filter: var(--color-light); */
}

footer .box p {
  margin-top: 10px;
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1.6;
}

.footerEnd {
  background-color: var(--color-accent);
  color: var(--color-light);
  padding: 25px 100px;
  display: flex;
  justify-content: space-between; /* spread left + right */
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footerEnd h5 {
  margin: 0;
  font-size: 1.1em;
  font-weight: 600;
}

.footerEnd a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.footerEnd a:hover {
  text-decoration: none;
  color: var(--color-primary);
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
  .footerEnd {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* Responsive Footer */
@media (max-width: 992px) {
  footer .cta-section {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 25px 20px;
  }
  footer .cta-section h2 {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .mainFooter {
    padding: 140px 20px 40px;
    gap: 30px;
  }

  .footerEnd {
    flex-direction: column;
    gap: 20px;
    padding: 30px 20px;
    text-align: center;
  }

  footer .cta-section .cta-btn {
    padding: 10px 20px;
  }
}

@media (max-width: 500px) {
  footer .cta-section h2 {
    font-size: 1.3em;
  }
  footer .cta-section .cta-btn {
    font-size: 0.9em;
    padding: 8px 18px;
  }
  footer .cta-section {
    top: -100px !important;
  }
}

.fab {
  position: fixed;
  bottom: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  z-index: 999;
  text-decoration: none;
}

.fab:hover {
  transform: scale(1.1);
}
.call-btn {
  left: 20px;
  background-color: #007bff;
}

.whatsapp-btn {
  right: 20px;
  background-color: #25d366;
}

.wave-wrap {
  position: relative;
  display: inline-block;
}

.wave-svg {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 25px;
}

.wave-svg path {
  stroke: var(--color-accent);
  stroke-width: 15;
  fill: none;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawWave 3s ease forwards, repeatWave 6s linear infinite;
  animation-delay: 0s, 3s;
}

@keyframes drawWave {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes repeatWave {
  0% {
    stroke-dashoffset: 1000;
  }
  40% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

/* ================== TROUBLESHOOTING SECTION ================== */
.troubleShootSec {
  max-width: 1100px;
  width: 92%;
  margin: 100px auto;
  padding: 50px 30px;
  background: linear-gradient(145deg, #00b5ad, #006fa1);
  border-radius: 25px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  animation: fadeIn 1s ease-out;
}

/* Fade-in effect */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Small Heading (Label) */
.troubleShootSec h4 {
  font-size: 1.1rem;
  background-color: #00b5ad;
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.5px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  display: inline-block;
}

/* Main Heading */
.troubleShootSec h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  text-transform: capitalize;
  letter-spacing: -0.5px;
}

.troubleShootSec h2 span {
  color: #ffdd00;
  font-size: 3rem;
  font-weight: 800;
}

/* Paragraph */
.troubleShootSec p {
  font-size: 1.1rem;
  color: #f9f9f9;
  max-width: 780px;
  line-height: 1.7;
  margin: 0 auto;
  font-weight: 400;
}

/* Image */
.troubleShootSec img {
  width: 100%;
  max-width: 550px;
  border-radius: 15px;
  margin: 20px 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.troubleShootSec img:hover {
  transform: scale(1.04);
}

/* Pain Points List */
.troubleShootSec .painPoints {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
  width: 100%;
}

.troubleShootSec .painPoints ul {
  list-style: none;
  padding: 0;
  flex: 1;
  min-width: 230px;
  max-width: 300px;
  text-align: left;
}

.troubleShootSec .painPoints ul li {
  font-size: 1.1rem;
  color: #f1f1f1;
  margin: 12px 0;
  position: relative;
  padding-left: 30px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.troubleShootSec .painPoints ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: #ffdd00;
  font-size: 1.2rem;
}

.troubleShootSec .painPoints ul li:hover {
  color: #ffdd00;
  transform: translateX(8px);
}

/* Call-to-Action Button */
.troubleShootSec a {
  text-decoration: none;
  background: linear-gradient(145deg, #ffdd00, #ff6f00);
  color: white;
  font-size: 1.1rem;
  padding: 15px 35px;
  border-radius: 35px;
  margin-top: 25px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.2);
}

.troubleShootSec a:hover {
  background: linear-gradient(145deg, #ff6f00, #ffdd00);
  transform: translateY(-4px);
  box-shadow: 0px 10px 28px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
  .troubleShootSec {
    padding: 40px 20px;
    gap: 25px;
  }
  .troubleShootSec h2 {
    font-size: 2.2rem;
  }
  .troubleShootSec h2 span {
    font-size: 2.5rem;
  }
}

@media (max-width: 600px) {
  .troubleShootSec {
    margin: 60px auto;
    padding: 30px 18px;
  }
  .troubleShootSec h2 {
    font-size: 1.9rem;
  }
  .troubleShootSec p {
    font-size: 1rem;
  }
  .troubleShootSec .painPoints {
    gap: 20px;
  }
  .troubleShootSec .painPoints ul li {
    font-size: 1rem;
  }
  .troubleShootSec a {
    font-size: 1rem;
    padding: 12px 28px;
  }
}
