@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Open+Sans:wght@400;500;600;700&family=Crimson+Text:wght@400;600&family=Outfit:wght@400;500;600;700;800&display=swap');

/* Blinking Animation */
@keyframes blink {
    0% {
        opacity: 1;
        text-shadow: 0 0 8px rgba(26, 123, 143, 0.6);
    }
    50% {
        opacity: 0.2;
        text-shadow: 0 0 4px rgba(26, 123, 143, 0.2);
    }
    100% {
        opacity: 1;
        text-shadow: 0 0 8px rgba(26, 123, 143, 0.6);
    }
}

.blink-text {
    animation: blink 1.2s infinite;
    font-weight: 700;
    color: var(--primary-teal);
}

:root {
    --primary-gradient: linear-gradient(135deg, #2E5090 0%, #1A7B8F 100%);
    --primary-dark: #1A4F9C;
    --primary-teal: #1A7B8F;
    --accent-warm: #E8956E;
    --accent-gold: #D4A574;
    --dark-slate: #1a1a1a;
    --soft-gray: #f8fafc;
    --light-gray: #e8ecf1;
    --white: #ffffff;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --success-green: #48a868;
    --growth-purple: #8B5CF6;
    --bg-primary: var(--white);
    --bg-secondary: var(--soft-gray);
    --text-color: var(--text-primary);
    --text-muted: var(--text-secondary);
    --border-color: rgba(26, 123, 143, 0.1);
}

[data-theme="dark"] {
    --bg-primary: #1a1a1a;
    --bg-secondary: #252525;
    --text-color: #e0e0e0;
    --text-muted: #a0a0a0;
    --border-color: rgba(26, 123, 143, 0.2);
}

* { 
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Attractive Sticky Header */
header {
    padding: 16px 5%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(26, 123, 143, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}
/* Main Bar Color for dark theme */
[data-theme="dark"] header {
    background: rgba(202, 199, 199, 0.95);
    border-bottom: 1px solid rgba(26, 123, 143, 0.2);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

header:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.logo img { 
    height: 90px; 
    width: 130px; 
    transition: transform 0.3s ease; 
    object-fit: contain;
}

.logo img:hover { 
    transform: scale(1.05); 
}

nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

[data-theme="dark"] nav ul li a {
    color: #1a1a1a;
}

[data-theme="dark"] nav ul li a.active {
    color: #000000;
}

[data-theme="dark"] nav ul li a:hover {
    color: #000000;
}

nav ul li a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after { 
    width: 100%;
    color: var(--primary-teal) !important;
}

nav ul li a:hover, 
.active { 
    color: var(--primary-teal) !important; 
}

[data-theme="dark"] nav ul li a:hover,
[data-theme="dark"] nav ul li a.active {
    color: #ffffff !important;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

[data-theme="dark"] .hamburger-menu span {
    background-color: #e0e0e0;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Navigation */
@media (max-width: 768px) {
    header {
        padding: 12px 5%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .logo img {
        height: 70px;
        width: 100px;
    
    }

    .hamburger-menu {
        display: flex;
        order: 2;
    }

    .theme-toggle {
        display: flex;
        align-items: center;
        gap: 8px;
        order: 3;
      
    }

    .hamburger-menu {
        display: flex;
        
    }

    nav {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        transition: left 0.3s ease;
        z-index: 999;
        padding: 20px 0;
        overflow-y: auto;
    }

    [data-theme="dark"] nav {
        background: rgba(26, 26, 26, 0.98);
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px 5%;
    }

    nav ul li {
        border-bottom: 1px solid rgba(26, 123, 143, 0.1);
    }

    nav ul li a {
        display: block;
        padding: 16px 0;
        font-size: 0.95rem;
        color: var(--text-primary);
    }

    [data-theme="dark"] nav ul li a {
        color: #ffffff;
    }

    [data-theme="dark"] nav ul li a:hover,
    [data-theme="dark"] nav ul li a.active {
        color: var(--primary-teal);
    }

    nav ul li a::after {
        display: none;
    }

    nav ul li a:hover,
    nav ul li a.active {
        padding-left: 10px;
    }
}

/* Modern Hero Section */
.hero {
    padding: 120px 10% 100px;
    text-align: center;
    background: linear-gradient(135deg, #fafbfc 0%, #f0f4f8 50%, #e8f0f7 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 123, 143, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(20px); }
}

/* Hero Content Layout */
.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    min-width: 0;
}

.hero #journey-hero .img-container {
    flex: 0 0 auto;
    margin: 0;
}


.hero > * {
    position: relative;
    z-index: 2;
}

h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    background: linear-gradient(135deg, #1A4F9C 0%, #1A7B8F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subheading {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 45px;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Image Styling */
.img-container {
    margin: 50px auto;
    position: relative;
    display: inline-block;
}

.img-main {
    max-width: 100%;
    width: 800px;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(26, 79, 156, 0.15);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    border: 1px solid rgba(26, 123, 143, 0.1);
}

.img-main:hover { 
    transform: translateY(-15px);
    box-shadow: 0 35px 70px rgba(26, 79, 156, 0.2);
}

/* Card Enhancements */
.card {
    padding: 35px 28px;
    background: var(--white);
    border: 1px solid rgba(26, 123, 143, 0.08);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transition: left 0.4s ease;
}

.card:hover {
    transform: translateY(-12px);
    border-color: var(--primary-teal);
    box-shadow: 0 20px 50px rgba(26, 123, 143, 0.12);
}

.card:hover::before {
    left: 0;
}

.card h3,
.card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 700;
}

.card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Footer Styling */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3436 100%);
    color: white;
    padding: 80px 10% 30px;
    text-align: center;
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 150px;
    height: 3px;
    background: var(--primary-gradient);
    transform: translateX(-50%);
    border-radius: 50px;
}

.footer-links {
    margin-bottom: 35px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-links a:hover { 
    color: var(--accent-warm);
    transform: translateY(-2px);
}

footer p {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 30px;
    letter-spacing: 0.5px;
}
/* What You Will Master – Center Alignment */
.section-padding {
    padding: 100px 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--soft-gray);
    position: relative;
}

.section-padding::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26, 123, 143, 0.2), transparent);
}

.section-padding h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--text-primary);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-padding h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 50px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    max-width: 1200px;
    width: 100%;
}

