@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@400;500;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  --primary-color: #001A33;
  --secondary-color: #4aab3d;
  --accent-color: #15D875;
  --text-color: #333333;
  --light-gray: #f4f8fa;
  --white: #ffffff;
  --soft-blue-gradient: linear-gradient(135deg, #4aab3d 0%, #001A33 100%);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --box-shadow: 0 10px 30px rgba(0, 26, 51, 0.08);
  --transition: all 0.3s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {

  color: var(--primary-color);
}

h1 {
  font-weight: 800;
}

h2,
h3,
h4 {
  font-weight: 700;
}

h2 {
  font-size: 39px !important;
  font-weight: 600 !important;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 100px 0;
}

.text-center {
  text-align: center;
}

.position-relative {
  position: relative !important;
}

.z-1 {
  z-index: 1 !important;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  color: var(--primary-color);
}

.section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.text-left .section-title::after {
  left: 0;
  transform: translateX(0);
}

.section-subtitle {
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;

}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;

  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--white);
  /* box-shadow: 0 5px 15px rgba(255, 196, 0, 0.3); */
}

.btn-primary:hover {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 5px 15px rgba(10, 43, 107, 0.3);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

/* Top Bar & Header */
.top-bar {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.9rem;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
}

.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.social-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-links a {
  color: var(--white);
  transition: var(--transition);
}

.social-links a:hover {
  opacity: 0.8;
}

.header {
  position: absolute;
  top: 59px;
  /* below top bar */
  left: 0;
  width: 100%;
  z-index: 100000;
  padding: 5px 0;
  background-color: var(--white);
  transition: var(--transition);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.header.sticky {
  position: fixed;
  top: 0;
  background-color: var(--white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  animation: slideDown 0.5s ease forwards;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  max-height: 80px;
  width: auto;
}

.mobile-only {
  display: none !important;
}

.nav-menu {
  display: flex;
  gap: 35px;
  list-style: none;
}

.mobile-menu-toggle {
  display: none;
}

.nav-menu li a {
  color: var(--primary-color);
  font-weight: 600;

  position: relative;
  display: flex;
  align-items: center;
}

.nav-menu li a i {
  font-size: 0.8em;
  margin-left: 5px;
}

.nav-menu li.active a {
  color: var(--secondary-color);
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: var(--transition);
}

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

.nav-menu li a:hover {
  color: var(--secondary-color);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/hero-img.png') center/cover no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 26, 51, 0.9) 0%, rgba(0, 26, 51, 0.5) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 80px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 25px;
  backdrop-filter: blur(5px);
}

.hero-pill .dot {
  width: 8px;
  height: 8px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: inline-block;
}

.hero-content h1 {
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-content h1 span {
  color: var(--secondary-color);
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 95%;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 40px;
}

.btn-video {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}

.btn-video .play-icon {
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.btn-video:hover {
  opacity: 0.9;
}

.btn-video:hover .play-icon {
  transform: scale(1.05);
}

.hero-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 30px;
}

.hero-testimonial {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-users {
  display: flex;
}

.hero-users img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  object-fit: cover;
  margin-left: -15px;
}

.hero-users img:first-child {
  margin-left: 0;
}

.hero-testimonial-text {
  font-size: 0.95rem;
  color: var(--white);
  font-style: normal;
  max-width: 480px;
  line-height: 24px;
  font-weight: 500;
}

.hero-image {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.floating-card i {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.card-1 {
  top: 10%;
  right: -20px;
  animation: float 5s ease-in-out infinite 1s;
}

.card-2 {
  bottom: 20%;
  left: -40px;
  animation: float 7s ease-in-out infinite 2s;
}

.card-3 {
  bottom: -20px;
  right: 40px;
  animation: float 6s ease-in-out infinite 0.5s;
}

/* Trust Badges */
.trust-badges {
  background-color: var(--white);
  padding: 40px 0;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
  margin-top: -50px;
  border-radius: 15px 15px 0 0;
}

.badges-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.badge-icon {
  width: 60px;
  height: 60px;
  background-color: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 1.8rem;
  transition: var(--transition);
}

.badge-item:hover .badge-icon {
  background-color: var(--secondary-color);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 196, 0, 0.3);
}

/* About Section */
.about {
  background-color: var(--white);
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images-wrapper {
  position: relative;
  display: block;
}

.about-img-1 {
  position: relative;
  width: 100%;
  margin-left: auto;
}

.about-img-1 img {
  object-fit: cover;
  height: 530px;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-badge {
  position: absolute;
  top: 30px;
  right: -40px;
  width: 100px;
  height: 100px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(74, 171, 61, 0.3);
}

.contact-badge i {
  color: var(--white);
  font-size: 24px;
}

.contact-badge .rotating-text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotateText 10s linear infinite;
}

.contact-badge text {
  font-size: 14px;
  font-weight: 600;
  fill: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.about-exp-box {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 15px 30px rgba(0, 26, 51, 0.15);
}

.about-exp-box h3 {
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 5px;
  font-weight: 800;
}

.about-exp-box p {
  font-size: 1.05rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.about-features-new {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 30px;
}

.about-features-list {
  flex: 1;
}

.feature-item-new {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.feature-item-new:last-child {
  margin-bottom: 0;
}

.feature-icon-new {
  width: 45px;
  height: 45px;
  background-color: var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-text h4 {
  color: var(--primary-color);
  font-size: 1.15rem;
  margin-bottom: 5px;
}

.feature-text p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0 !important;
}

.about-feature-img {
  width: 140px;
  height: 180px;
  flex-shrink: 0;
}

.about-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Why Choose Us */
.why-choose {
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.why-choose::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
  opacity: 0.1;
  border-radius: 50%;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--soft-blue-gradient);
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: var(--light-gray);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 25px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--secondary-color);
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  transition: var(--transition);
}

.feature-card p {
  color: #666;
  transition: var(--transition);
}

.feature-card:hover h3,
.feature-card:hover p {
  color: var(--white);
}

/* Services */
.services {
  background-color: var(--white);
  background-image: radial-gradient(#16a3ff 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: 0 0;
  background-color: rgba(255, 255, 255, 0.95);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  background: var(--white);
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(10, 43, 107, 0.15);
}

.service-img {
  height: 220px;
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-icon-float {
  position: absolute;
  bottom: -30px;
  right: 30px;
  width: 70px;
  height: 70px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary-color);
  border: 5px solid var(--white);
  z-index: 2;
  transition: var(--transition);
}

.service-card:hover .service-icon-float {
  background: var(--primary-color);
  color: var(--secondary-color);
}

.service-content {
  padding: 40px 30px 30px;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-content p {
  color: #666;
  margin-bottom: 25px;
}

.service-link {
  color: var(--accent-color);
  font-weight: 600;

  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.service-link:hover {
  color: var(--primary-color);
  gap: 12px;
}

/* Brands Slider */
.brands {
  background-color: var(--light-gray);
  padding: 80px 0;
  text-align: center;
}

.brand-track {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 40px;
}

.brand-item {
  width: 180px;
  height: 100px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  padding: 20px;
}

.brand-item img {
  max-width: 100%;
  max-height: 100%;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition);
}

.brand-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.brand-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Process Section */
.process {
  background-color: var(--white);
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 5%;
  width: 90%;
  height: 2px;
  background: dashed 2px var(--accent-color);
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
}

.step-num {
  width: 90px;
  height: 90px;
  background: var(--white);
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 auto 20px;
  box-shadow: 0 10px 20px rgba(22, 163, 255, 0.15);
  transition: var(--transition);

}

.process-step:hover .step-num {
  background: var(--accent-color);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(22, 163, 255, 0.4);
}

.process-step h4 {
  font-size: 1.2rem;
}

/* Subsidy Section */
.subsidy {
  padding: 80px 0;
}

.subsidy .container {
  background: var(--soft-blue-gradient);
  border-radius: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 60px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(10, 43, 107, 0.2);
}

.subsidy-content {
  position: relative;
  z-index: 2;
}

.subsidy-content h2,
.subsidy-content .section-subtitle {
  color: var(--white);
}

.subsidy-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.subsidy-features {
  margin-bottom: 40px;
}

.subsidy-features li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 500;
}

.subsidy-features li i {
  color: var(--secondary-color);
  font-size: 1.5rem;
}

.subsidy-img {
  text-align: center;
  position: relative;
  z-index: 2;
}

.subsidy-img img {
  width: 100%;
  border-radius: 20px;
  animation: float 4s ease-in-out infinite;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sun-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 196, 0, 0.4) 0%, transparent 70%);
  z-index: -1;
  animation: pulse 4s infinite;
}

/* Counters */
.counters {
  background: var(--primary-color) url('https://www.transparenttextures.com/patterns/cubes.png');
  padding: 100px 0;
  color: var(--white);
  position: relative;
}

.counters::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: var(--secondary-color);
}

.counter-wrapper {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.counter-item {
  text-align: center;
}

.counter-num {
  font-size: 4rem;

  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-item p {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Projects Gallery */
.gallery {
  background: var(--light-gray);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 350px;
  cursor: pointer;
  box-shadow: var(--box-shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 43, 107, 0.95) 0%, rgba(10, 43, 107, 0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay h4 {
  color: var(--white);
  font-size: 1.5rem;
  transform: translateY(20px);
  transition: transform 0.4s ease;
  margin-bottom: 10px;
}

.gallery-overlay p {
  color: var(--secondary-color);
  font-weight: 600;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
  transform: translateY(0);
}

/* Testimonials */
.testimonials {
  background: var(--white);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testi-card {
  background: #fff !important;
  padding: 50px 40px;
  border-radius: 20px;
  position: relative;
  transition: var(--transition);
}

.testi-card:hover {
  background: var(--white);
  box-shadow: 0 20px 40px rgba(10, 43, 107, 0.1);
  transform: translateY(-10px);
}

.quote-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 4rem;
  color: rgba(22, 163, 255, 0.15);
  transition: var(--transition);
}

.testi-card:hover .quote-icon {
  color: var(--secondary-color);
  opacity: 0.5;
}

.stars {
  color: var(--secondary-color);
  margin-bottom: 25px;
  font-size: 1.2rem;
}

.testi-card p {
  font-style: italic;
  margin-bottom: 30px;
  color: #555;
  font-size: 1.1rem;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--soft-blue-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.client-details h4 {
  margin-bottom: 5px;
}

.client-details span {
  color: #888;
  font-size: 0.9rem;
}

/* FAQ */
.faq {
  background: var(--light-gray);
}

.faq-container {
  max-width: 900px;
  margin: 60px auto 0;
}

.faq-item {
  background: var(--white);
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;

  color: var(--primary-color);
  font-size: 1.1rem;
  transition: var(--transition);
}

.faq-question i {
  color: var(--accent-color);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--accent-color);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: #666;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  padding: 0 30px 25px;
  max-height: 300px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--secondary-color);
}

/* CTA Section */
.cta {
  background: linear-gradient(rgba(0, 26, 51, 0.85), rgba(0, 26, 51, 0.85)), url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?auto=format&fit=crop&q=80&w=1920') center/cover fixed;
  padding: 120px 0;
  text-align: center;
  color: var(--white);
}

.cta h2 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Footer */
.footer {
  background: #001a29;
  /* Darker blue */
  color: var(--white);
  padding: 80px 0 20px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--soft-blue-gradient);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
}

.footer-logo {
  font-size: 2rem;
  margin-bottom: 20px;
}

.footer-col h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.footer-col p {
  color: #a0aec0;
  margin-bottom: 25px;
  line-height: 1.8;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: #a0aec0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-links a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--accent-color);
}

.footer-links a:hover {
  color: var(--secondary-color);
  transform: translateX(8px);
}

.contact-info li {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  color: #a0aec0;
}

.contact-info i {
  color: var(--secondary-color);
  font-size: 1.5rem;
  margin-top: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--secondary-color);
  transform: translateY(-5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #718096;
}

/* Scroll Reveals */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal.fade-left {
  transform: translateX(-50px);
}

.reveal.fade-right {
  transform: translateX(50px);
}

.reveal.fade-left.active,
.reveal.fade-right.active {
  transform: translateX(0);
}

/* Disable scroll animations on mobile */
@media (max-width: 768px) {

  .reveal,
  .reveal.fade-left,
  .reveal.fade-right,
  .reveal.fade-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Why Choose Us Section Styles */

.why-choose-pill {
  color: var(--text-color);
  border-color: transparent;
  background: var(--light-gray);
  margin-bottom: 20px;
}

.why-choose-heading {
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--primary-color);
}

.why-choose-text {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
}

.trusted-partner-box {
  background: #fff;
  border-left: 4px solid var(--secondary-color);
  padding: 11px;
  border-radius: 10px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 30px;
}

.partner-icon {
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.partner-text h4 {
  font-size: 17px;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 700;
}

.partner-text p {
  color: #666;
  margin-bottom: 0;
  font-size: 14px;
}

.why-choose-divider {
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.why-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-right: 20px;
}

.why-stats .stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 5px;
}

.why-stats .stat-item p {
  color: #666;
  font-size: 0.95rem;
}

.why-choose-arrow {
  transform: rotate(-45deg);
  margin-left: 5px;
}



.why-choose-images .img-top {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 280px;
}

.why-choose-images .img-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-choose-images .img-labels {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
}

.why-choose-images .img-labels span {
  color: #fff;
  padding: 12px 10px;
  font-size: 0.8rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  flex: 1;
  text-align: center;
  white-space: nowrap;
}

.why-choose-images .img-labels span.last-label {
  border-right: none;
  overflow: hidden;
  text-overflow: ellipsis;
}

.why-choose-images .img-bottom-left img {
  width: 100%;
  height: 324px;
  object-fit: cover;
  border-radius: 15px;
}

.why-choose-images .img-bottom-right {
  background: var(--secondary-color);
  border-radius: 15px;
  padding: 30px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.solar-icon-3d {
  position: relative;
  font-size: 4rem;
  margin-bottom: 25px;
  color: #fff;
  filter: drop-shadow(2px 5px 8px rgba(0, 0, 0, 0.2));
}

.solar-icon-3d .fa-sun {
  font-size: 2rem;
  color: #FFC400;
  position: absolute;
  top: -15px;
  right: 40px;
  filter: drop-shadow(0 0 10px rgba(255, 196, 0, 0.5));
}

.why-choose-images .img-bottom-right h4 {
  margin-top: 0px;
  font-size: 19px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid #ffffff21;
  padding-bottom: 8px;
}

.why-choose-images .img-bottom-right p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.why-choose-bottom {
  margin-top: 60px;
  text-align: center;
}

.why-choose-bottom .bottom-pills {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.why-choose-bottom .pill-item {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 8px 25px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

.why-choose-bottom .pill-item:hover {
  background-color: #001a33;
  color: #fff;
  border-color: var(--secondary-color);
}

.why-choose-bottom .dot-bullet {
  color: var(--secondary-color);
  margin-right: 5px;
  transition: color 0.3s ease;
}

.why-choose-bottom .pill-item:hover .dot-bullet {
  color: #fff;
}

.why-choose-bottom .contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
}

.cta-avatar-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.cta-avatar-wrapper img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.cta-phone-icon {
  width: 30px;
  height: 30px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-left: -10px;
  border: 2px solid #fff;
}

.cta-phone-icon i {
  font-size: 0.7rem;
}

.cta-link {
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }

  .subsidy .container {
    padding: 40px;
  }

  .process-timeline::before {
    display: none;
  }

  .process-timeline {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .logo img {
    max-height: 53px !important;
  }

  .top-bar {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
  }

  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100000;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .menu-overlay.active {
    display: block;
    opacity: 1;
  }

  .mobile-only {
    display: flex !important;
  }

  .nav-menu {
    display: flex;
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 30px 25px;
    gap: 15px;
    transition: right 0.4s ease;
    z-index: 100001;
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
  }

  .mobile-nav-header {
    flex-direction: row !important;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 10px;
    width: 100%;
  }

  .mobile-nav-header img {
    max-height: 50px;
  }

  .mobile-menu-close {
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
  }

  .mobile-nav-footer {
    margin-top: auto;
    flex-direction: column;
    gap: 20px;
    border-top: 1px solid #eee;
    padding-top: 25px;
    width: 100%;
  }

  .mobile-nav-footer a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem !important;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .mobile-nav-footer a i {
    color: var(--secondary-color);
    font-size: 1.2rem;
  }

  .header-btn {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .about .container {
    grid-template-columns: 1fr;
  }

  .subsidy .container {
    grid-template-columns: 1fr;
    border-radius: 0;
  }

  .section-padding {
    padding: 60px 0;
  }

  .floating-card {
    display: none;
  }
}

/* Scroll to Top with Progress */
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(74, 171, 61, 0.2);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  content: '';
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  color: var(--secondary-color);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
}

.progress-wrap i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--secondary-color);
  font-size: 18px;
  z-index: 2;
  transition: all 200ms linear;
}

.progress-wrap:hover::after {
  opacity: 0;
}

.progress-wrap:hover i {
  color: var(--secondary-color);
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--secondary-color);
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
}

.hero-content.reveal.fade-left.active {
  width: 70%;
}

/* Services Redesign Overrides */
.services-new-bg {
  background-image: url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?auto=format&fit=crop&q=80&w=1920');
  background-size: cover;
  background-position: center;
  position: relative;
}

.services-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(245, 248, 250, 0.96);
}

.services-pill {
  margin-bottom: 25px;
  color: var(--text-color);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  display: inline-flex;
}

.services-pill .dot {
  background: var(--secondary-color);
}

.services-main-heading {
  font-size: 3.2rem;
  line-height: 1.15;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0;
}

.services-desc {
  color: #666;
  font-size: 1.1rem;
  text-align: left;
  margin-bottom: 25px;
}

.btn-services {
  padding: 12px 25px;
  font-weight: 600;
  text-transform: none;
  border-radius: 8px;
}

.btn-services-icon {
  margin-left: 5px;
  font-size: 0.9rem;
}

.services-avatar-box {
  position: relative;
  display: flex;
  align-items: center;
}

.services-avatar-img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
}

.services-phone-icon {
  width: 35px;
  height: 35px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-left: -15px;
  border: 2px solid #fff;
}

.services-phone-icon i {
  font-size: 0.7rem;
}

.services-review-text {
  font-size: 1.05rem;
  color: #555;
}

.services-review-text strong {
  color: var(--secondary-color);
  text-decoration: underline;
}

.services-rating {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-color);
}

.services-rating .stars {
  color: var(--secondary-color);
  letter-spacing: 2px;
  font-size: 1.2rem;
}

.services-rating .review-count {
  font-weight: 600;
  margin-left: 5px;
  color: var(--primary-color);
}

/* New Services Section Styles */
.service-card-new {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.service-img-new {
  position: relative;
  padding: 20px;
  padding-bottom: 0;
}

.service-img-new img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
}

.service-icon-new {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 45px;
  height: 45px;
  background: var(--secondary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(74, 171, 61, 0.3);
}

.service-content-new {
  padding: 25px 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-content-new h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.service-content-new p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.service-link-wrapper {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 20px;
}

.service-link-new {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s;
}

.service-link-new:hover .icon-circle {
  transform: scale(1.1) rotate(45deg);
}

.bg-white {
  background-color: #fff !important;
}

/* New Footer Design */
.footer {
  color: #fff;
  border-top: none;
  background-color: #001a33;
}

.footer-pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.8;
  pointer-events: none;
}

.footer-logo span {
  color: #fff;
}

.social-links-new {
  display: flex;
  gap: 15px;
}

.social-links-new a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.social-links-new a:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-links-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  padding: 40px;
  height: 100%;
}

.footer-links-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #fff;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.footer-links a::before {
  content: "•";
  color: var(--secondary-color);
  font-size: 1.2rem;
  line-height: 1;
}

.footer-links a:hover {
  color: var(--secondary-color);
  transform: translateX(8px);
}

.newsletter-form {
  position: relative;
  display: flex;
}

.newsletter-form input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 10px 40px 10px 0;
  font-size: 0.9rem;
}

.newsletter-form input:focus {
  outline: none;
  border-bottom-color: var(--secondary-color);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  position: absolute;
  right: 0;
  top: 42%;
  transform: translateY(-50%);
  background: var(--secondary-color);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: #fff;
  color: var(--secondary-color);
}

.footer-contact-row {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 0;
  margin-top: 20px;
}

.contact-item-new {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-item-new .icon-box {
  width: 45px;
  height: 45px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}

.contact-item-new .contact-text {
  display: flex;
  flex-direction: column;
}

.contact-item-new .contact-text span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 3px;
}

.contact-item-new .contact-text strong {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}

.footer-bottom-new {
  padding-top: 30px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Infinite Marquee Brands */
.brands-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0 40px 0;
  display: flex;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

.marquee-content {
  display: flex;
  gap: 30px;
  animation: scrollMarquee 30s linear infinite;
  padding-left: 30px;
}

.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 15px));
  }
}

