/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  color: #333;
  background: #fff;
  font-size: 14px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 60px 0;
}

/* Colors - More Vibrant */
:root {
  --primary: #00b894;
  --primary-dark: #008b6d;
  --accent: #00d1a3;
  --primary-light: #eaf6ea; /* Light Section BG */

  --secondary: #ffc107; /* CTA / Buttons (Solar Yellow) */
  --accent: #2c7fb8; /* Tech Blue (icons / links) */
  --accent2: #6fae4a; /* Soft Green */

  --dark: #1f2933; /* Text */
  --gray: #6b7280;
  --light-gray: #f8fafc;
  --border: #e5e7eb;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  text-decoration: none;
  border-radius: 6px;
  /* font-weight: 600; */
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 184, 148, 0.3);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary-light);
  box-shadow: 0 10px 20px rgba(0, 184, 148, 0.2);
}

/* Navbar - Animated */
/* Navigation with Dropdown */
.dropdown {
  position: relative;
}

.dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown > a i {
  font-size: 12px;
  transition: transform 0.3s;
}

.dropdown:hover > a i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 1000;
  border: 1px solid var(--border);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--dark);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-left-color: var(--primary);
  padding-left: 25px;
}

/* Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 12px 0;
  animation: slideInDown 0.5s ease;
}

@keyframes slideInDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  object-fit: cover;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Desktop Nav Links */
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: var(--dark);
  text-decoration: none;
  font-size: 14px;
  position: relative;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a:after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.3s;
}

.nav-links a:hover:after,
.nav-links a.active:after {
  width: 100%;
}

/* Dropdown */
.nav-links .dropdown:hover > .dropdown-menu {
  display: block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  overflow: hidden;
  z-index: 100;
}

.dropdown-menu li a {
  padding: 10px 20px;
  display: block;
  color: var(--dark);
  font-size: 14px;
}

.dropdown-menu li a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

/* CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.phone {
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--primary-light);
  border-radius: 20px;
  transition: all 0.3s;
}

.phone:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-1px);
}

.btn {
  padding: 8px 20px;
  background: var(--primary);
  color: white;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn:hover {
  background: var(--accent);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--dark);
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 1001;
  transition: left 0.3s;
  overflow-y: auto;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--border);
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.mobile-nav-links {
  list-style: none;
  padding: 20px;
}

.mobile-nav-links li {
  margin-bottom: 10px;
}

.mobile-nav-links a {
  display: block;
  padding: 15px;
  color: var(--dark);
  text-decoration: none;
  font-size: 16px;
  border-radius: 8px;
  transition: all 0.3s;
}

.mobile-nav-links a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

/* Mobile Dropdown */
.mobile-nav-links .dropdown > a {
  position: relative;
}

.mobile-nav-links .dropdown .dropdown-menu {
  display: none;
  margin-top: 5px;
  padding-left: 15px;
}

.mobile-nav-links .dropdown.active .dropdown-menu {
  display: block;
}
/* Mobile Dropdown */
.mobile-nav-links .dropdown .dropdown-menu {
  display: none;
  padding-left: 15px;
}

.mobile-nav-links .dropdown.active .dropdown-menu {
  display: block;
}
/* Mobile CTA */
.mobile-cta {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-top: 1px solid var(--border);
}

/* Responsive */
@media (max-width: 992px) {
  .mobile-menu-btn {
    display: block;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
}
/* Responsive */
@media (max-width: 992px) {
  .nav-links,
  .nav-cta .btn {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .nav-cta .phone {
    display: flex;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(0.6);
}

.hero-content {
  max-width: 1140px;
  padding-left: 15px;
  padding-right: 15px;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}

.highlight {
  color: #ffc107;
}

.hero-sub {
  color: #f1f1f1;
  font-size: 20px;
  margin-top: 15px;
  text-align: left;
}

@media (max-width: 992px) {
  .hero-content {
    text-align: center;
  }
}

/* Services - Colorful Cards */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-subtitle {
  display: inline-block;
  color: var(--primary);
  /* font-weight: 600; */
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  padding: 8px 20px;
  background: var(--primary-light);
  border-radius: 20px;
}

.section-title {
  font-size: 26px;
  color: var(--dark);
  margin-bottom: 15px;
  /* font-weight: 700; */
}

.section-desc {
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
  font-size: 15px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 184, 148, 0.15);
  border-color: var(--primary-light);
}

.service-card:hover:before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-light), white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--primary);
  font-size: 24px;
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--dark);
}

