/* CSS Variables - Design System */
:root {
    /* Brand Colors */
    --brand-cyan: #02b2fe;
    --brand-navy: #000058;
    --brand-pink: #fe015b;

    /* Core */
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(225, 15%, 20%);

    /* Surfaces */
    --card: #ffffff;
    --card-foreground: var(--foreground);
    --secondary: hsl(225, 10%, 96%);
    --secondary-foreground: var(--foreground);
    --muted: hsl(225, 10%, 96%);
    --muted-foreground: hsl(225, 8%, 45%);
    --border: hsl(225, 15%, 88%);
    --input: hsl(225, 15%, 92%);

    /* Brand Tokens */
    --primary: var(--brand-navy);
    --primary-foreground: #ffffff;
    --primary-light: #20207a; /* lighter navy for hovers */
    --primary-glow: rgba(2, 178, 254, 0.65); /* cyan glow */

    --accent: var(--brand-pink);
    --accent-foreground: var(--brand-navy);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--brand-navy) 0%, #0a1b8e 40%, var(--brand-cyan) 100%);
    --gradient-hero: linear-gradient(135deg, var(--brand-navy) 0%, #0a1b8e 55%, rgba(2,178,254,0.15) 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, hsl(225, 10%, 98%) 100%);

    /* Shadows */
    --shadow-professional: 0 4px 20px -2px rgba(0, 0, 88, 0.18);
    --shadow-card: 0 2px 15px -3px rgba(0, 0, 88, 0.12);
    --shadow-glow: 0 0 30px rgba(2, 178, 254, 0.35);

    /* Typography */
    --font-poppins: 'Poppins', sans-serif;
    --font-inter: 'Manrope', sans-serif;

    /* Radius */
    --radius: 0.5rem;
}


.dark {
    --background: #0a0a1a;          /* deep, near-navy */
    --foreground: hsl(225, 10%, 95%);
    --card: #0e0e24;
    --card-foreground: hsl(225, 10%, 95%);

    --primary: var(--brand-cyan);   /* cyan pops on dark */
    --primary-foreground: #001326;  /* readable on cyan */
    --primary-light: #4fd1ff;
    --primary-glow: rgba(2, 178, 254, 0.85);

    --secondary: #121233;
    --secondary-foreground: hsl(225, 10%, 95%);
    --muted: #121233;
    --muted-foreground: hsl(225, 10%, 70%);

    --accent: var(--brand-pink);
    --accent-foreground: #fff;

    --border: #1b1b3f;
    --input: #17173a;

    --gradient-primary: linear-gradient(135deg, #001040, #1420a3, var(--brand-cyan));
    --gradient-hero: linear-gradient(135deg, #0a0a1a 0%, #0e1440 55%, rgba(2,178,254,0.2) 100%);
    --gradient-card: linear-gradient(145deg, #10102a 0%, #0d0d22 100%);

    --shadow-professional: 0 4px 20px -2px rgba(0, 0, 0, 0.45);
    --shadow-card: 0 2px 15px -3px rgba(0, 0, 0, 0.35);
    --shadow-glow: 0 0 30px rgba(2, 178, 254, 0.45);
}


/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-inter);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-poppins);
    font-weight: 700;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.min-h-screen {
    min-height: 100vh;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in 0.8s ease-out;
}

.animate-slide-up {
    animation: slide-up 0.6s ease-out;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-inter);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-professional {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-professional);
}

.btn-professional:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-hero {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-professional);
}

.btn-hero:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background: var(--secondary);
}

