/* ============================================
    ROOT VARIABLES - Light Mode (Default)
============================================ */
:root {
  /* Light Mode Colors */
  --primary-color: #1a365d;
  --primary-hover: #2d4a7c;
  --secondary-color: #718096;
  --accent-color: #2b6cb0;

  /* Background Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-card: #ffffff;
  --bg-header: #ffffff;

  /* Text Colors */
  --text-primary: #1a365d;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --text-light: #a0aec0;

  /* Border & Shadow */
  --border-color: #e2e8f0;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --shadow-color-light: rgba(0, 0, 0, 0.05);

  /* Form Elements */
  --input-bg: #ffffff;
  --input-border: #e2e8f0;
  --input-text: #4a5568;

  /* Special Colors */
  --success-color: #38a169;
  --warning-color: #dd6b20;
  --error-color: #e53e3e;

  /* Transition */
  --transition-speed: 0.3s;
}

/* ============================================
    DARK MODE VARIABLES
============================================ */
[data-theme="dark"] {
  /* Dark Mode Colors */
  --primary-color: #63b3ed;
  --primary-hover: #90cdf4;
  --secondary-color: #a0aec0;
  --accent-color: #4299e1;

  /* Background Colors */
  --bg-primary: #1a202c;
  --bg-secondary: #2d3748;
  --bg-card: #2d3748;
  --bg-header: #2d3748;

  /* Text Colors */
  --text-primary: #f7fafc;
  --text-secondary: #e2e8f0;
  --text-muted: #cbd5e0;
  --text-light: #a0aec0;

  /* Border & Shadow */
  --border-color: #4a5568;
  --shadow-color: rgba(0, 0, 0, 0.3);
  --shadow-color-light: rgba(0, 0, 0, 0.2);

  /* Form Elements */
  --input-bg: #4a5568;
  --input-border: #2d3748;
  --input-text: #e2e8f0;

  /* Special Colors */
  --success-color: #48bb78;
  --warning-color: #ed8936;
  --error-color: #fc8181;
}

/* ============================================
    BASE STYLES
============================================ */
* {
  margin: 0;
  padding: 0;
  /* box-sizing: border-box; */
  transition:
    background-color var(--transition-speed) ease,
    border-color var(--transition-speed) ease,
    color var(--transition-speed) ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Playfair Display", serif;
  line-height: 1.6;
  color: var(--text-secondary);
  background-color: var(--bg-primary);
}

.container {
  width: 88%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: hidden;
}

/* ============================================
   THEME TOGGLE STYLES
============================================ */
.theme-toggle {
  margin-right: 10px;
}

.theme-btn {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 2px solid var(--border-color);
  border-radius: 50px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition-speed) ease;
}

.theme-btn:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.theme-btn .fa-sun {
  display: none;
}

[data-theme="dark"] .theme-btn .fa-moon {
  display: none;
}

[data-theme="dark"] .theme-btn .fa-sun {
  display: inline-block;
}

.theme-text {
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .theme-text {
    display: none;
  }

  .theme-btn {
    padding: 10px;
    width: 40px;
    height: 40px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .theme-toggle {
    margin-bottom: 20px;
  }
}

/* ============================================
   TYPOGRAPHY
============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--bg-secondary);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

.text-center {
  text-align: center;
}

/* ============================================
   HEADER & NAVIGATION
============================================ */
.header {
  position: sticky;
  top: 0;
  background-color: var(--bg-header);
  box-shadow: 0 2px 10px var(--shadow-color);
  z-index: 1000;
  padding: 1rem 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  margin-right: 1rem;
}

.nav-list li {
  margin-left: 2rem;
}

.nav-list a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 600;
  transition: color var(--transition-speed) ease;
  position: relative;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--primary-color);
}

.nav-list a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-speed) ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 1rem;
}

@media (max-width: 768px) {
.nav-cta {
  margin-left: 0rem;
}
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-primary);
  margin: 3px 0;
  transition: 0.3s;
}