.service-card p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.service-features {
  list-style: none;
  margin-top: 15px;
}

.service-features li {
  padding: 8px 0;
  color: var(--gray);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li i {
  color: var(--primary);
  font-size: 12px;
}

/* Why Choose Us - Updated UI */
.why-choose {
  background: linear-gradient(135deg, #f8fffd 0%, #ffffff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.why-choose:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2300b894' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.why-container {
  position: relative;
  z-index: 1;
}

.why-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.feature-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 184, 148, 0.1);
  border: 1px solid #e8f8f5;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.feature-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  transition: width 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 184, 148, 0.15);
}

.feature-card:hover:before {
  width: 6px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e8f8f5, white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 24px;
  transition: all 0.3s;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--dark);
  /* font-weight: 600; */
}

.feature-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.feature-badge {
  display: inline-block;
  background: #e8f8f5;
  color: var(--primary);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  /* font-weight: 600; */
  border: 1px solid rgba(0, 184, 148, 0.2);
}

/* Why Image Section */
.why-stats-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.image-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-container img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s;
}

.image-container:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.7));
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.experience-badge {
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 25px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 184, 148, 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.experience-badge .years {
  font-size: 42px;
  /* font-weight: 800; */
  color: var(--primary);
  line-height: 1;
}

.experience-badge .text {
  font-size: 14px;
  /* font-weight: 600; */
  color: var(--dark);
  line-height: 1.3;
}

/* Stats Container */
.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-box {
  background: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 184, 148, 0.08);
  border: 1px solid #e8f8f5;
  transition: all 0.3s;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 184, 148, 0.15);
}

.stat-number {
  font-size: 36px;
  /* font-weight: 800; */
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: var(--dark);
  /* font-weight: 600; */
  margin-bottom: 5px;
}

.stat-desc {
  font-size: 11px;
  color: var(--gray);
}

/* CTA Buttons */
.why-cta {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.why-cta .btn {
  flex: 1;
  padding: 15px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .why-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-choose {
    padding: 60px 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .stats-container {
    grid-template-columns: 1fr;
  }

  .why-cta {
    flex-direction: column;
  }

  .why-cta .btn {
    width: 100%;
  }

  .experience-badge {
    padding: 12px 20px;
  }

  .experience-badge .years {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 24px;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .feature-card h3 {
    font-size: 16px;
  }

  .stat-number {
    font-size: 30px;
  }
}

/* Projects - Multiple Images */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.project-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
  position: relative;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 184, 148, 0.15);
}

.project-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0, 184, 148, 0.8));
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-content {
  padding: 25px;
}

.project-category {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  /* font-weight: 600; */
  margin-bottom: 15px;
}

.project-title {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--dark);
}

.project-desc {
  color: var(--gray);
  font-size: 13px;
  margin-bottom: 15px;
}

.project-details {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray);
}

/* Testimonials - Scrollable Carousel */
.testimonials-container {
  position: relative;
  overflow: hidden;
  padding: 20px 0 60px;
}

.testimonials-carousel {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 10px 40px;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
  cursor: grab;
}

.testimonials-carousel::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.testimonials-carousel:active {
  cursor: grabbing;
}

.testimonial-card {
  min-width: 350px;
  /* flex: 0 0 auto; */
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  position: relative;
  opacity: 0.9;
  transform: scale(0.98);
}

.testimonial-card:hover {
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 20px 40px rgba(0, 184, 148, 0.15);
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 20px 40px rgba(0, 184, 148, 0.15);
}

.testimonial-quote {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 60px;
  color: var(--primary-light);
  font-family: serif;
  line-height: 1;
  opacity: 0.3;
}