.btn-outline-light {
    background: transparent;
    color: var(--primary-foreground);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-ghost {
    background: transparent;
    color: var(--foreground);
}

.btn-ghost:hover {
    background: var(--secondary);
}

.btn-accent {
    background: var(--accent);
    color: #ffffff;
}

.btn-accent:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Header Styles */
.header {
    background: var(--background);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    position: sticky;
    top: 0;
    z-index: 50;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 5rem;
    height: 5rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    font-weight: 700;
    font-size: 1.125rem;
}

.logo-text h1 {
    font-size: 1.25rem;
    color: var(--foreground);
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav a {
    color: var(--foreground);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
    font-weight: 500;
}

.nav a:hover {
    color: var(--brand-pink);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info {
    display: flex;
    /* align-items: center; */
    gap: 1rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, 
        var(--background) 0%, 
        rgba(255, 255, 255, 0.5) 50%, 
        transparent 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('src/assets/hero-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(254, 1, 91, 0.10); 
    color: var(--accent-foreground);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    border: 1px solid rgba(254, 1, 91, 0.20); 
    font-size: 0.875rem;
    font-weight: 500;
    width: fit-content;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--foreground);
}

.hero-description {
    font-size: 1.25rem;
    color: #000000;
    line-height: 1.6;
    max-width: 32rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
    color: var(--brand-pink);
}

.stat i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 1;
    color: hsl(0deg 0% 0%);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 37.5rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: var(--shadow-professional);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(55, 73, 121, 0.2), transparent);
    border-radius: 1rem;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: rgba(225, 229, 244, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(254, 1, 91, 0.10);
    color: var(--accent-foreground);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    border: 1px solid rgba(254, 1, 91, 0.20);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: var(--gradient-card);
    border: 1px solid rgba(225, 229, 244, 0.5);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-professional);
    transform: translateY(-2px);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.service-icon {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    box-shadow: var(--shadow-glow);
}

.service-header h3 {
    font-size: 1.25rem;
    color: var(--foreground);
    transition: color 0.3s ease;
}

.service-card:hover .service-header h3 {
    color: var(--primary);
}

.service-card p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.feature-dot {
    width: 0.375rem;
    height: 0.375rem;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.services-cta {
    background: var(--gradient-card);
    border-radius: 1rem;
    padding: 2rem 3rem;
    border: 1px solid rgba(225, 229, 244, 0.5);
    box-shadow: var(--shadow-card);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.services-cta-content h3 {
    font-size: 1.875rem;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.cta-feature i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--accent);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.cta-feature h4 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.cta-feature p {
    color: var(--muted-foreground);
    font-size: 1rem;
}

.services-cta-image img {
    width: 100%;
    height: 25rem;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-professional);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--background);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 3rem;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.about-text p:first-child {
    font-size: 1rem;
}

.about-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.about-achievements {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.achievement-card {
    text-align: center;
    padding: 1.5rem;
    color: white;
    background: var(--gradient-card);
    border: 1px solid rgba(225, 229, 244, 0.5);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.achievement-card:hover {
    box-shadow: var(--shadow-professional);
    transform: translateY(-2px);
}

.achievement-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-card);
}

.achievement-icon i {
    width: 2rem;
    height: 2rem;
    color: var(--primary-foreground);
}

.achievement-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.achievement-label {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.achievement-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.about-cta {
    margin-top: 5rem;
    background: var(--gradient-hero);
    border-radius: 1rem;
    padding: 2rem 3rem;
    text-align: center;
}

.about-cta h3 {
    font-size: 1.875rem;
    color: var(--primary-foreground);
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.about-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: rgba(225, 229, 244, 0.3);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.contact-form {
    background: var(--gradient-card);
    border: 1px solid rgba(225, 229, 244, 0.5);
    border-radius: var(--radius);
    box-shadow: var(--shadow-professional);
    padding: 2rem;
}

.form-header {
    margin-bottom: 1.5rem;
}

.form-header h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--muted-foreground);
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--input);
    border-radius: var(--radius);
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-inter);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 7.5rem;
    resize: vertical;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--gradient-card);
    border: 1px solid rgba(225, 229, 244, 0.5);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 3rem;
    height: 3rem;
    color: white;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-foreground);
}

.info-card h3 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.urgent-contact {
    background: var(--gradient-primary);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}

.urgent-contact h3 {
    font-size: 1.25rem;
    color: var(--primary-foreground);
    margin-bottom: 0.5rem;
}

.urgent-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 4rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 5rem;
    height: 5rem;
    background: white;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-foreground);
    font-weight: 700;
    font-size: 1.125rem;
}

.footer-logo h3 {
    font-size: 1.25rem;
}

.footer-logo p {
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent);
    color: var(--accent-foreground);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact-item i {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;        /* center the text */
    box-sizing: border-box;
}

