/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
  background: #f8faff;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #0a2540;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #e57d0e;
  margin: 10px auto 0;
  border-radius: 2px;
}
.text-center {
  text-align: center;
}
.mt-4 {
  margin-top: 2rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: #2ca3ab;
  color: #fff;
}
.btn-primary:hover {
  background: #238b92;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(44, 163, 171, 0.3);
}
.btn-outline {
  background: transparent;
  color: #0a2540;
  border: 2px solid #0a2540;
}
.btn-outline:hover {
  background: #df5c10;
  color: #fff;
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
}
.btn-secondary {
  background: #e57d0e;
  color: #fff;
}
.btn-secondary:hover {
  background: #c96c0c;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(229, 125, 14, 0.3);
}

/* ===== HEADER ===== */
#main-header {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  height: 48px;
  width: auto;
}
.logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0a2540;
}
.logo-text span {
  color: #e57d0e;
}
.main-nav ul {
  display: flex;
  gap: 28px;
}
.main-nav a {
  font-weight: 500;
  color: #1a1a2e;
  padding: 6px 0;
  position: relative;
  transition: color 0.3s;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #2ca3ab;
  transition: width 0.3s;
}
.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}
.main-nav a.active {
  color: #2ca3ab;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.whatsapp-header {
  background: #25D366;
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.3s;
}
.whatsapp-header:hover {
  background: #1da851;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #0a2540;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero-section {
  padding: 60px 0 80px;
  color: #fff;
  background: linear-gradient(135deg, #0a2540 0%, #1a3a5c 100%);
  position: relative;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(44, 163, 171, 0.1) 100%);
  pointer-events: none;
}
.hero-flex {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 1;
}
.hero-text {
  flex: 1;
}
.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero-text h1 .highlight {
  color: #e57d0e;
}
.hero-tagline {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: #a0c4e8;
}
.hero-desc {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 24px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-image {
  flex: 1;
}
.hero-image img {
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  width: 100%;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 70px 0;
  background: #fff;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.testimonial-card {
  background: #f8faff;
  padding: 30px 24px;
  border-radius: 12px;
  border: 1px solid #e8edf5;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(44, 163, 171, 0.15);
  border-color: #2ca3ab;
}
.testimonial-card::before {
  content: '\201C';
  font-size: 4rem;
  color: #2ca3ab;
  opacity: 0.15;
  position: absolute;
  top: 10px;
  right: 20px;
  font-family: Georgia, serif;
}
.testimonial-card .stars {
  color: #e57d0e;
  margin-bottom: 12px;
}
.testimonial-card p {
  font-size: 0.98rem;
  font-style: italic;
  margin-bottom: 12px;
}
.testimonial-card h4 {
  font-weight: 600;
  color: #0a2540;
}
.testimonial-card span {
  font-size: 0.85rem;
  color: #6b7a8f;
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
  padding: 70px 0;
  background: #f8faff;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  border-bottom: 4px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(44, 163, 171, 0.15);
  border-bottom-color: #2ca3ab;
}
.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.service-card h3 {
  padding: 16px 20px 6px;
  font-size: 1.1rem;
  color: #0a2540;
}
.service-card h3 i {
  color: #e57d0e;
  margin-right: 8px;
}
.service-card p {
  padding: 0 20px 20px;
  color: #4a5568;
  font-size: 0.92rem;
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 50px 0 40px;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #0a2540 0%, #1a3a5c 100%);
}
.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
}
.page-hero h1 .highlight {
  color: #e57d0e;
}
.page-hero .breadcrumb {
  margin-top: 10px;
  opacity: 0.8;
}
.page-hero .breadcrumb a {
  color: #a0c4e8;
}
.page-hero .breadcrumb a:hover {
  color: #e57d0e;
}
.page-hero .breadcrumb .separator {
  color: #2ca3ab;
  margin: 0 8px;
}