.testimonial-rating {
  color: var(--accent2);
  margin-bottom: 15px;
  font-size: 16px;
}

.testimonial-text {
  color: var(--gray);
  font-style: italic;
  margin-bottom: 25px;
  font-size: 14px;
  line-height: 1.5;
  min-height: 100px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-light);
}

.author-info h4 {
  font-size: 15px;
  margin-bottom: 5px;
  color: var(--dark);
}

.author-info p {
  color: var(--gray);
  font-size: 13px;
}

/* Carousel Controls */
.carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.carousel-btn {
  background: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary);
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  pointer-events: all;
}

.carousel-btn:hover {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(0, 184, 148, 0.3);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.prev-btn {
  /* margin-left: -25px; */
}

/* .next-btn { */
/* margin-right: -25px; */
/* } */
/*  */
/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot:hover {
  background: var(--primary);
  transform: scale(1.2);
}

.carousel-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* Contact - Colorful */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--dark);
}

.contact-details {
  margin-top: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-light), white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--dark);
}

.contact-text p {
  color: var(--gray);
  font-size: 13px;
}

.contact-form {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 10px;
}

.form-label {
  display: block;
  color: var(--dark);
  /* font-weight: 500; */
  margin-bottom: 8px;
  font-size: 13px;
}

.form-input {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  transition: all 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 184, 148, 0.1);
}

/* Footer - Colorful */
.footer {
  background: var(--dark);
  color: white;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo span {
  font-size: 20px;
  /* font-weight: 700; */
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-description {
  color: #aaa;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-col h3 {
  font-size: 16px;
  margin-bottom: 20px;
  color: white;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #888;
  font-size: 12px;
}

/* Responsive */
@media (max-width: 992px) {
  .why-container,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 28px;
  }

  .section-title {
    font-size: 24px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .hero-btns {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  section {
    padding: 40px 0;
  }

  .service-card,
  .contact-form {
    padding: 20px;
  }

  .testimonial-card {
    padding: 20px;
  }
}

/* FAQ Section */
.faq-section {
  background: white;
  padding: 80px 0;
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.faq-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  height: 100%;
  min-height: 500px;
}

.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.faq-image:hover img {
  transform: scale(1.03);
}

.faq-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  /* font-weight: 600; */
  font-size: 15px;
  box-shadow: 0 10px 20px rgba(0, 184, 148, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-content {
  padding-right: 20px;
}

.faq-items {
  margin-top: 30px;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 5px 15px rgba(0, 184, 148, 0.1);
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: white;
  border: none;
  text-align: left;
  font-size: 15px;
  /* font-weight: 600; */
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}

.faq-question:hover {
  background: var(--primary-light);
}

.faq-question i {
  color: var(--primary);
  transition: transform 0.3s;
  font-size: 14px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-out;
  background: var(--primary-light);
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 300px;
}

.faq-answer p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.faq-cta {
  margin-top: 30px;
  padding: 20px;
  background: linear-gradient(135deg, var(--primary-light), white);
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--border);
}

.faq-cta p {
  margin: 0;
  color: var(--dark);
  font-size: 15px;
}

.faq-cta a {
  color: var(--primary);
  text-decoration: none;
  /* font-weight: 600; */
}

.faq-cta a:hover {
  text-decoration: underline;
}

/* Responsive for FAQ */
@media (max-width: 992px) {
  .faq-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-content {
    padding-right: 0;
  }

  .faq-image {
    min-height: 400px;
    order: 2;
  }
}

@media (max-width: 576px) {
  .faq-question {
    padding: 15px;
    font-size: 14px;
  }

  .faq-item.active .faq-answer {
    padding: 15px;
  }

  .faq-answer p {
    font-size: 13px;
  }
}

/* Vlog/Blog Section */
.vlog-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fffd 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.vlog-section:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(0, 184, 148, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.vlog-container {
  position: relative;
  z-index: 1;
}

/* Featured Vlog */
.featured-vlog {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 184, 148, 0.1);
  margin-bottom: 50px;
  border: 1px solid #e8f8f5;
}

.featured-image {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.featured-vlog:hover .featured-image img {
  transform: scale(1.05);
}

.video-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  /* font-weight: 600; */
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(5px);
}

.featured-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ffd166, #ffb347);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  /* font-weight: 600; */
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 20px rgba(255, 209, 102, 0.3);
}

.featured-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vlog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
}

.vlog-category {
  background: #e8f8f5;
  color: var(--primary);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  /* font-weight: 600; */
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.vlog-date,
.vlog-duration {
  color: var(--gray);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.featured-title {
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 15px;
  line-height: 1.3;
}

.featured-desc {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.featured-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8f8f5;
}

.featured-stats span {
  color: var(--gray);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.featured-stats i {
  color: var(--primary);
}

/* Vlog Grid */
.vlog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.vlog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 184, 148, 0.08);
  transition: all 0.4s;
  border: 1px solid #e8f8f5;
}

.vlog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 184, 148, 0.15);
}