/* ============================================
    HERO SECTION
============================================ */
.hero {
  padding: 5rem 0 3rem;
  background-color: var(--bg-secondary);
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.hero-text {
  /* flex: 1; */
  padding-right: 3rem;
}

.hero-text h1 {
  font-size: 2.8rem;
  color: var(--text-primary);
}

.hero-text h2 {
  font-size: 1.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-text p {
  font-size: 1.1rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-image {
  flex: 1;
}

.image-placeholder {
  width: 100%;
  height: 350px;
  background-color: var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 8rem;
}

/* Trust Strip */
.trust-strip {
  display: flex;
  justify-content: space-around;
  background-color: var(--bg-card);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px var(--shadow-color-light);
  margin-top: 2rem;
  border: 1px solid var(--border-color);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trust-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.trust-text {
  margin-top: 0.5rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.trust-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* ============================================
   SECTIONS
============================================ */
.section {
  padding: 3rem 0;
}

.bg-light {
  background-color: var(--bg-secondary) !important;
}

/* ============================================
   PRACTICE AREAS / SERVICES
============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background-color: var(--bg-card);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 6px var(--shadow-color-light);
  transition:
    transform var(--transition-speed) ease,
    box-shadow var(--transition-speed) ease;
  border: 1px solid var(--border-color);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px var(--shadow-color);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
}

.service-link:hover {
  text-decoration: underline;
}

/* Detailed Service Cards */
.service-card.detailed {
  display: flex;
  flex-direction: column;
}

.service-details {
  margin: 1.5rem 0;
}

.service-details h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.service-details ul {
  list-style-position: inside;
  color: var(--text-secondary);
}

.service-details li {
  margin-bottom: 0.5rem;
}

/* ============================================
   ABOUT PREVIEW
============================================ */
.about-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about-text {
  flex: 1;
}

.highlights {
  margin: 2rem 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.highlight-item i {
  color: var(--success-color);
  margin-right: 1rem;
}

.about-image {
  flex: 1;
}

.about-img {
  height: 400px;
}

/* ============================================
   AREAS OF EXPERTISE
============================================ */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.expertise-card {
  background-color: var(--bg-card);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 6px var(--shadow-color-light);
  transition: all var(--transition-speed) ease;
  border: 1px solid var(--border-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px var(--shadow-color);
  border-color: var(--primary-color);
}

.expertise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--primary-color);
  transition: height var(--transition-speed) ease;
}

.expertise-card:hover::before {
  height: 100%;
}

.expertise-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  transition: transform var(--transition-speed) ease;
}

.expertise-card:hover .expertise-icon {
  transform: scale(1.1);
}

.expertise-card h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.expertise-card h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-speed) ease;
}

.expertise-card:hover h3::after {
  width: 80px;
}

.expertise-card p {
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Dark mode adjustments */
[data-theme="dark"] .expertise-card {
  background-color: var(--bg-card);
}

[data-theme="dark"] .expertise-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 15px var(--shadow-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .expertise-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .expertise-card {
    padding: 1.5rem;
  }
  
  .expertise-icon {
    font-size: 2rem;
  }
  
  .expertise-card h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .expertise-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================
   courses-section
============================================ */

    .courses-section {
        padding: 80px 0;
        background-color: var(--bg-secondary);
    }

    .courses-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 40px;
        margin-top: 50px;
    }

    .course-card {
        background-color: var(--bg-card);
        border-radius: 8px;
        padding: 30px;
        box-shadow: 0 4px 6px var(--shadow-color-light);
        transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
        border: 1px solid var(--border-color);
    }

    .course-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 15px var(--shadow-color);
    }

    .course-icon {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 1.5rem;
    }

    .course-card h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: var(--text-primary);
        line-height: 1.3;
    }

    .course-subtitle {
        font-size: 1rem;
        font-weight: 600;
        color: var(--primary-color);
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
        border-bottom: 2px solid var(--border-color);
    }

    .course-description p {
        color: var(--text-secondary);
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .course-why h4,
    .course-outcomes h4,
    .course-benefits h4 {
        font-size: 1.1rem;
        font-weight: 600;
        margin: 1.25rem 0 0.75rem 0;
        color: var(--text-primary);
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .course-why h4 i,
    .course-outcomes h4 i,
    .course-benefits h4 i {
        color: var(--primary-color);
        font-size: 1rem;
    }

    .course-card ul {
        padding-left: 1.5rem;
        margin: 0.5rem 0 1rem 0;
        color: var(--text-secondary);
    }

    .course-card ul li {
        margin-bottom: 0.5rem;
        line-height: 1.5;
    }

    .course-cta {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--border-color);
        text-align: center;
    }

    .course-cta .btn {
        display: inline-block;
        margin-bottom: 1rem;
        padding: 10px 28px;
        font-weight: 600;
    }

    .course-note {
        font-size: 0.85rem;
        color: var(--text-muted);
        font-style: italic;
        margin-top: 0.5rem;
        line-height: 1.4;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .courses-section {
            padding: 60px 0;
        }
        
        .courses-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .course-card {
            padding: 20px;
        }

        .course-card h3 {
            font-size: 1.3rem;
        }
    }

    @media (max-width: 576px) {
        .courses-section {
            padding: 40px 0;
        }
        
        .courses-grid {
            gap: 20px;
        }
    }

/* ============================================
   WHY CHOOSE ME
============================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.pillar-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.pillar-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

/* ============================================
   CTA SECTION
============================================ */
.cta-section {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.cta-content h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  color: #e2e8f0;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.contact-info a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background-color: var(--bg-secondary);
  color: var(--text-secondary);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-info h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.footer-contact p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--border-color);
  border-radius: 50%;
  color: var(--text-primary);
  text-decoration: none;
  transition: background-color var(--transition-speed) ease;
}

.social-icons a:hover {
  background-color: var(--primary-color);
  color: white;
}

.footer-disclaimer {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-disclaimer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-legal {
  margin-bottom: 1rem;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  margin: 0 0.5rem;
}

.footer-legal a:hover {
  text-decoration: underline;
  color: var(--primary-color);
}

.copyright {
  color: var(--text-light);
  font-size: 0.8rem;
}

/* ============================================
   PAGE HERO
============================================ */
.page-hero {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.page-hero p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   ABOUT DETAIL
============================================ */
.about-detail {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about-detail-text {
  flex: 1;
}

.about-detail-image {
  flex: 1;
}

.about-portrait {
  height: 400px;
}

/* ============================================
   QUALIFICATIONS
============================================ */
.qualifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.qualification-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--bg-card);
  border-radius: 8px;
  box-shadow: 0 4px 6px var(--shadow-color-light);
  border: 1px solid var(--border-color);
}

.qualification-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

/* ============================================
   APPROACH GRID
============================================ */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.approach-card {
  padding: 2rem;
  background-color: var(--bg-card);
  border-radius: 8px;
  box-shadow: 0 4px 6px var(--shadow-color-light);
  border: 1px solid var(--border-color);
}

/* ============================================
   AREAS SERVED
============================================ */
.areas-served {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.area-tag {
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 600;
}

/* ============================================
   TIMELINE
============================================ */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 3rem auto 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--border-color);
}

.timeline-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 3rem;
}