.footer-bottom .footer-copy {
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.4;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-contact .contact-info {
        display: none;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .services-cta {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-achievements {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-buttons,
    .about-buttons,
    .about-cta-buttons {
        flex-direction: column;
    }
}

.btn-professional > a {
    color: white;
    text-decoration: none;
}

.info-card > p > a {
    color: var(--muted-foreground);
    line-height: 1.6;
}

button.btn.btn-accent.btn-full > a {
    color: white;
    text-decoration: none;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--foreground);
    cursor: pointer;
}

/* Toggle Button */
#mobileToggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  z-index: 50;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--background);
  position: absolute;
  top: 4rem;
  left: 0;
  right: 0;
  padding: 1rem;
  box-shadow: var(--shadow-card);
  z-index: 49;
}

.mobile-menu a {
  padding: 0.5rem 0;
  text-decoration: none;
  color: var(--foreground);
  font-weight: 500;
}

.mobile-menu.show {
  display: flex;
}

/* Responsive Rules */
@media (max-width: 768px) {
  #mobileToggle {
    display: block;
  }

  .nav {
    display: none;
  }
}


/* Case Study */
.case-study {
  padding: 5rem 0;
  background: rgba(225, 229, 244, 0.3);
}

.case-study-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.tags {
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag {
  background: rgba(2, 178, 254, 0.1); /* cyan tint */
  color: #000058; /* navy */
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid rgba(2, 178, 254, 0.3);
}

.case-study h3 {
  margin: 1.5rem 0 0.5rem;
  color: #000058;
  font-size: 1.25rem;
}

.case-study ul {
  margin: 0.75rem 0 1rem 1.2rem;
  color: var(--muted-foreground);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.metric {
  text-align: center;
  background: #fff;
  border: 1px solid #e1e5f4;
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow-card);
}

.metric h4 {
  font-size: 1.5rem;
  color: #fe015b; /* pink highlight */
  margin-bottom: 0.25rem;
}

.case-study-quote {
  background: #fff;
  border: 1px solid #e1e5f4;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.case-study-quote blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: #333;
  margin-bottom: 1rem;
}

.case-study-quote cite {
  font-size: 0.9rem;
  color: #555;
  display: block;
  margin-bottom: 1rem;
}

.case-study-quote .user-photo {
  text-align: center;
  margin-top: 1rem;
}

.case-study-quote .user-photo img {
  width: 120px;          /* smaller, focused on person */
  height: 120px;
  border-radius: 50%;    /* makes it circular */
  object-fit: cover;
  border: 3px solid #e1e5f4;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 992px) {
  .case-study-grid {
    grid-template-columns: 1fr;
  }
  .metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Team */
.team-section {
  padding: 5rem 0;
  background: #f9fafc;
  text-align: center;
}

.team-section .section-header {
  max-width: 700px;
  margin: 0 auto 3rem;
}

.team-section h2 {
  font-size: 2rem;
  color: #000058;
  margin-bottom: 0.5rem;
}

.team-section p {
  color: #555;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  padding: 0.85rem;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.team-card h3 {
  font-size: 1.1rem;
  color: #000058;
  margin-bottom: 0.25rem;
}

.team-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.75rem;
}

.team-card .linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #000058;
  color: #fff; /* makes Lucide SVG stroke white */
  transition: background 0.3s;
}

.team-card .linkedin:hover {
  background: #fe015b;
}

.team-card .linkedin svg {
  stroke: currentColor; /* ensures SVG uses the parent color */
}


/* Responsive */
@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}


/* Testimonials */
.testimonials {
  padding: 5rem 0;
  background: linear-gradient(to bottom right, #f8faff, #ffffff);
  text-align: center;
}

.section-header h2 {
  font-size: 2rem;
  color: #000058;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: #666;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  height: 100%; /* 🔹 Ensures equal height */
  min-height: 240px; /* adjust based on your content */
}

.testimonial-card .quote {
  font-style: italic;
  font-size: 1.05rem;
  color: #333;
  flex: 1; /* 🔹 Makes all cards equal */
  margin-bottom: 1.5rem;
}

.author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.author h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #000058;
  margin: 0;
}

.author span {
  font-size: 0.85rem;
  color: #666;
}

/* Swiper buttons */
.swiper-button-prev,
.swiper-button-next {
  color: #000058;
  background: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  top: 45%; /* 🔹 Center vertically */
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: #fe015b;
  color: #fff;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px; /* smaller arrows */
  font-weight: bold;
}

/* Pagination dots */
.swiper-pagination {
  position: relative;
  margin-top: 1.5rem; /* 🔹 Below cards */
}

.swiper-pagination-bullet {
  background: #02b2fe;
  opacity: 0.4;
}

.swiper-pagination-bullet-active {
  background: #fe015b;
  opacity: 1;
}


/* Testimonials */