/* ===== ABOUT PAGE ===== */
.about-content {
  padding: 60px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-text h2 {
  font-size: 2rem;
  color: #0a2540;
  margin-bottom: 20px;
}
.about-text h2 .highlight {
  color: #e57d0e;
}
.about-text p {
  margin-bottom: 16px;
  color: #2d3748;
}
.about-text .accent-text {
  color: #2ca3ab;
  font-weight: 600;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 24px 0;
    grid-auto-flow: column;
}
.stat-item {
  text-align: center;
  background: #f8faff;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid #e8edf5;
  transition: border-color 0.3s;
}
.stat-item:hover {
  border-color: #2ca3ab;
}
.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #2ca3ab;
}
.stat-label {
  font-size: 0.85rem;
  color: #4a5568;
}
.about-buttons {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.about-image img {
  border-radius: 16px;
  width: 100%;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

/* ===== GALLERY ===== */
.gallery-section {
  padding: 60px 0;
  background: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1;
  position: relative;
}
.gallery-item::after {
  content: '\f002';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: #fff;
  font-size: 2rem;
  background: rgba(44, 163, 171, 0.7);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}
.gallery-item:hover::after {
  transform: translate(-50%, -50%) scale(1);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item img:hover {
  transform: scale(1.05);
}

/* ===== STATUTORY ===== */
.statutory-section {
  padding: 60px 0;
  background: #f8faff;
}
.statutory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.statutory-card {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e8edf5;
  transition: transform 0.3s, border-color 0.3s;
}
.statutory-card:hover {
  transform: translateY(-4px);
  border-color: #2ca3ab;
}
.statutory-card i {
  font-size: 2rem;
  color: #2ca3ab;
  margin-bottom: 10px;
}
.statutory-card h4 {
  font-size: 0.85rem;
  color: #6b7a8f;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.statutory-card p {
  font-weight: 600;
  color: #0a2540;
  margin-top: 4px;
}

/* ===== SERVICES DETAILED ===== */
.services-detailed {
  padding: 60px 0;
}
.services-intro {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px;
}
.services-intro h2 {
  font-size: 2rem;
  color: #0a2540;
  margin-bottom: 16px;
}
.services-intro h2 .highlight {
  color: #e57d0e;
}
.service-category {
  margin-bottom: 50px;
}
.category-title {
  font-size: 1.6rem;
  color: #0a2540;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.category-title i {
  color: #2ca3ab;
}
.category-title .accent {
  color: #e57d0e;
}
.service-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.service-card-large {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid transparent;
}
.service-card-large:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(44, 163, 171, 0.15);
  border-top-color: #2ca3ab;
}
.service-card-large img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-content {
  padding: 24px;
}
.service-content h4 {
  font-size: 1.2rem;
  color: #0a2540;
  margin-bottom: 10px;
}
.service-content h4 .badge {
  background: #e57d0e;
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 10px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
}
.service-features {
  margin-top: 12px;
}
.service-features li {
  padding: 4px 0;
  font-size: 0.92rem;
  color: #2d3748;
}
.service-features i {
  color: #2ca3ab;
  margin-right: 8px;
}
.consultancy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.consultancy-card {
  background: #fff;
  padding: 28px 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e8edf5;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.consultancy-card:hover {
  transform: translateY(-4px);
  border-color: #2ca3ab;
  box-shadow: 0 8px 25px rgba(44, 163, 171, 0.12);
}
.consultancy-card i {
  font-size: 2.4rem;
  color: #2ca3ab;
  margin-bottom: 12px;
}
.consultancy-card h4 {
  color: #0a2540;
  margin-bottom: 6px;
}
.consultancy-card p {
  font-size: 0.9rem;
  color: #4a5568;
}
.consultants-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.type-card {
  background: #fff;
  padding: 28px 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e8edf5;
  transition: transform 0.3s, border-color 0.3s;
}
.type-card:hover {
  transform: translateY(-4px);
  border-color: #e57d0e;
}
.type-card i {
  font-size: 2rem;
  color: #e57d0e;
  margin-bottom: 12px;
}
.type-card h4 {
  color: #0a2540;
}
.type-card p {
  font-size: 0.9rem;
  color: #4a5568;
}
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, #0a2540 0%, #1a3a5c 100%);
  color: #fff;
  padding: 50px 30px;
  border-radius: 16px;
  margin-top: 40px;
}
.cta-section h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.cta-section h3 .highlight {
  color: #e57d0e;
}
.cta-section .btn-primary {
  margin-top: 16px;
}

/* ===== CONTACT ===== */
.contact-section {
  padding: 60px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-form-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.contact-form-wrapper h2 {
  font-size: 1.8rem;
  color: #0a2540;
  margin-bottom: 6px;
}
.contact-form-wrapper h2 .highlight {
  color: #e57d0e;
}
.contact-form-wrapper p {
  color: #4a5568;
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  color: #0a2540;
  margin-bottom: 4px;
}
.form-group label .required {
  color: #e57d0e;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #dce1eb;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2ca3ab;
  box-shadow: 0 0 0 3px rgba(44, 163, 171, 0.1);
}
.form-note {
  font-size: 0.85rem;
  color: #6b7a8f;
  margin-top: 12px;
}
.form-note i {
  color: #2ca3ab;
}
.contact-info-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.contact-info-wrapper h2 {
  font-size: 1.8rem;
  color: #0a2540;
  margin-bottom: 20px;
}
.contact-info-wrapper h2 .highlight {
  color: #e57d0e;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-item i {
  font-size: 1.4rem;
  color: #2ca3ab;
  width: 30px;
  margin-top: 4px;
}
.contact-item h4 {
  font-size: 0.95rem;
  color: #0a2540;
}
.contact-item p {
  color: #4a5568;
  font-size: 0.95rem;
}
.contact-item a {
  color: #2ca3ab;
  transition: color 0.3s;
}
.contact-item a:hover {
  color: #e57d0e;
}
.contact-whatsapp {
  margin: 20px 0;
}
.contact-whatsapp .btn {
  width: 100%;
  text-align: center;
}
.contact-map {
  border-radius: 12px;
  overflow: hidden;
  margin-top: 16px;
  border: 2px solid #e8edf5;
}

/* ===== LEAD POPUP ===== */
.lead-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}
.lead-popup-overlay.active {
  display: flex;
}
.lead-popup {
  background: #fff;
  max-width: 460px;
  width: 100%;
  padding: 36px 32px;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: popIn 0.3s ease;
}
@keyframes popIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.lead-popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #6b7a8f;
  cursor: pointer;
  transition: color 0.3s;
}
.lead-popup-close:hover {
  color: #e57d0e;
}
.lead-popup h3 {
  font-size: 1.5rem;
  color: #0a2540;
  margin-bottom: 4px;
}
.lead-popup h3 .highlight {
  color: #e57d0e;
}
.lead-popup p {
  color: #4a5568;
  margin-bottom: 20px;
}
.lead-popup input,
.lead-popup select,
.lead-popup textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #dce1eb;
  border-radius: 8px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.lead-popup input:focus,
.lead-popup select:focus,
.lead-popup textarea:focus {
  border-color: #2ca3ab;
  outline: none;
  box-shadow: 0 0 0 3px rgba(44, 163, 171, 0.1);
}
.lead-popup .form-note {
  text-align: center;
}

/* ===== FOOTER ===== */
#main-footer {
  background: #0a1a2e;
  color: #c8d6e5;
  padding: 50px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}