.timeline-date {
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 600;
}

.timeline-content {
  background-color: var(--bg-card);
  padding: 2.8rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px var(--shadow-color-light);
  border: 1px solid var(--border-color);
}

.timeline-content ul {
  padding-left: 1.5rem;
  margin-top: 1rem;
  color: var(--text-secondary);
}

.timeline-content li {
  margin-bottom: 0.5rem;
}

/* ============================================
   STRENGTHS GRID
============================================ */
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.strength-card {
  padding: 2rem;
  background-color: var(--bg-card);
  border-radius: 8px;
  box-shadow: 0 4px 6px var(--shadow-color-light);
  border: 1px solid var(--border-color);
}

/* ============================================
   COMMITMENT
============================================ */
.commitment-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.highlight-box {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--success-color);
  padding: 2rem;
  margin-top: 3rem;
  text-align: left;
}

.highlight-box i {
  font-size: 2rem;
  color: var(--success-color);
  margin-bottom: 1rem;
}

/* ============================================
   CONTACT FORM
============================================ */
.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.contact-form h2 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  background-color: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--input-text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group.checkbox {
  display: flex;
  align-items: flex-start;
}

.form-group.checkbox input {
  width: auto;
  margin-right: 0.5rem;
  margin-top: 0.3rem;
}

.form-group.checkbox label {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Info Card */
.info-card {
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
}

.info-card h3 {
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.info-icon {
  background-color: var(--primary-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.info-content h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
  color: var(--text-primary);
}

.info-content a,
.info-content p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

.info-content a {
  text-decoration: none;
}

.info-content a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* FAQ */
.faq-mini h3 {
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-item h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.faq-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Section Title Styling for LinkedIn Feed */
.sectionHead {
    text-align: center;
    margin-bottom:10px;
    position: relative;
}

.sectionTitle {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d; /* Your primary color */
    margin: 0 0 10px;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.sectionSub {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   MOBILE CTA
============================================ */
.mobile-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 10px var(--shadow-color);
  display: none;
  align-items: center;
  gap: 0.5rem;
  z-index: 999;
}

.mobile-cta:hover {
  background-color: var(--primary-hover);
  color: white;
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-content {
    flex-direction: column;
  }

  .hero-text {
    padding-right: 0;
    margin-bottom: 3rem;
  }

  .about-content {
    flex-direction: column;
  }

  .about-detail {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--bg-header);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 3rem;
    transition: 0.3s;
    box-shadow: 0 10px 15px var(--shadow-color);
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    margin-right: 0;
    margin-bottom: 2rem;
    text-align: center;
  }

  .nav-list li {
    margin: 0 0 1.5rem 0;
  }

  .hamburger {
    display: flex;
  }

  .trust-strip {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
  }

  .contact-info {
    flex-direction: column;
    gap: 1rem;
  }

  .mobile-cta {
    display: flex;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    padding-left: 60px;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 3rem 0;
  }

  .hero {
    padding: 3rem 0 2rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text h2 {
    font-size: 1.3rem;
  }

  .image-placeholder {
    height: 250px;
    font-size: 5rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