.brand-card-new {
  background: #fff;
  border-radius: 12px;
  padding: 35px 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  min-width: max-content;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--secondary-color);
}

.brand-card-new h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.brand-card-new:hover h3 {
  color: var(--secondary-color);
}

/* Process Section New Timeline */
.process-section-new {
  background-color: #f9fbfc !important;
  padding: 80px 0;
  overflow: hidden;
}

.process-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  margin-top: 60px;
}

.process-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--secondary-color);
  transform: translateY(-50%);
  z-index: 1;
  border-radius: 6px;
}

.process-col {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  height: 600px;
}

/* Column Flex Ordering */
.process-col-up {
  justify-content: flex-start;
}

.process-col-down {
  justify-content: flex-end;
}

.process-col-up .p-image-wrap {
  order: 1;
}

.process-col-up .p-icon {
  order: 2;
}

.process-col-up .p-content {
  order: 3;
}

.process-col-down .p-content {
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.process-col-down .p-icon {
  order: 2;
}

.process-col-down .p-image-wrap {
  order: 3;
}

/* Components */
.p-image-wrap {
  height: 250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-image-wrap img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.shape-1 img {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='35' y='0' width='30' height='100' rx='10' /%3E%3Crect x='35' y='0' width='30' height='100' rx='10' transform='rotate(60 50 50)' /%3E%3Crect x='35' y='0' width='30' height='100' rx='10' transform='rotate(120 50 50)' /%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='35' y='0' width='30' height='100' rx='10' /%3E%3Crect x='35' y='0' width='30' height='100' rx='10' transform='rotate(60 50 50)' /%3E%3Crect x='35' y='0' width='30' height='100' rx='10' transform='rotate(120 50 50)' /%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  clip-path: none;
}

.shape-2 img,
.shape-4 img {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='30' /%3E%3Ccircle cx='70' cy='30' r='30' /%3E%3Ccircle cx='30' cy='70' r='30' /%3E%3Ccircle cx='70' cy='70' r='30' /%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='30' /%3E%3Ccircle cx='70' cy='30' r='30' /%3E%3Ccircle cx='30' cy='70' r='30' /%3E%3Ccircle cx='70' cy='70' r='30' /%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  clip-path: none;
  border-radius: 0;
  transform: none;
}

.shape-3 img {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='30' y='0' width='40' height='100' rx='20' /%3E%3Crect x='30' y='0' width='40' height='100' rx='20' transform='rotate(45 50 50)' /%3E%3Crect x='30' y='0' width='40' height='100' rx='20' transform='rotate(90 50 50)' /%3E%3Crect x='30' y='0' width='40' height='100' rx='20' transform='rotate(135 50 50)' /%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='30' y='0' width='40' height='100' rx='20' /%3E%3Crect x='30' y='0' width='40' height='100' rx='20' transform='rotate(45 50 50)' /%3E%3Crect x='30' y='0' width='40' height='100' rx='20' transform='rotate(90 50 50)' /%3E%3Crect x='30' y='0' width='40' height='100' rx='20' transform='rotate(135 50 50)' /%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  clip-path: none;
}

.p-content {
  height: 250px;
  text-align: center;
  padding: 20px 10px;
}

.p-icon {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-icon-inner {
  width: 55px;
  height: 55px;
  background: var(--secondary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.p-pill {
  background: #fff;
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 18px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 15px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.p-title {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.p-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* New Map-based Subsidy Section */
.subsidy-section-new {
  position: relative;
  overflow: hidden;
}

.progress-fill {
  width: 0 !important;
  transition: width 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s;
}

.reveal.active .progress-fill {
  width: var(--target-width) !important;
}

.map-side-new {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.map-container {
  position: relative;
  width: 100%;
  max-width: 700px;
}

.map-image {
  width: 100%;
  height: auto;
}

.map-pin {
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 6px rgba(76, 175, 80, 0.2);
}

.map-pin::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--secondary-color);
  animation: pinPulse 2s infinite;
}

@keyframes pinPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }

  100% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}

.map-floating-card {
  position: absolute;
  transform: translate(-50%, -100%);
  background: #fff;
  border-radius: 12px;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 10;
  margin-top: -15px;
  border: 1px solid var(--secondary-color);
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.15) !important;
}

.map-floating-card::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px 8px 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

.mfc-icon {
  width: 45px;
  height: 45px;
  background: var(--secondary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.mfc-text h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
}

.mfc-text p {
  font-size: 0.85rem;
}

/* Process Timeline Responsive */
@media (max-width: 991px) {
  .col-12.d-lg-none.mb-5 img {
    height: 300px !important;
    width: 100% !important;
    object-fit: cover;
  }

  .container.position-relative.z-1.pt-5.pb-4 {
    padding-bottom: 0px !important;
  }

  .footer {
    padding: 20px 0 20px !important;
  }

  .container.reveal.active a {
    font-size: 14px !important;
    padding: 14px 14px !important;
  }

  .row.mt-5.pt-4.reveal.fade-up.active {
    margin-top: 0px !important;
  }

  .stats-banner-new {
    padding-top: 20px !important;
  }

  .faq-icon-new {
    width: 43px !important;
  }

  .about-content.reveal.fade-right.active h2::after {
    left: 31px !important;
  }

  h2 {
    font-size: 27px !important;
  }

  .hero-content.reveal.fade-left.active {
    width: 100% !important;
  }

  .trust-badges {
    margin-top: 0px !important;
  }

  .contact-badge {
    display: none;
  }

  .header {
    top: 0px;
  }

  .process-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 30px;
  }

  .process-line {
    display: none;
  }

  .process-col {
    height: auto;
  }

  .process-col-up .p-image-wrap,
  .process-col-down .p-image-wrap {
    order: 1;
  }

  .process-col-up .p-icon,
  .process-col-down .p-icon {
    order: 2;
    height: 80px;
  }

  .process-col-up .p-content,
  .process-col-down .p-content {
    order: 3;
    height: auto;
  }
}

@media (max-width: 767px) {
  .process-grid-new {
    grid-template-columns: 1fr;
  }
}


.service-link-new:hover .icon-circle {
  transform: scale(1.1) rotate(45deg);
}

.bg-white {
  background-color: #fff !important;
}

img.img-fluid.map-image {
  height: 780px;
}



h2.section-title.mb-4.after-left-border::after {
  left: 31px !important;
}

/* Testimonials Section New */
.testimonial-section-new {
  position: relative;
}

.testi-card {
  background-color: #f7f9fc;
  border-radius: 12px;
  padding: 40px 30px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.testi-stars {
  color: var(--secondary-color);
  font-size: 1rem;
  margin-bottom: 20px;
  display: flex;
  gap: 5px;
}

.testi-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.testi-text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 30px;
}

.testi-divider {
  height: 1px;
  background-color: rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 3px 0;
}

.testi-role {
  font-size: 0.85rem;
  color: #888;
}

.testi-footer-info {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background-color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
}

.testi-avatars-group {
  display: flex;
  align-items: center;
  position: relative;
}

.testi-avatars-group img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  position: relative;
  z-index: 1;
}

.testi-phone-icon {
  width: 35px;
  height: 35px;
  background-color: var(--secondary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  border: 2px solid #fff;
  margin-left: -10px;
  position: relative;
  z-index: 2;
}

.testi-footer-text {
  font-size: 0.95rem;
  color: #555;
}

.testi-footer-text a {
  color: var(--secondary-color);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.testi-footer-text a:hover {
  text-decoration: none;
}

.testi-rating-info {
  font-size: 1.05rem;
  color: var(--primary-color);
}

.testimonial-section-new {
  background-color: #f9fbfc !important;
}

/* Swiper Pagination Customization */
.testimonial-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.testimonial-swiper .swiper-pagination-bullet-active {
  background: var(--secondary-color) !important;
  opacity: 1;
  transform: scale(1.3);
}

/* Creative Gallery */
.cg-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cg-image {
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
}

.cg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cg-item:hover .cg-image img {
  transform: scale(1.08);
}

.cg-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 25px 25px 25px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
  transform: translateY(10px);
}

.cg-item:hover .cg-content {
  transform: translateY(0);
}

.cg-tag {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 8px;
}

.cg-title {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin: 0;
  font-weight: 700;
}

.cg-icon {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: #f4f7fb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.cg-item:hover .cg-icon {
  background: var(--secondary-color);
  color: #fff;
}

/* New FAQ Section */
.faq-section-new {
  background-color: #fff;
}

.faq-accordion-new {
  width: 100%;
}

.faq-item-new {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 25px 0;
  cursor: pointer;
}

.faq-item-new:first-child {
  padding-top: 0;
}

.faq-question-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.faq-icon-new {
  width: 30px;
  height: 30px;
  background-color: var(--secondary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.faq-answer-new {
  display: none;
  padding-top: 15px;
  padding-right: 40px;
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
}

/* New Stats Banner */
.stats-banner-new {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 50px;
}

.stats-icon-circle {
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.stats-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.stats-text {
  font-size: 0.95rem;
  color: #666;
  font-weight: 500;
}

@media (min-width: 768px) {
  .border-start-md {
    border-left: 1px solid rgba(0, 0, 0, 0.05);
  }

  .border-end-md {
    border-right: 1px solid rgba(0, 0, 0, 0.05);
  }
}

.d-flex.align-items-center.justify-content-center.justify-content-md-center.gap-3 {
  gap: 20px;
  text-align: left;
  align-items: center;
}

/* Footer Addresses */
.footer-address-box {
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  padding: 10px 15px;
  color: #fff;
  font-size: 0.95rem;
  background: transparent;
  text-align: center;
  width: 100%;
}

.footer-address-box strong {
  font-weight: 700;
  margin-right: 10px;
  color: #fff;
}

.footer-address-box:last-child {
  margin-bottom: 0;
}

/* Breadcrumb Banner */
.breadcrumb-banner {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&q=80&w=1920');
  background-size: cover;
  background-position: center;
  padding: 160px 0 100px 0;
  color: #fff;
}

.breadcrumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(2, 33, 56, 0.95), rgba(2, 33, 56, 0.7));
  z-index: 0;
}

.breadcrumb-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.breadcrumb-links {
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb-links a:hover {
  color: var(--secondary-color);
}

.breadcrumb-links .current {
  color: var(--secondary-color);
}

.approach-card {
  transition: transform 0.3s ease;
}

.approach-card:hover {
  transform: translateY(-10px);
}

/* Advantage Badges */
.advantage-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #fff;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #333;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.advantage-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary-color);
  margin-right: 8px;
  transition: all 0.3s ease;
}

.advantage-badge:hover {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.advantage-badge:hover .dot {
  background-color: #fff;
}

/* About Page Specific Styles */
.about-hero-pill {
  display: inline-flex;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #fff;
  margin-bottom: 15px;
}

.about-hero-pill-light {
  background: #f4f7fb;
  border-color: transparent;
  color: var(--primary-color);
}

.about-section-title {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
  border: none;
  color: #001A33;
}

.about-section-desc {
  font-size: 1.05rem;
  line-height: 1.7;
}

.approach-section-wrapper {
  background-color: #f4f8fa;
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}

.bg-watermark-pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
  opacity: 0.05;
  z-index: 0;
}

.approach-bg-image {
  position: absolute;
  right: 15px;
  top: 0;
  width: 40%;
  height: calc(100% - 30px);
  z-index: 0;
}

.approach-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approach-icon-circle {
  width: 55px;
  height: 55px;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.approach-card-title {
  color: var(--primary-color);
  font-weight: 700;
}

.approach-card-divider {
  width: 100%;
  height: 1px;
  background-color: #eee;
  margin-bottom: 10px;
}

.wwd-video-img {
  object-fit: cover;
  height: 350px;
}

.wwd-video-btn-wrapper {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.wwd-contact-badge {
  width: 110px;
  height: 110px;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  box-shadow: none;
}

.wwd-rotating-text {
  animation: rotateText 15s linear infinite;
}

.wwd-svg-text {
  font-size: 14px;
  letter-spacing: 2px;
}

.wwd-play-icon {
  color: white;
  font-size: 22px;
}

.wwd-right-img {
  object-fit: cover;
  height: 420px;
}

.wwd-icon-circle {
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.wwd-rating-block {
  border-color: #eee !important;
  min-width: 140px;
}

.wwd-divider {
  border-color: #eee;
  margin-bottom: 30px;
  border-top: 1px solid #eee;
  opacity: 1;
}

.btn-learn-more {
  border-radius: 5px;
  text-transform: none;
  padding: 12px 25px;
  font-weight: 600;
}

.arrow-up-right {
  transform: rotate(-45deg);
}

/* Our Advantages Section Specific Styles */
.advantages-hero-pill {
  display: inline-flex;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #f4f7fb;
}

.advantages-section-title {
  color: #001A33;
  font-size: 3rem;
  line-height: 1.3;
}

.advantage-card-bg {
  background-color: #f8f9fa;
}

.advantage-card-icon {
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.advantage-card-value {
  font-size: 3.5rem;
  font-weight: 800;
  color: #001A33;
  margin-bottom: 5px;
  letter-spacing: -1px;
}

.advantage-card-subtitle {
  font-weight: 700;
  color: #444;
  margin-bottom: 25px;
  font-size: 1rem;
}

.advantage-card-divider {
  width: 100%;
  height: 1px;
  background-color: #e5e9ec;
  margin-bottom: 25px;
}

.advantage-card-desc {
  font-size: 0.95rem;
  line-height: 1.7;
}

.advantage-center-img-wrapper {
  height: 480px;
  max-width: 400px;
}

.advantage-img-dot {
  position: absolute;
  top: 15px;
  right: -15px;
  width: 16px;
  height: 16px;
  background-color: var(--secondary-color);
  border-radius: 50%;
}

.advantages-rating-score {
  font-weight: 800;
  color: #001A33;
  font-size: 1.15rem;
  margin-right: 12px;
}

.advantages-rating-stars {
  color: var(--secondary-color);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.advantages-rating-text {
  font-weight: 700;
  color: #001A33;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .about-feature-img {
    width: 100% !important;
    height: 380px !important;
  }

  .about-feature-img {
    margin-top: 30px;
  }

  .about-features-new {
    display: block;
  }

  .footer-address-box {
    font-size: 0.85rem !important;
    padding: 10px 12px !important;
  }

  .footer-address-box strong {
    display: block;
    margin-right: 0;
    margin-bottom: 5px;
  }

  /* Global Resets for Mobile */
  .section-title {
    line-height: 1.3 !important;
  }

  .display-4 {
    font-size: 2.5rem !important;
  }

  .section-padding {
    padding: 60px 0 !important;
  }

  /* Feature & Stats Stacking */
  .stats-banner-new .border-start-md,
  .stats-banner-new .border-end-md {
    border: none !important;
  }

  .stats-col {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .stats-col:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .stats-banner-new .d-flex {
    justify-content: flex-start !important;
    text-align: left;
  }

  /* Footer Contact alignment */
  .contact-item-new.justify-content-center {
    justify-content: flex-start !important;
  }

  /* Sliders & Galleries */
  .gallery-overlay h4 {
    font-size: 1.2rem;
  }

  .wwd-right-img {
    width: 100% !important;
  }

  .wwd-video-img {
    width: 100% !important;
  }

  /* Breadcrumb */
  .breadcrumb-banner {
    padding: 120px 0 60px 0;
    margin-top: 50px;
  }

  .breadcrumb-title {
    font-size: 2.5rem;
  }

  /* Advantages Section Mobile */
  .advantages-section-title {
    font-size: 27px !important;
  }

  .advantage-center-img-wrapper {
    height: 350px !important;
  }

  .advantage-img-dot {
    right: 5px !important;
  }
}

.approach-card.bg-white.p-4.p-md-5.rounded-4.shadow.h-100.border-0 h4 {
  font-size: 30px;
  margin-bottom: 10px !important;
}

h2.section-title.text-left.mb-4.about-section-title.left-31::after {
  left: 31px !important;
}

img.img-fluid.rounded-4.w-100.h-100 {
  width: 100%;
}

.advantage-card.p-4.p-xl-5.rounded-4.position-relative.text-start {
  text-align: left;
}

.d-flex.flex-wrap.justify-content-center.gap-3.mb-4.mt-2 {
  gap: 20px;
}

/* Contact Page Mockup Styles */
.contact-info-card {
  background-color: #001A33;
  color: white;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}

.contact-info-img-wrapper {
  padding: 15px;
}

.contact-info-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 15px;
}

.contact-info-content {
  padding: 10px 40px 40px 40px;
}

.contact-info-title {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 25px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 25px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 45px;
  height: 45px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-info-text span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3px;
}

.contact-info-text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: white;
}

.contact-form-card {
  background-color: #f4f7fb;
  border-radius: 20px;
  padding: 50px;
  height: 100%;
}

.contact-form-title {
  color: #001A33;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.contact-form-desc {
  color: #666;
  margin-bottom: 40px;
  line-height: 1.7;
  font-size: 1rem;
}

.contact-form-label {
  display: block;
  font-weight: 700;
  color: #001A33;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.contact-form-input {
  width: 100%;
  padding: 18px 20px;
  border: none;
  border-radius: 10px;
  background-color: white;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  color: #333;
}

.contact-form-input::placeholder {
  color: #999;
}

.contact-form-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(67, 184, 91, 0.15);
}

textarea.contact-form-input {
  resize: vertical;
  min-height: 140px;
}

.contact-submit-btn {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

.contact-submit-btn:hover {
  background-color: #369b4c;
}

@media (max-width: 768px) {
  .contact-info-content {
    padding: 10px 20px 30px 20px;
  }

  .contact-form-card {
    padding: 30px 20px;
  }

  .contact-form-title {
    font-size: 2rem;
  }
}

/* Services Mobile Native Slider */
@media (max-width: 767px) {
  .services-mobile-slider {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    scroll-padding: 15px;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
  }

  .services-mobile-slider::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
  }

  .services-mobile-slider>div {
    flex: 0 0 85% !important;
    max-width: 85% !important;
    scroll-snap-align: center;
  }
}

/* Service Detail Page Styles */
.service-offer-list li {
  margin-bottom: 12px;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #555;
  font-size: 1rem;
}

.service-offer-list li i {
  margin-top: 4px;
  font-size: 1.1rem;
}

.service-detail-video-box {
  overflow: hidden;
}

.play-button-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 1rem;
}

.play-btn-circle {
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
}

.play-btn-circle:hover {
  transform: scale(1.1);
  background: rgba(0, 0, 0, 0.7);
}

.sidebar-service-list {
  padding: 0 30px !important;
}

.sidebar-service-list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.sidebar-service-list li:last-child {
  border-bottom: none;
}

.sidebar-service-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  color: #001A33;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.sidebar-service-list a:hover {
  color: var(--secondary-color);
}

.sidebar-service-list a i {
  font-size: 0.9rem;
  color: #001A33;
  transition: all 0.3s ease;
}

.sidebar-service-list a:hover i {
  color: var(--secondary-color);
  transform: translate(2px, -2px);
}



/* Services Page Mockup Styles */
.service-mockup-card {
  background-color: #f8f9fa;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
  padding: 15px;
}

.service-mockup-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-mockup-img-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 25px;
}

.service-mockup-img-wrapper img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
  transition: all 0.5s ease;
}

.service-mockup-card:hover .service-mockup-img-wrapper img {
  transform: scale(1.05);
}

.service-icon-float {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 45px;
  height: 45px;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(67, 184, 91, 0.3);
}

.service-mockup-content {
  padding: 0 10px 10px 10px;
}

.service-mockup-content h4 {
  color: #001A33;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-mockup-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.service-mockup-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 20px;
}

.service-mockup-footer a {
  display: inline-flex;
  align-items: center;
  color: #001A33;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-mockup-footer a:hover {
  color: var(--secondary-color);
}

.service-mockup-footer .circle-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  margin-left: 10px;
  transition: all 0.3s ease;
}

.service-mockup-card:hover .service-mockup-footer .circle-arrow {
  transform: translateX(5px);
}

.service-detail-content img {
  width: 100%;
}

.sidebar-contact-card.rounded-4.p-4.text-white.position-relative.overflow-hidden h4 {
  color: #fff;
  border-bottom: 1px solid #ffffff2b;
  padding-bottom: 10px;
}

.sidebar-contact-icon.bg-success.text-white.rounded-circle.d-flex.align-items-center.justify-content-center {
  background: #4aab3d;
  border-radius: 50px;
}

i.fa-solid.fa-headset {
  color: #fff !important;
}

.sidebar-contact-3d-icon img {
  width: 80px;
}

/* Service Detail Mobile Responsiveness */
@media (max-width: 768px) {
  .breadcrumb-banner {
    padding: 60px 0;
  }

  .breadcrumb-title {
    font-size: 2rem !important;
  }

  .sidebar-card-header {
    padding: 20px 20px !important;
  }

  .sidebar-service-list {
    padding: 0 20px !important;
  }

  .sidebar-contact-card {
    padding: 20px !important;
  }

  .service-offer-list li {
    font-size: 0.95rem;
  }
}

/* FAQ Page Styles */
.premium-faq-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.premium-faq-tabs .nav-item {
  margin: 0;
}

.premium-faq-tabs .nav-link {
  background: #fff;
  border: 1px solid #e0e6ed;
  color: #001A33;
  font-weight: 600;
  padding: 15px 35px;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.premium-faq-tabs .nav-link:hover {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

.premium-faq-tabs .nav-link.active {
  background: var(--secondary-color) !important;
  color: #fff !important;
  border-color: var(--secondary-color);
  box-shadow: 0 8px 25px rgba(74, 171, 61, 0.35);
}

/* Premium FAQ Accordion overrides */
.premium-accordion .accordion-item {
  border: none !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 0 !important;
  margin-bottom: 0;
  box-shadow: none !important;
  background: transparent;
  overflow: hidden;
}

.premium-accordion .accordion-item:last-child {
  border-bottom: none !important;
}

.premium-accordion .accordion-item:hover {
  box-shadow: none;
}

.premium-accordion .accordion-button {
  background-color: transparent !important;
  color: #001A33 !important;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 25px 0;
  border: none;
  box-shadow: none !important;
  border-radius: 0 !important;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  gap: 15px;
}

.premium-accordion .accordion-button:not(.collapsed) {
  color: #001A33 !important;
  background-color: transparent !important;
  padding-bottom: 15px;
}

.premium-accordion .accordion-button::after {
  display: none;
  /* Hide default icon */
}

.premium-accordion .accordion-button .faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

.premium-accordion .accordion-button:not(.collapsed) .faq-icon {
  transform: rotate(180deg);
}

.premium-accordion .accordion-body {
  padding: 0 15px 30px 0;
  color: #666;
  line-height: 1.8;
  font-size: 1.05rem;
  background-color: transparent;
}

/* Mobile responsive FAQ */
@media (max-width: 768px) {
  .premium-faq-tabs {
    /* flex-wrap: nowrap; */
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
  }

  .premium-faq-tabs::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
  }

  .premium-faq-tabs .nav-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .premium-faq-tabs .nav-link {
    width: auto;
    white-space: nowrap;
  }

  .premium-accordion .accordion-button {
    padding: 20px 60px 20px 20px;
    font-size: 1rem;
  }

  .premium-accordion .accordion-button .faq-icon {
    right: 15px;
    width: 30px;
    height: 30px;
  }

  .premium-accordion .accordion-body {
    padding: 0 20px 25px 20px;
  }
}

/* ==========================================================================
   Project Glass Cards
   ========================================================================== */
.project-glass-card {
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  height: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-glass-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-glass-overlay {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  border-radius: 12px;
  padding: 25px 20px;
  background: linear-gradient(to top, rgba(0, 15, 30, 0.85) 0%, rgba(0, 15, 30, 0.5) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-glass-overlay h4 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0;
  transition: all 0.4s ease;
}

.project-view-details {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.project-view-details .icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #fff;
}

.project-glass-card:hover img {
  transform: scale(1.05);
}

.project-glass-card:hover .project-glass-overlay {
  background: linear-gradient(to top, rgba(0, 15, 30, 0.95) 0%, rgba(0, 15, 30, 0.7) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-glass-card:hover .project-view-details {
  opacity: 1;
  max-height: 40px;
  margin-top: 15px;
}

/* Mobile responsive Project Slider */
@media (max-width: 768px) {
  .projects-mobile-slider {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
  }

  .projects-mobile-slider::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
  }

  .projects-mobile-slider>.col-md-6 {
    flex: 0 0 85%;
    /* Cards take up 85% of screen width on mobile */
    scroll-snap-align: center;
    max-width: 85%;
  }

  .project-glass-card {
    height: 350px;
  }
}

/* ==========================================================================
   Policy Pages (Terms & Privacy)
   ========================================================================== */
.policy-content {
  background: #fff;
  padding: 0px;
  border-radius: 16px;
  color: #555;
  line-height: 1.8;
}

.policy-content h2 {

  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
}

.policy-content p {
  font-size: 18px;
  padding-bottom: 10px;
}

.policy-content ul li {
  font-size: 18px;
}

@media (max-width: 768px) {
  .policy-content {
    padding: 25px;
  }

  .policy-content h2 {
    font-size: 1.3rem;
  }

  .policy-content p {
    font-size: 1rem;
  }
}

/* ==========================================================================
   Swiper Pagination Customization
   ========================================================================== */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d1d5db;
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background-color: var(--secondary-color);
  transform: scale(1.2);
}

.service-detail-content p {
  margin-bottom: 0px !important;
}

.service-detail-content h2 {
  margin-bottom: 0px !important;
}

.service-detail-content h3 {
  margin-bottom: 0px !important;
}

/* ==========================================================================
   Fixed Mobile WhatsApp Button
   ========================================================================== */
.mobile-whatsapp-btn {
  display: none;
  position: fixed;
  bottom: 25px;
  left: 20px;
  width: 55px;
  height: 55px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-whatsapp-btn:hover,
.mobile-whatsapp-btn:focus {
  background-color: #1ebe57;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  .advantage-card-value {
    font-size: 30px !important;
  }

  .footer-logo.logo.mb-0 img {
    max-height: 103px !important;
  }

  .why-stats .stat-item h3 {
    font-size: 27px !important;
  }

  .hero-testimonial-text {
    font-size: 13px !important;
  }

  .mobile-whatsapp-btn {
    display: flex;
  }
}

/* ==========================================================================
   Fix for Sticky Header Mobile Menu Toggle
   ========================================================================== */
@media (max-width: 991px) {
  .trust-badges {
    padding: 10px 0 !important;
  }

  .header.sticky .mobile-menu-toggle {
    display: block !important;
    color: var(--primary-color) !important;
    z-index: 105;
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
  }

}

section#home {
  margin-top: 96px;
}

img.img-fluid.rounded-4.shadow-sm.w-100 {
  width: 100%;
}