.footer-col h4 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 1.1rem;
}
.footer-col h4 .accent {
  color: #e57d0e;
}
.footer-col ul li {
  padding: 4px 0;
}
.footer-col ul li a {
  transition: color 0.3s;
}
.footer-col ul li a:hover {
  color: #2ca3ab;
}
.footer-col ul li i {
  color: #e57d0e;
  margin-right: 8px;
  font-size: 0.7rem;
}
.footer-logo {
  height: 44px;
  margin-bottom: 12px;
}
.footer-address {
  margin-bottom: 12px;
}
.footer-address i {
  margin-right: 8px;
  color: #2ca3ab;
}
.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.social-icons a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: #c8d6e5;
}
.social-icons a:hover {
  background: #2ca3ab;
  color: #fff;
  transform: translateY(-3px);
}
.social-icons a.whatsapp:hover {
  background: #25D366;
}
.footer-small {
  margin-top: 16px;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ===== ADDITIONAL UTILITY CLASSES ===== */
.accent-color {
  color: #2ca3ab;
}
.accent-orange {
  color: #e57d0e;
}
.bg-accent {
  background: #2ca3ab;
}
.bg-orange {
  background: #e57d0e;
}
.border-accent {
  border-color: #2ca3ab;
}
.border-orange {
  border-color: #e57d0e;
}

/* ===== SECTION SUBTITLES ===== */
.section-subtitle {
  text-align: center;
  color: #4a5568;
  font-size: 1.1rem;
  max-width: 700px;
  margin: -20px auto 40px;
  line-height: 1.6;
}

/* ===== HIGHLIGHTS SECTION ===== */
.highlights-section {
  padding: 40px 0;
  background: #fff;
  border-bottom: 1px solid #e8edf5;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.highlight-item {
  text-align: center;
  padding: 20px;
}
.highlight-item i {
  font-size: 2.4rem;
  color: #df5c10;
  margin-bottom: 12px;
}
.highlight-item h4 {
  font-size: 1.1rem;
  color: #0a2540;
  margin-bottom: 6px;
}
.highlight-item p {
  font-size: 0.9rem;
  color: #4a5568;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 60px 0;
  background: linear-gradient(135deg, #0a2540 0%, #1a3a5c 100%);
  color: #fff;
}
.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.cta-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 24px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-large {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ===== SERVICE CARD CONTENT ===== */
.service-card-content {
  padding: 20px;
}
.service-card-content h3 {
  font-size: 1.15rem;
  color: #0a2540;
  margin-bottom: 8px;
}
.service-card-content p {
  font-size: 0.92rem;
  color: #4a5568;
  margin-bottom: 12px;
}
.service-link {
  color: #df5c10;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.service-link:hover {
  color: #008f5a;
}

/* ===== MISSION SECTION ===== */
.mission-section {
  padding: 60px 0;
  background: #f8faff;
}
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.mission-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e8edf5;
  transition: transform 0.3s;
}
.mission-card:hover {
  transform: translateY(-6px);
}
.mission-card i {
  font-size: 2.8rem;
  color: #00a86b;
  margin-bottom: 16px;
}
.mission-card h3 {
  color: #0a2540;
  margin-bottom: 10px;
}
.mission-card p {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== ABOUT IMAGE BADGE ===== */
.about-image {
  position: relative;
}
.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #00a86b;
  color: #fff;
  padding: 16px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 168, 107, 0.3);
}
.about-image-badge i {
  font-size: 1.8rem;
}
.about-image-badge span {
  font-weight: 600;
  font-size: 0.95rem;
}

/* ===== SERVICE TAGS ===== */
.service-tag {
  display: inline-block;
  background: #00a86b;
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ===== SERVICE CTA ===== */
.service-cta {
  margin-top: 16px;
}
.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

/* ===== CATEGORY DESC ===== */
.category-desc {
  color: #4a5568;
  margin-bottom: 24px;
  font-size: 1rem;
}

/* ===== WHY CHOOSE ===== */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8edf5;
}
.why-item i {
  font-size: 1.8rem;
  color: #00a86b;
  min-width: 40px;
}
.why-item h4 {
  color: #0a2540;
  margin-bottom: 4px;
}
.why-item p {
  color: #4a5568;
  font-size: 0.92rem;
}

/* ===== CONTACT INTRO ===== */
.contact-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}
.contact-intro h2 {
  font-size: 2rem;
  color: #0a2540;
  margin-bottom: 10px;
}
.contact-intro p {
  color: #4a5568;
  font-size: 1.05rem;
}