.vlog-thumbnail {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.vlog-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.vlog-card:hover .vlog-thumbnail img {
  transform: scale(1.1);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.vlog-card:hover .video-overlay {
  opacity: 1;
}

.play-btn {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
  transition: all 0.3s;
}

.play-btn:hover {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.vlog-type {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 11px;
  /* font-weight: 600; */
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(5px);
}

.vlog-content {
  padding: 25px;
}

.vlog-content h4 {
  font-size: 18px;
  color: var(--dark);
  margin: 15px 0 10px;
  line-height: 1.4;
}

.vlog-content p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Category Colors */
.vlog-category.education {
  background: #e3f2fd;
  color: #1976d2;
}

.vlog-category.tips {
  background: #f3e5f5;
  color: #7b1fa2;
}

.vlog-category.story {
  background: #e8f5e9;
  color: #388e3c;
}

.vlog-category.news {
  background: #fff3e0;
  color: #f57c00;
}

.vlog-category.business {
  background: #e0f2f1;
  color: #00796b;
}

.vlog-category.tech {
  background: #fce4ec;
  color: #c2185b;
}

/* Vlog Footer */
.vlog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #e8f8f5;
}

.read-more {
  color: var(--primary);
  font-size: 14px;
  /* font-weight: 600; */
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.read-more:hover {
  color: var(--primary-dark);
  gap: 12px;
}

.view-count {
  color: var(--gray);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Vlog CTA */
.vlog-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.vlog-cta .btn {
  padding: 15px 30px;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Newsletter */
.newsletter {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  color: white;
  box-shadow: 0 20px 40px rgba(0, 184, 148, 0.2);
}

.newsletter-content {
  flex: 1;
}

.newsletter h3 {
  font-size: 24px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  font-size: 15px;
}

.newsletter-form .input-group {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.95);
}

.newsletter-form input:focus {
  outline: none;
  background: white;
}

.newsletter-form button {
  background: white;
  color: var(--primary);
  border: none;
  padding: 0 30px;
  border-radius: 10px;
  /* font-weight: 600; */
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.newsletter-form button:hover {
  background: #f0f9f7;
  transform: translateY(-2px);
}

.form-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}

.newsletter-icon {
  font-size: 80px;
  opacity: 0.2;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .featured-vlog {
    grid-template-columns: 1fr;
  }

  .featured-image {
    min-height: 250px;
  }
}

@media (max-width: 992px) {
  .vlog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .newsletter-icon {
    font-size: 60px;
  }
}

@media (max-width: 768px) {
  .vlog-section {
    padding: 60px 0;
  }

  .vlog-grid {
    grid-template-columns: 1fr;
  }

  .featured-title {
    font-size: 20px;
  }

  .vlog-cta {
    flex-direction: column;
    align-items: center;
  }

  .vlog-cta .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .newsletter-form .input-group {
    flex-direction: column;
  }

  .newsletter-form button {
    padding: 15px;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .featured-stats {
    flex-direction: column;
    gap: 10px;
  }

  .vlog-content h4 {
    font-size: 16px;
  }

  .newsletter {
    padding: 30px 20px;
  }

  .newsletter h3 {
    font-size: 20px;
  }
}
/* Simple About Section */
.about-simple {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.about-simple-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  /* align-items: center; */
}

/* About Image */
.about-image {
  position: relative;
}

.image-wrapper {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  position: relative;
}

.image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s;
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.95);
  padding: 20px 25px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.experience-badge .years {
  font-size: 42px;
  /* font-weight: 800; */
  color: var(--primary);
  line-height: 1;
}

.experience-badge .text {
  font-size: 16px;
  /* font-weight: 600; */
  color: var(--dark);
  line-height: 1.3;
}

/* About Content */
.about-content .section-title {
  margin-bottom: 20px;
  text-align: left;
}

.about-text {
  margin-bottom: 30px;
}

.about-text p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Key Points */
.key-points {
  margin: 30px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.point {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.point:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(78, 143, 58, 0.1);
  border-color: var(--primary-light);
}

.point i {
  font-size: 24px;
  color: var(--primary);
  margin-top: 3px;
}

.point h4 {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--dark);
}

.point p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

/* CTA Buttons */
.about-cta {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.about-cta .btn {
  flex: 1;
  padding: 15px 20px;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-simple-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .image-wrapper img {
    height: 400px;
  }

  .about-content .section-title {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .about-simple {
    padding: 60px 0;
  }

  .key-points {
    grid-template-columns: 1fr;
  }

  .about-cta {
    flex-direction: column;
  }

  .about-cta .btn {
    width: 100%;
  }

  .experience-badge {
    padding: 15px 20px;
    bottom: 20px;
    right: 20px;
  }

  .experience-badge .years {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .image-wrapper img {
    height: 300px;
  }

  .about-text p {
    font-size: 15px;
  }

  .point {
    padding: 12px;
  }
}
/* Achievement Badges */
.achievement-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.badge {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: linear-gradient(135deg, #ffffff, #f8fffd);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.badge:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}

.badge:hover:before {
  opacity: 0.05;
}

.badge > * {
  position: relative;
  z-index: 2;
}

.badge-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  flex-shrink: 0;
  transition: all 0.3s;
}

.badge:hover .badge-icon {
  background: var(--primary);
  color: white;
  transform: rotate(15deg);
}

.badge-content h4 {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--dark);
}

.badge-content p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .achievement-badges {
    grid-template-columns: 1fr;
  }

  .badge {
    padding: 15px;
  }

  .badge-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

/* Solar SEO Keyword Section */

.solar-keywords {
  padding: 60px 20px;
  background: #f8fbff;
  text-align: center;
  border-top: 1px solid #eee;
}

.solar-keywords h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.4;
}

.solar-keywords p {
  max-width: 900px;
  margin: auto;
  font-size: 17px;
  color: #555;
  line-height: 1.8;
}

/* Mobile Responsive */

@media (max-width: 768px) {
  .solar-keywords {
    padding: 40px 15px;
  }

  .solar-keywords h2 {
    font-size: 24px;
  }

  .solar-keywords p {
    font-size: 15px;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.top-search-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #081120, #0a1c3f);
  color: #fff;
}

.top-search-title {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 700;
  /* text-align: center; */
}

.top-search-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
}

.top-search-list li {
  font-size: 14px;
  color: #cfd3ff;
  position: relative;
  padding-left: 18px;
}

.top-search-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00ffb3;
}

.top-search-list li:hover {
  color: #00ffb3;
}

.top-search-footer {
  margin-top: 40px;
  /* text-align: center; */
}

.top-search-footer h3 {
  font-size: 22px;
  font-weight: 600;
}

.presence-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0b1026, #0e153a);
  color: #fff;
}

.presence-title {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 700;
}

.presence-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  /* magic line */
  gap: 18px 30px;
}

.presence-list li {
  font-size: 14px;
  color: #cfd3ff;
  position: relative;
  padding-left: 18px;
}

.presence-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00ffb3;
}

.presence-list li:hover {
  color: #00ffb3;
}

.presence-footer {
  margin-top: 40px;
}

.presence-footer h3 {
  font-size: 22px;
  font-weight: 600;
}

.consultation-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.consultation-modal {
  background: white;
  width: 90%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  animation: slideUp 0.4s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.consultation-modal-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.consultation-modal-header h2 {
  color: white;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.consultation-close-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  line-height: 1;
  padding: 0;
}

.consultation-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.consultation-form {
  padding: 20px 25px 25px;
}

/* .form-group {
  margin-bottom: 20px;
} */

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
  font-size: 14px;
}

.required-star {
  color: #ff4444;
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 184, 148, 0.1);
}

.form-control.error {
  border-color: #ff4444;
}

.error-message {
  color: #ff4444;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.error-message.show {
  display: block;
}

.consultation-submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
}