/* Primary CTA Button */
.btn-primary {
    display: inline-block;
    padding: 16px 48px;
    background: var(--primary-gradient);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 50px;
    box-shadow: 0 15px 40px rgba(26, 123, 143, 0.25);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Hover Effect */
.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(26, 123, 143, 0.35);
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(-2px);
}
.logo1{
    margin-top: -50px;
    margin-bottom: 0px;
    gap: 0px;

}

/* ===============================
   MOBILE RESPONSIVE FIXES
   =============================== */

@media (max-width: 768px) {

  /* Header */
  header {
    flex-direction: column;
    padding: 10px 5%;
  }

  .logo img {
    height: 65px;
    width: auto;
    margin-bottom: 10px;
  }

  nav ul {
    flex-direction: column;
    gap: 12px;
    padding: 0;
  }

  nav ul li a {
    font-size: 0.85rem;
  }

  /* Hero Section */
  .hero {
    padding: 80px 5% 60px;
    clip-path: none; /* remove curve on mobile */
  }

  h1 {
    font-size: 2rem;
  }

  .subheading {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }

  .hero-description {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  /* Hero Image */
  .img-container {
    width: 100%;
    margin: 30px auto;
  }

  /* Hero Content Layout - Mobile */
  .hero-content {
    flex-direction: column;
    gap: 20px;
  }

  .hero-text {
    text-align: center;
  }

  .img-main {
    width: 100%;
    max-width: 100%;
    border-radius: 14px;
  }

  /* CTA Button */
  .btn-primary {
    padding: 14px 32px;
    font-size: 0.9rem;
  }

  /* Section Padding */
  .section-padding {
    padding: 60px 5%;
  }

  .section-padding h2 {
    font-size: 2rem;
  }

  /* Cards */
  .grid-container {
    gap: 20px;
  }

  .card {
    padding: 18px;
  }

  /* Footer */
  footer {
    padding: 40px 5% 20px;
  }

  .footer-links a {
    display: block;
    margin: 10px 0;
  }
}


/*hero text smoother on mobile*/

.hero-description {
  max-width: 700px;
  margin: 0 auto 20px;
}





/* ===============================
   GLOBAL ENHANCEMENTS
   =============================== */

/* ===============================
   TYPOGRAPHY & SPACING
   =============================== */

body {
    font-size: 16px;
}

p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 18px;
    color: var(--text-secondary);
}