/* ===== REQUIRED FIELDS ===== */
.required {
  color: #e53e3e;
}

/* ===== FULL WIDTH BUTTON ===== */
.btn-full {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ===== LANDMARK ===== */
.landmark {
  font-size: 0.9rem;
  color: #00a86b;
  margin-top: 4px;
}
.landmark i {
  margin-right: 6px;
}

/* ===== APPOINTMENT NOTE ===== */
.appointment-note {
  font-size: 0.85rem;
  color: #00a86b;
  font-weight: 500;
  margin-top: 2px;
}

/* ===== WHATSAPP NOTE ===== */
.whatsapp-note {
  font-size: 0.85rem;
  color: #4a5568;
  text-align: center;
  margin-top: 8px;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 60px 0;
  background: #f8faff;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.faq-item {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #e8edf5;
}
.faq-item h4 {
  color: #0a2540;
  margin-bottom: 8px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.faq-item h4 i {
  color: #00a86b;
  margin-top: 4px;
}
.faq-item p {
  color: #4a5568;
  font-size: 0.92rem;
  padding-left: 30px;
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 768px) {
  .about-image-badge {
    position: static;
    margin-top: 16px;
    justify-content: center;
  }
  .cta-content h2 {
    font-size: 1.6rem;
  }
  .cta-buttons .btn {
    width: 100%;
    text-align: center;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .why-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .highlights-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mission-grid {
    grid-template-columns: 1fr;
  }
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
}
/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 60px 0;
  background: #fff;
}

.about-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-tag {
  display: inline-block;
  background: rgba(0, 168, 107, 0.1);
  color: #389aa4;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-text h2 {
  font-size: 2.4rem;
  color: #0a2540;
  margin-bottom: 16px;
  line-height: 1.2;
}

.about-lead {
  font-size: 1.05rem;
  color: #2d3748;
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 30px;
}

.about-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 16px;
  background: #f8faff;
  border-radius: 8px;
  border-left: 3px solid #389aa4;
}

.about-feature i {
  color: #389aa4;
  font-size: 1.2rem;
  margin-top: 2px;
}

.about-feature h4 {
  font-size: 0.95rem;
  color: #0a2540;
  margin-bottom: 2px;
}

.about-feature p {
  font-size: 0.85rem;
  color: #4a5568;
  margin: 0;
}

.about-visual {
  position: relative;
}

.about-image-main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.about-image-main img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

.about-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(10, 37, 64, 0.9);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 14px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.about-image-badge i {
  font-size: 2rem;
  color: #00a86b;
}

.about-image-badge div {
  display: flex;
  flex-direction: column;
}

.about-image-badge span {
  font-weight: 600;
  font-size: 1rem;
}

.about-image-badge small {
  font-size: 0.8rem;
  opacity: 0.8;
}

.about-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== STATS SECTION ===== */
.stats-section {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid #e8edf5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: #f8faff;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.stat-number {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: #df5c10;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.9rem;
  color: #4a5568;
  font-weight: 500;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  background: rgba(0, 168, 107, 0.1);
  color: #00a86b;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-header h2 {
  font-size: 2.4rem;
  color: #0a2540;
  margin-bottom: 8px;
}

.section-header .section-subtitle {
  color: #4a5568;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== MISSION VALUES SECTION ===== */
.mission-values-section {
  padding: 60px 0;
  background: #f8faff;
}

.mission-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mv-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid #e8edf5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.mv-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(0, 168, 107, 0.1), rgba(0, 168, 107, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.mv-icon i {
  font-size: 2rem;
  color: #df5c10;
}

.mv-card h3 {
  font-size: 1.3rem;
  color: #0a2540;
  margin-bottom: 12px;
}

.mv-card p {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.mv-points {
  list-style: none;
  padding: 0;
  text-align: left;
}

.mv-points li {
  padding: 6px 0;
  color: #2d3748;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mv-points li i {
  color: #00a86b;
  font-size: 0.8rem;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: 60px 0;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 37, 64, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 2rem;
  margin-bottom: 8px;
}

.gallery-overlay span {
  font-weight: 500;
  font-size: 0.9rem;
}

/* ===== STATUTORY SECTION ===== */
.statutory-section {
  padding: 60px 0;
  background: #f8faff;
}

.statutory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.statutory-card {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #e8edf5;
  display: flex;
  gap: 16px;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.statutory-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.statutory-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 168, 107, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.statutory-icon i {
  font-size: 1.4rem;
  color: #e16c0e;
}

.statutory-info h4 {
  font-size: 0.8rem;
  color: #6b7a8f;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.statutory-info p {
  font-weight: 600;
  color: #0a2540;
  font-size: 0.95rem;
}

/* ===== ABOUT CTA ===== */
.about-cta {
  padding: 60px 0;
  background: #fff;
}

.cta-box {
  background: linear-gradient(135deg, #0a2540 0%, #1a3a5c 100%);
  border-radius: 16px;
  padding: 50px 40px;
  text-align: center;
  color: #fff;
}

.cta-box h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-box p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 24px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-actions .btn-large {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-overview {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .mission-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .statutory-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .about-image-main img {
    height: 300px;
  }
  
  .about-image-badge {
    bottom: 12px;
    left: 12px;
    padding: 10px 16px;
    font-size: 0.9rem;
  }
  
  .about-image-badge i {
    font-size: 1.4rem;
  }
  
  .mission-values-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .statutory-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-box {
    padding: 30px 20px;
  }
  
  .cta-box h3 {
    font-size: 1.5rem;
  }
  
  .about-text h2 {
    font-size: 1.8rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .stat-item {
    padding: 12px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  
  .about-buttons .btn {
    width: 100%;
    text-align: center;
  }
  
  .cta-actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* ===== SERVICES OVERVIEW ===== */
.services-overview {
  padding: 60px 0 20px;
  background: #fff;
}

.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.services-intro .section-tag {
  display: inline-block;
  background: rgba(0, 168, 107, 0.1);
  color: #00a86b;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.services-intro h2 {
  font-size: 2.4rem;
  color: #0a2540;
  margin-bottom: 16px;
}

.services-intro p {
  color: #4a5568;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* ===== TABBED SERVICES ===== */
.services-tab-section {
  padding: 40px 0 60px;
  background: #f8faff;
}

.tab-wrapper {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

/* Tab Navigation */
.tab-nav {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #f8faff;
  border-bottom: 2px solid #e8edf5;
}

.tab-item {
  padding: 16px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #4a5568;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  flex: 1 0 auto;
  justify-content: center;
  min-width: 140px;
}

.tab-item i {
  font-size: 1.1rem;
  color: #6b7a8f;
  transition: color 0.3s ease;
}

.tab-item:hover {
  color: #0a2540;
  background: #fff;
}

.tab-item.active {
  color: #00a86b;
  border-bottom-color: #00a86b;
  background: #fff;
}

.tab-item.active i {
  color: #00a86b;
}

/* Tab Content */
.tab-content-wrapper {
  padding: 40px;
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-content-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.tab-image {
  border-radius: 12px;
  overflow: hidden;
  height: 400px;
}

.tab-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tab-details {
  display: flex;
  flex-direction: column;
}

.tab-details h3 {
  font-size: 1.8rem;
  color: #0a2540;
  margin-bottom: 4px;
}

.tab-subtitle {
  color: #00a86b;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 16px;
}

.tab-description {
  margin-bottom: 20px;
}

.tab-description p {
  color: #2d3748;
  line-height: 1.8;
}

.tab-features,
.tab-eligibility {
  margin-bottom: 16px;
}

.tab-features h4,
.tab-eligibility h4 {
  font-size: 1rem;
  color: #0a2540;
  margin-bottom: 8px;
}

.tab-features ul,
.tab-eligibility ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 20px;
}

.tab-features ul li,
.tab-eligibility ul li {
  padding: 4px 0;
  color: #2d3748;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tab-features ul li i,
.tab-eligibility ul li i {
  color: #00a86b;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.tab-cta {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.tab-cta .btn {
  padding: 12px 24px;
}

/* Consultants Grid inside tab */
.tab-consultants-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0;
}

.consultant-type {
  background: #f8faff;
  padding: 16px 20px;
  border-radius: 8px;
  border-left: 3px solid #00a86b;
}

.consultant-type i {
  font-size: 1.4rem;
  color: #00a86b;
  margin-bottom: 4px;
}

.consultant-type h4 {
  font-size: 0.95rem;
  color: #0a2540;
  margin-bottom: 4px;
}

.consultant-type p {
  font-size: 0.85rem;
  color: #4a5568;
  margin: 0;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose-section {
  padding: 60px 0;
  background: #fff;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-choose-card {
  text-align: center;
  padding: 30px 20px;
  background: #f8faff;
  border-radius: 12px;
  border: 1px solid #e8edf5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 168, 107, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.why-icon i {
  font-size: 1.6rem;
  color: #00a86b;
}

.why-choose-card h4 {
  font-size: 1.1rem;
  color: #0a2540;
  margin-bottom: 6px;
}

.why-choose-card p {
  color: #4a5568;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 60px 0;
  background: #f8faff;
}

.cta-box {
  background: linear-gradient(135deg, #0a2540 0%, #1a3a5c 100%);
  border-radius: 16px;
  padding: 50px 40px;
  text-align: center;
  color: #fff;
}

.cta-box h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-box p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 24px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-large {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .tab-content-inner {
    grid-template-columns: 1fr;
  }
  
  .tab-image {
    height: 300px;
  }
  
  .tab-features ul,
  .tab-eligibility ul {
    grid-template-columns: 1fr;
  }
  
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tab-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 10px;
    -webkit-overflow-scrolling: touch;
  }
  
  .tab-item {
    padding: 12px 16px;
    font-size: 0.85rem;
    min-width: 100px;
    flex: 0 0 auto;
  }
  
  .tab-item span {
    display: none;
  }
  
  .tab-item i {
    font-size: 1.3rem;
  }
  
  .tab-content-wrapper {
    padding: 20px;
  }
  
  .tab-details h3 {
    font-size: 1.4rem;
  }
  
  .tab-consultants-grid {
    grid-template-columns: 1fr;
  }
  
  .tab-cta {
    flex-direction: column;
  }
  
  .tab-cta .btn {
    width: 100%;
    text-align: center;
  }
  
  .why-choose-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .cta-box {
    padding: 30px 20px;
  }
  
  .cta-box h3 {
    font-size: 1.5rem;
  }
  
  .services-intro h2 {
    font-size: 1.8rem;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .tab-content-wrapper {
    padding: 16px;
  }
  
  .tab-image {
    height: 200px;
  }
  
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
  
  .tab-features ul,
  .tab-eligibility ul {
    grid-template-columns: 1fr;
  }
  
  .tab-item {
    padding: 10px 14px;
    min-width: 70px;
  }
  
  .tab-item i {
    font-size: 1.1rem;
  }
}

/* ===== SERVICES OVERVIEW ===== */
.services-overview {
  padding: 60px 0 20px;
  background: #fff;
}

.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.services-intro .section-tag {
  display: inline-block;
  background: rgba(0, 168, 107, 0.1);
  color: #389aa4;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.services-intro h2 {
  font-size: 2.4rem;
  color: #0a2540;
  margin-bottom: 16px;
}

.services-intro p {
  color: #4a5568;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ===== SERVICES GRID ===== */
.services-grid-section {
  padding: 40px 0 60px;
  background: #f8faff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card-large {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card-large:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.service-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card-large:hover .service-image img {
  transform: scale(1.05);
}

.service-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #df5c10;
  color: #fff;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-badge.popular {
  background: #f5b342;
}

.service-badge.new {
  background: #e53e3e;
}

.service-badge.trusted {
  background: #3182ce;
}

.service-badge.advisory {
  background: #805ad5;
}

.service-badge.support {
  background: #38a169;
}

.service-badge.expert {
  background: #d69e2e;
}

.service-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-body h3 {
  font-size: 1.2rem;
  color: #0a2540;
  margin-bottom: 10px;
}

.service-body h3 i {
  color: #00a86b;
  margin-right: 8px;
}

.service-body > p {
  color: #4a5568;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.service-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
  margin-bottom: 16px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #2d3748;
}

.detail-item i {
  color: #00a86b;
  font-size: 0.8rem;
}

.service-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  flex-wrap: wrap;
}

.service-actions .btn {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.service-actions .btn-outline {
  border-color: #cbd5e0;
}

.service-actions .btn-outline:hover {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose-section {
  padding: 60px 0;
  background: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  background: rgba(0, 168, 107, 0.1);
  color: #389aa4;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-header h2 {
  font-size: 2.4rem;
  color: #0a2540;
  margin-bottom: 8px;
}

.section-header .section-subtitle {
  color: #4a5568;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-choose-card {
  text-align: center;
  padding: 30px 20px;
  background: #f8faff;
  border-radius: 12px;
  border: 1px solid #e8edf5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 168, 107, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.why-icon i {
  font-size: 1.6rem;
  color: #00a86b;
}

.why-choose-card h4 {
  font-size: 1.1rem;
  color: #0a2540;
  margin-bottom: 6px;
}

.why-choose-card p {
  color: #4a5568;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 60px 0;
  background: #f8faff;
}

.cta-box {
  background: linear-gradient(135deg, #0a2540 0%, #1a3a5c 100%);
  border-radius: 16px;
  padding: 50px 40px;
  text-align: center;
  color: #fff;
}

.cta-box h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-box p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 24px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-large {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-image {
    height: 180px;
  }
  
  .service-details {
    grid-template-columns: 1fr 1fr;
  }
  
  .services-intro h2 {
    font-size: 1.8rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .why-choose-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .cta-box {
    padding: 30px 20px;
  }
  
  .cta-box h3 {
    font-size: 1.5rem;
  }
  
  .cta-buttons .btn {
    width: 100%;
    text-align: center;
  }
  
  .service-actions .btn {
    flex: 1;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-image {
    height: 160px;
  }
  
  .service-body {
    padding: 16px;
  }
  
  .service-details {
    grid-template-columns: 1fr;
  }
  
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
  
  .service-actions {
    flex-direction: column;
  }
  
  .service-actions .btn {
    width: 100%;
    text-align: center;
  }
}
/* ===== PARTNERS SECTION ===== */
.partners-section {
  padding: 60px 0;
  background: #f8faff;
  overflow: hidden;
}

.partner-carousel {
  overflow: hidden;
  position: relative;
  margin: 20px 0 30px;
  padding: 10px 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.partner-carousel.reverse .partner-track {
  animation: scrollLeft 25s linear infinite;
}

.partner-track {
  display: flex;
  gap: 40px;
  animation: scrollRight 25s linear infinite;
  width: max-content;
  align-items: center;
}

.partner-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  min-width: 140px;
  height: 80px;
}

.partner-item img {
  max-height: 60px;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Scrolling Animations */
@keyframes scrollRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollLeft {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Pause animation on hover */
.partner-carousel:hover .partner-track {
  animation-play-state: paused;
}

/* ===== PARTNERS RESPONSIVE ===== */
@media (max-width: 768px) {
  .partner-item {
    min-width: 100px;
    height: 60px;
    padding: 5px 0;
  }
  
  .partner-item img {
    max-height: 40px;
    max-width: 90px;
  }
  
  .partner-track {
    gap: 25px;
  }
}

@media (max-width: 480px) {
  .partner-item {
    min-width: 80px;
    height: 50px;
  }
  
  .partner-item img {
    max-height: 32px;
    max-width: 70px;
  }
  
  .partner-track {
    gap: 18px;
  }
}

/* ===== HERO SLIDER ===== */
.hero-slider-section {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 600px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 600px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(44, 163, 171, 0.1) 100%);
  pointer-events: none;
}

.hero-slide-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 60px 20px 80px;
  min-height: 600px;
  width: 100%;
}

.hero-text {
  flex: 1;
  color: #fff;
}

.hero-badge {
  display: inline-block;
  background: rgba(229, 125, 14, 0.2);
  border: 1px solid rgba(229, 125, 14, 0.3);
  color: #e57d0e;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.hero-badge i {
  margin-right: 6px;
}

.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-text h1 .highlight {
  color: #e57d0e;
}

.hero-tagline {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: #a0c4e8;
}

.hero-desc {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 24px;
  max-width: 600px;
}

.hero-desc strong {
  color: #e57d0e;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
}

.hero-image img {
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

/* Slider Indicators */
.hero-slider-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-indicator.active {
  background: #e57d0e;
  border-color: #e57d0e;
  transform: scale(1.2);
}

.hero-indicator:hover {
  background: rgba(255, 255, 255, 0.3);
}

.hero-indicator.active:hover {
  background: #e57d0e;
}

/* Navigation Arrows */
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.hero-slider-arrow.prev {
  left: 20px;
}

.hero-slider-arrow.next {
  right: 20px;
}

/* ===== HERO SLIDER RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-slide-content {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px 70px;
    gap: 30px;
  }

  .hero-text h1 {
    font-size: 2.4rem;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image img {
    max-height: 300px;
  }

  .hero-slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-slider-section,
  .hero-slider,
  .hero-slide,
  .hero-slide-content {
    min-height: 500px;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-image img {
    max-height: 220px;
  }

  .hero-slider-arrow {
    display: none;
  }

  .hero-slider-indicators {
    bottom: 20px;
  }

  .hero-indicator {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .hero-slider-section,
  .hero-slider,
  .hero-slide,
  .hero-slide-content {
    min-height: 450px;
  }

  .hero-text h1 {
    font-size: 1.5rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 4px 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-image img {
    max-height: 180px;
  }

  .hero-slide-content {
    padding: 30px 16px 60px;
  }
}