.consultation-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 184, 148, 0.4);
}

.consultation-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.success-message {
  padding: 30px 25px;
  text-align: center;
  display: none;
}

.success-message.show {
  display: block;
  animation: fadeIn 0.5s ease;
}

.success-message i {
  font-size: 60px;
  color: var(--primary);
  margin-bottom: 15px;
}

.success-message h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

.success-message p {
  color: #666;
  font-size: 15px;
  margin: 0;
}

.consultation-submit-btn.loading {
  position: relative;
  color: transparent;
}

.consultation-submit-btn.loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 2px solid white;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 576px) {
  .consultation-modal {
    width: 95%;
    max-height: 95vh;
  }

  .consultation-modal-header h2 {
    font-size: 20px;
  }

  .consultation-form {
    padding: 15px 20px 20px;
  }
}

.cta-footer {
  position: fixed;
  bottom: 15px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 15px;
  z-index: 9999;
}

.cta-btn {
  padding: 14px 100px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: #25d366;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
}

/* Call button */
.call-btn {
  background: #25d366;
  color: white;
}

.call-btn:hover {
  background: #25d366;
  color: white;
  transform: translateY(-3px);
}

/* WhatsApp button */
.whatsapp-btn {
  background: #25d366;
  color: white;
}

.whatsapp-btn img {
  width: 20px;
}