h2, h3, h4 {
    color: var(--text-primary);
}

h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Hero text spacing */
.hero-description {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Founder intro block */
.founder-intro {
    max-width: 900px;
    margin: 50px auto 0;
    padding: 45px 40px;
    background: linear-gradient(135deg, rgba(26, 123, 143, 0.05) 0%, rgba(139, 92, 246, 0.04) 100%);
    border-radius: 20px;
    border: 1px solid rgba(26, 123, 143, 0.1);
    text-align: center;
    backdrop-filter: blur(10px);
}

.founder-intro p {
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 18px;
    color: var(--text-secondary);
}

.founder-intro strong {
    color: var(--text-primary);
    font-weight: 700;
}

[data-theme="dark"] .founder-intro strong {
    color: #ffffff;
    font-weight: 700;
}

/* Bold and strong text visibility in dark mode */
[data-theme="dark"] strong,
[data-theme="dark"] b {
    color: #ffffff;
    font-weight: 700;
}

[data-theme="dark"] .card strong,
[data-theme="dark"] .card b {
    color: #e8f0f7;
}

[data-theme="dark"] .hero-description strong {
    color: #ffffff;
}

[data-theme="dark"] .testimonial-card strong {
    color: #ffffff;
}

/* ===============================
   CTA & SPACING
   =============================== */

.cta-group {
    margin-top: 45px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */

@media (max-width: 768px) {

  /* Header Responsive */
  header {
    flex-direction: column;
    padding: 12px 5%;
    gap: 15px;
  }

  .logo img {
    height: 70px;
    width: auto;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  nav ul li a {
    font-size: 0.8rem;
    padding: 8px 0;
    display: block;
  }

  /* Hero Responsive */
  .hero {
    padding: 80px 5% 70px;
  }

  h1 {
    font-size: 2rem;
  }

  .subheading {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  /* Images */
  .img-container {
    margin: 35px auto;
  }

  .img-main {
    width: 100%;
    max-width: none;
    border-radius: 16px;
  }

  /* Button */
  .btn-primary {
    padding: 14px 36px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 300px;
  }

  /* Section */
  .section-padding {
    padding: 70px 5%;
  }

  .section-padding h2 {
    font-size: 2rem;
    margin-bottom: 45px;
  }

  .section-padding h2::after {
    width: 80px;
  }

  /* Grid */
  .grid-container {
    gap: 20px;
  }

  .card {
    padding: 25px 20px;
  }

  /* Founder Intro */
  .founder-intro {
    padding: 30px 20px;
    margin: 35px auto 0;
    border-radius: 16px;
  }

  .founder-intro p {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  /* Testimonials */
  .testimonials-container {
    padding: 60px 15px;
    gap: 25px;
  }

  .testimonial-card {
    min-width: 100%;
    max-width: 100%;
    padding: 25px 20px;
    margin-bottom: 15px;
  }

  .profile-pic {
    width: 120px;
    height: 120px;
  }

  .user-name {
    font-size: 1.1rem;
  }

  .review-text {
    font-size: 0.9rem;
  }

  /* Testimonials Mobile */
  .testimonials-container {
    flex-direction: column;
    align-items: center;
    padding: 60px 15px;
    gap: 20px;
  }

  .testimonial-card {
    max-width: 100%;
    width: 100%;
    min-width: unset;
    padding: 30px 20px;
  }

  .profile-pic {
    width: 100px;
    height: 100px;
  }

  /* Footer */
  footer {
    padding: 50px 5% 25px;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }

  .footer-links a {
    display: inline-block;
    margin: 0;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.6rem;
  }

  .subheading {
    font-size: 0.8rem;
  }

  .section-padding h2 {
    font-size: 1.7rem;
  }

  nav ul {
    gap: 8px;
  }

  nav ul li a {
    font-size: 0.75rem;
  }
}


/* Import Roboto for that clean, professional look */
/* ===============================
   TESTIMONIALS SECTION
   =============================== */

.testimonials-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    padding: 80px 20px;
    background: linear-gradient(135deg, #fafbfc 0%, #f0f4f8 100%);
    flex-wrap: wrap;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
    margin-top: 40px;
}

.testimonials-container h2 {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 340px;
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(26, 123, 143, 0.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    animation: slideUp 0.6s ease-out backwards;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(26, 123, 143, 0.15);
    border-color: var(--primary-teal);
}

.profile-pic {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 25px;
    box-shadow: 0 6px 20px rgba(26, 123, 143, 0.18);
    display: block;
    border: 4px solid var(--white);
    transition: all 0.3s ease;
}

.testimonial-card:hover .profile-pic {
    box-shadow: 0 10px 30px rgba(26, 123, 143, 0.28);
    transform: scale(1.05);
}

.user-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
    line-height: 1.3;
}

.testimonial-card > p:not(.review-text) {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 20px;
    flex-grow: 0;
    line-height: 1.5;
    letter-spacing: 0.3px;
}

.review-text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 400;
    margin: 0;
    font-style: italic;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===============================
   DARK THEME TOGGLE SWITCH
   =============================== */

.theme-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.toggle-checkbox {
    display: none;
}

.toggle-label {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
    background-color: #ccc;
    border-radius: 32px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.toggle-checkbox:checked + .toggle-label {
    background-color: var(--primary-teal);
}

.toggle-label::before {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: white;
    top: 3px;
    left: 3px;
    transition: transform 0.3s ease;
}

.toggle-checkbox:checked + .toggle-label::before {
    transform: translateX(28px);
}

.toggle-icon {
    font-size: 1.2rem;
    transition: opacity 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    line-height: 1;
   
}

.toggle-icon.sun {
    opacity: 1;
}

.toggle-icon.moon {
    opacity: 0.4;
}

.toggle-checkbox:checked + .toggle-label + .toggle-icon.sun {
    opacity: 0.4;
}

.toggle-checkbox:checked + .toggle-label + .toggle-icon.moon {
    opacity: 1;
}

[data-theme="dark"] .toggle-icon {
    color: #ffffff;
}

/* ===============================
   CONTACT FORM STYLES
   =============================== */

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-form-container > div {
    display: flex;
    flex-direction: column;
}

.contact-form-container > div > h2 {
    text-align: left;
    margin-top: 0;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex-grow: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-family: 'Open Sans', sans-serif;
    text-align: left;
}

[data-theme="dark"] .form-label {
    color: #e0e0e0;
}

.form-input {
    padding: 14px 16px;
    border: 1px solid rgba(26, 123, 143, 0.2);
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-color);
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: var(--text-secondary);
}

[data-theme="dark"] .form-input {
    background-color: #2a2a2a;
    border-color: rgba(26, 123, 143, 0.3);
    color: #e0e0e0;
}

[data-theme="dark"] .form-input::placeholder {
    color: #888888;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(26, 123, 143, 0.1);
    background-color: var(--white);
}

[data-theme="dark"] .form-input:focus {
    background-color: #333333;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(26, 123, 143, 0.2);
}

.form-textarea {
    resize: vertical;
    line-height: 1.6;
}

[data-theme="dark"] .form-textarea {
    background-color: #2a2a2a;
    color: #e0e0e0;
}

.btn-submit {
    padding: 16px 40px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

[data-theme="dark"] .btn-submit {
    background: linear-gradient(135deg, #1a7b8f 0%, #1A4F9C 100%);
    color: #ffffff;
}

.form-message {
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
}

.form-message.show {
    opacity: 1;
}

.success-message {
    background-color: #e8f5e9;
    color: #2e7d32;
}

[data-theme="dark"] .success-message {
    background-color: rgba(72, 168, 104, 0.2);
    color: #81c784;
}

.error-message {
    background-color: #ffebee;
    color: #c62828;
}

[data-theme="dark"] .error-message {
    background-color: rgba(198, 40, 40, 0.2);
    color: #ef5350;
}

/* Contact Info Section */
.contact-info {
    background: linear-gradient(135deg, rgba(26, 123, 143, 0.05) 0%, rgba(139, 92, 246, 0.04) 100%);
    border: 1px solid rgba(26, 123, 143, 0.1);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

[data-theme="dark"] .contact-info {
    background: linear-gradient(135deg, rgba(26, 123, 143, 0.1) 0%, rgba(139, 92, 246, 0.08) 100%);
    border-color: rgba(26, 123, 143, 0.2);
}

.contact-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    margin-top: 0;
    margin-bottom: 30px;
    color: var(--text-primary);
    font-weight: 700;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(26, 123, 143, 0.1);
    align-items: flex-start;
}

.contact-method:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-icon {
    font-size: 1.8rem;
    color: var(--primary-teal);
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

[data-theme="dark"] .contact-icon {
    color: #4fb3cc;
}

.contact-method > div {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-method h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    margin: 0 0 6px 0;
    color: var(--text-primary);
    font-weight: 700;
}

[data-theme="dark"] .contact-method h4 {
    color: #ffffff;
}

.contact-method p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

[data-theme="dark"] .contact-method p {
    color: #b0b0b0;
}

.contact-method a {
    color: var(--primary-teal);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

[data-theme="dark"] .contact-method a {
    color: #4fb3cc;
}

.contact-method a:hover {
    color: var(--accent-warm);
    text-decoration: underline;
}

[data-theme="dark"] .contact-method a:hover {
    color: #E8956E;
}

/* Responsive Design for Contact */
@media (max-width: 768px) {
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        padding: 30px;
    }

    .form-input {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .contact-form {
        gap: 20px;
    }

    .contact-method {
        gap: 15px;
    }

    .contact-icon {
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }
}


/* Update hero gradient and section backgrounds for dark theme */

[data-theme="dark"] .hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 50%, #1f2937 100%);
}

[data-theme="dark"] .section-padding {
    background-color: var(--bg-secondary);
}

[data-theme="dark"] .card {
    background: #2a2a2a;
    border-color: rgba(26, 123, 143, 0.15);
    color: var(--text-color);
}

[data-theme="dark"] .card p {
    color: var(--text-muted);
}

[data-theme="dark"] .founder-intro {
    background: linear-gradient(135deg, rgba(26, 123, 143, 0.1) 0%, rgba(139, 92, 246, 0.08) 100%);
    border-color: rgba(26, 123, 143, 0.2);
}

[data-theme="dark"] .testimonial-card {
    background: #2a2a2a;
    border-color: rgba(26, 123, 143, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .testimonial-card:hover {
    box-shadow: 0 15px 45px rgba(26, 123, 143, 0.25);
}

[data-theme="dark"] .testimonial-card .user-name {
    color: #e0e0e0;
}

[data-theme="dark"] .testimonial-card > p:not(.review-text) {
    color: #aaa;
}

[data-theme="dark"] .testimonial-card .review-text {
    color: #bbb;
}

[data-theme="dark"] .testimonials-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
}

[data-theme="dark"] footer {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4 {
    color: #e0e0e0;
}

[data-theme="dark"] p {
    color: var(--text-muted);
}

[data-theme="dark"] .subheading {
    color: rgba(200, 200, 200, 0.8);
}

[data-theme="dark"] .footer-links a {
    color: rgba(200, 200, 200, 0.6);
}

[data-theme="dark"] .footer-links a:hover {
    color: var(--accent-warm);
}
.icon-container{
    display: flex;
    justify-content: space-between;
    gap: 180px;
}

/* ================= DISCLAIMER SECTION ================= */
.disclaimer {
    background-color: #f5f5f5;
    color: #666;
    padding: 2rem;
    border-top: 1px solid #e0e0e0;
    text-align: left;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-top: 2rem;
}

.disclaimer p {
    margin-bottom: 1rem;
}

.disclaimer p:last-child {
    margin-bottom: 0;
}

[data-theme="dark"] .disclaimer {
    background-color: #1a1a1a;
    color: #999;
    border-top-color: #333;
}