.whatsapp-btn:hover {
  background: #20b358;
  transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 768px) {
  .cta-footer {
    bottom: 40px;
    padding: 0 10px;
  }

  .cta-btn {
    flex: 1;
    justify-content: center;
    font-size: 15px;
    padding: 12px;
  }
}
/* Floating Contact */

.mobile-contact {
  position: fixed;
  right: 20px;
  bottom: 50%;
  transform: translateY(50%);
  z-index: 9999;
  display: none;
}

.main-contact-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: #25d366;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: 0.4s;
}

/* rotate animation */

.main-contact-btn.active {
  transform: rotate(45deg);
}

/* options container */

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: 0.3s;
}

.contact-options.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* icon buttons */

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
}

.contact-icon:hover {
  transform: scale(1.1);
}

.contact-icon.call {
  /* background:#007bff; */
  color: white;
}

.contact-icon.whatsapp {
  /* background:#25d366; */
}

.contact-icon img {
  width: 24px;
}

/* mobile only */

@media (max-width: 768px) {
  .cta-footer {
    display: none;
  }

  .mobile-contact {
    display: block;
  }
}
.mvv-section {
  padding: 100px 0;
  background: #f7fafc;
}

.mvv-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.mvv-card {
  background: #fff;
  padding: 45px 35px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.mvv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12);
}

.mvv-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #0b3c5d, #1fa67a);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.mvv-card h4 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #0b3c5d;
}

.mvv-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.blog-section {
  padding: 100px 0;
  background: #f8fafc;
}

.blog-header {
  text-align: center;
  margin-bottom: 60px;
}

.blog-header h2 {
  font-size: 36px;
  font-weight: 700;
}

.blog-header p {
  color: #666;
  margin-top: 10px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.blog-img {
  position: relative;
  height: 200px;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #00b894;
  color: #fff;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 20px;
}

.blog-content {
  padding: 25px;
}

.blog-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.blog-link {
  text-decoration: none;
  color: #00b894;
  font-weight: 600;
}

.blog-link:hover {
  text-decoration: underline;
}
