/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

/* New Color Scheme - Navy, Deep Red, Green, Pastels, Black with Beige */
:root {
    --navy: #1a2b3c;        /* Deep Navy Blue */
    --navy-light: #2c3e50;   /* Lighter Navy */
    --red-deep: #8b2c2c;     /* Deep Red */
    --red-bright: #b83b3b;   /* Bright Red */
    --green: #2d5a4b;        /* Deep Green */
    --green-light: #3f7867;  /* Light Green */
    --beige: #f5f0e6;        /* Beige Background */
    --beige-dark: #e8dccc;   /* Darker Beige */
    --black: #1e1e1e;        /* Black */
    --pastel-blue: #b8d8e3;  /* Pastel Blue */
    --pastel-pink: #f4cccc;  /* Pastel Pink */
    --pastel-green: #d5e8d4; /* Pastel Green */
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #f5f0e6;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.2);
    --gradient-1: linear-gradient(135deg, #1a2b3c 0%, #2c3e50 100%); /* Navy */
    --gradient-2: linear-gradient(135deg, #8b2c2c 0%, #b83b3b 100%); /* Red */
    --gradient-3: linear-gradient(135deg, #2d5a4b 0%, #3f7867 100%); /* Green */
    --gradient-4: linear-gradient(135deg, #b8d8e3 0%, #d5e8d4 100%); /* Pastels */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--beige);
}

/* Fixed Sticky Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.8rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--navy);
    z-index: 10000;
    box-shadow: var(--shadow-lg);
    border-bottom: 3px solid var(--red-deep);
    height: 80px;
}

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--beige) 0%, var(--pastel-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--pastel-blue);
    letter-spacing: 3px;
    font-weight: 500;
    text-transform: uppercase;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    font-size: 2rem;
    color: var(--beige);
    cursor: pointer;
    background: none;
    border: none;
    z-index: 10001;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--beige);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-2);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--pastel-blue);
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy-light);
    min-width: 280px;
    padding: 1rem 0;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 10001;
    border: 1px solid var(--red-deep);
    list-style: none;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 2rem;
    text-decoration: none;
    color: var(--beige);
    transition: all 0.3s;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: var(--gradient-2);
    color: var(--white);
    padding-left: 2.5rem;
}

/* Main Content Spacing */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    position: relative;
    z-index: 1;
    background: var(--beige);
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 80px);
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 2rem 5%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(184, 216, 227, 0.15) 0%, transparent 50%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--beige);
    transform: skewY(-2deg);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-text h1 {
    font-size: 3.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--beige);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text h1 span {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--pastel-blue);
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--pastel-blue);
    margin-bottom: 2rem;
}

/* 3D Founder Card */
.founder-card {
    background: rgba(44, 62, 80, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 2.5rem;
    border: 2px solid var(--red-deep);
    color: var(--beige);
    transform: perspective(1000px) rotateY(-5deg) translateZ(20px);
    transition: all 0.5s;
    box-shadow: var(--shadow-lg);
}

.founder-card:hover {
    transform: perspective(1000px) rotateY(0deg) translateZ(30px);
    border-color: var(--pastel-blue);
    box-shadow: var(--shadow-lg);
}

.founder-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--red-deep);
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-lg);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Trusted By Section */
.trusted-section {
    padding: 4rem 5%;
    background: var(--beige-dark);
    text-align: center;
}

.trusted-badge {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--gradient-3);
    border-radius: 50px;
    color: var(--beige);
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

/* Services Section */
.services {
    padding: 5rem 5%;
    background: var(--beige);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--navy);
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-2);
    border-radius: 2px;
}

.section-title p {
    color: var(--navy-light);
    font-size: 1.2rem;
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* 3D Service Cards */
.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-2);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
    border-color: var(--red-deep);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--navy);
    transition: all 0.5s;
    box-shadow: var(--shadow-md);
}

.service-card:hover .service-icon {
    transform: rotateY(180deg) scale(1.1);
    background: var(--gradient-3);
    color: var(--beige);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.service-card p {
    color: var(--navy-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 5rem 5%;
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(184, 216, 227, 0.2) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: rgba(44, 62, 80, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 3rem;
    border: 2px solid var(--red-deep);
    position: relative;
    z-index: 2;
}

.contact-info h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--beige);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding: 1rem;
    background: rgba(245, 240, 230, 0.1);
    border-radius: 12px;
    transition: all 0.3s;
    border: 1px solid rgba(245, 240, 230, 0.2);
}

.info-item:hover {
    transform: translateX(10px);
    background: rgba(245, 240, 230, 0.2);
    border-color: var(--red-deep);
}

.info-item i {
    width: 45px;
    height: 45px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--beige);
}

.info-item h4 {
    color: var(--beige);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.info-item p {
    color: var(--pastel-blue);
    font-size: 0.95rem;
}

.contact-form {
    background: var(--beige);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--red-deep);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--white);
    border: 2px solid var(--navy-light);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red-deep);
    box-shadow: 0 0 0 3px rgba(139, 44, 44, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--navy-light);
    opacity: 0.7;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-2);
    color: var(--beige);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.submit-btn:active {
    transform: translateY(0);
}

.success-message {
    display: none;
    background: var(--gradient-3);
    color: var(--beige);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    text-align: center;
    animation: slideUp 0.5s;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background: var(--navy);
    color: var(--beige);
    padding: 2rem 5%;
    text-align: center;
    border-top: 3px solid var(--red-deep);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--navy);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 2rem;
        transition: left 0.3s ease;
        display: flex !important;
        z-index: 9999;
        border-top: 2px solid var(--red-deep);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
        margin: 0.8rem 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        display: block;
        padding: 0.8rem;
        color: var(--beige);
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        margin-top: 0.5rem;
        display: none;
        width: 100%;
        background: var(--navy-light);
        border: 1px solid var(--red-deep);
    }
    
    .nav-item:hover .dropdown-menu,
    .nav-item:focus-within .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        text-align: center;
        padding: 0.8rem;
        color: var(--beige);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid,
    .mvv-section,
    .reasons-grid,
    .clients-grid,
    .testimonials-grid {
        grid-template-columns: 1fr !important;
    }
    
    .founder-spotlight-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    .founder-image-frame {
        margin: 0 auto 1.5rem;
    }
    
    .about-hero,
    .story-section,
    .mvv-card,
    .why-choose-section,
    .founder-spotlight,
    .clients-section,
    .service-detail-container {
        padding: 1.5rem !important;
    }
    
    .about-hero h1 {
        font-size: 2.2rem !important;
    }
    
    .service-header h1 {
        font-size: 2.2rem !important;
    }
    
    .service-features {
        grid-template-columns: 1fr !important;
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .stats-grid,
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .clients-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .story-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .founder-detail {
        grid-template-columns: 1fr !important;
        padding: 2rem;
    }
    
    .mvv-section {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .service-features {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Founder Page Specific */
.founder-page {
    padding: 3rem 5%;
    background: var(--beige);
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.founder-detail {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 40px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    border: 1px solid var(--red-deep);
    align-items: start;
}

.founder-detail-image {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-frame {
    width: 250px;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid var(--red-deep);
    box-shadow: var(--shadow-lg);
    margin-bottom: 1rem;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-bio h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.founder-bio .title {
    font-size: 1.1rem;
    color: var(--red-deep);
    margin-bottom: 1.5rem;
    display: block;
    font-weight: 600;
}

.experience-badge {
    background: var(--gradient-2);
    color: var(--beige);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.bio-text p {
    color: var(--navy-light);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.achievements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.achievement-item {
    text-align: center;
    padding: 1.2rem;
    background: var(--gradient-4);
    border-radius: 15px;
    color: var(--navy);
    border: 1px solid var(--red-deep);
}

.achievement-item h3 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.achievement-item p {
    color: var(--navy-light);
    font-size: 0.85rem;
    margin: 0;
}

/* About Page Styles */
.about-page {
    padding: 2rem 5%;
    background: var(--beige);
    min-height: calc(100vh - 80px);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-hero {
    background: var(--gradient-1);
    border-radius: 40px;
    padding: 3rem;
    margin-bottom: 2.5rem;
    color: var(--beige);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--red-deep);
}

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

.stat-item {
    text-align: center;
    padding: 1.2rem;
    background: rgba(44, 62, 80, 0.7);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--red-deep);
}

.stat-item h3 {
    font-size: 2rem;
    margin-bottom: 0.3rem;
    color: var(--pastel-blue);
}

.stat-item p {
    color: var(--beige);
    font-size: 0.9rem;
    margin: 0;
}

.story-section {
    background: var(--white);
    border-radius: 40px;
    padding: 3rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--red-deep);
}

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

.story-content h2 {
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.story-content p {
    color: var(--navy-light);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.story-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--red-deep);
}

.mvv-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.mvv-card {
    background: var(--white);
    border-radius: 25px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--red-deep);
    transition: all 0.3s;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.2rem;
    color: var(--navy);
    transition: all 0.3s;
}

.mvv-card:hover .mvv-icon {
    transform: rotateY(180deg);
    background: var(--gradient-3);
    color: var(--beige);
}

.mvv-card h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.mvv-card p {
    color: var(--navy-light);
    line-height: 1.7;
}

.why-choose-section {
    background: var(--gradient-1);
    border-radius: 40px;
    padding: 3rem;
    margin-bottom: 2.5rem;
    color: var(--beige);
    border: 1px solid var(--red-deep);
}

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

.reason-item {
    text-align: center;
    padding: 1.8rem 1.2rem;
    background: rgba(44, 62, 80, 0.7);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--red-deep);
    transition: all 0.3s;
}

.reason-item:hover {
    transform: translateY(-8px);
    background: rgba(44, 62, 80, 0.9);
}

.reason-item i {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--pastel-blue);
}

.reason-item h3 {
    color: var(--beige);
    margin-bottom: 0.8rem;
}

.reason-item p {
    color: var(--pastel-blue);
}

.founder-spotlight {
    background: var(--white);
    border-radius: 40px;
    padding: 3rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--red-deep);
}

.founder-spotlight-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2.5rem;
    align-items: start;
}

.founder-image-frame {
    width: 220px;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid var(--red-deep);
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
}

.founder-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-spotlight-content h2 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.founder-spotlight-content h3 {
    color: var(--red-deep);
    margin-bottom: 1.5rem;
}

.founder-spotlight-content p {
    color: var(--navy-light);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.founder-badge {
    display: inline-block;
    background: var(--gradient-2);
    color: var(--beige);
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.clients-section {
    background: var(--white);
    border-radius: 40px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--red-deep);
}

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

.section-header h2 {
    color: var(--navy);
    margin-bottom: 0.8rem;
}

.section-header h2 span {
    color: var(--red-deep);
}

.section-header p {
    color: var(--navy-light);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.client-logo {
    text-align: center;
    padding: 1.2rem;
    background: var(--beige-dark);
    border-radius: 12px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.client-logo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
    border-color: var(--red-deep);
    background: var(--pastel-blue);
}

.client-logo i {
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.client-logo span {
    display: block;
    color: var(--navy);
    font-weight: 500;
}

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

.testimonial-item {
    padding: 1.8rem;
    background: var(--beige-dark);
    border-radius: 20px;
    border: 1px solid var(--red-deep);
    transition: all 0.3s;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-item i {
    color: var(--red-deep);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.testimonial-item p {
    color: var(--navy);
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-item .client-name {
    color: var(--red-deep);
    font-weight: 600;
}

/* Service Pages */
.service-detail-page {
    padding: 2rem 5%;
    background: var(--beige);
    min-height: calc(100vh - 80px);
}

.service-detail-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 40px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--red-deep);
}

.service-header {
    text-align: center;
    margin-bottom: 3rem;
}

.service-header h1 {
    font-size: 2.8rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.service-header p {
    color: var(--navy-light);
    font-size: 1.2rem;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--gradient-4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--navy);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--red-deep);
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.feature-item {
    padding: 2rem 1.5rem;
    background: var(--gradient-4);
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid var(--red-deep);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.feature-item i {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--navy-light);
}

.approach-section {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--beige-dark);
    border-radius: 20px;
    border-left: 4px solid var(--red-deep);
}

.approach-section h2 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.approach-section p {
    color: var(--navy-light);
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--gradient-2);
    color: var(--beige);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 1px solid var(--red-deep);
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta-container {
    text-align: center;
    margin-top: 3rem;
}

/* Vision Page */
.vision-page {
    padding: 3rem 5%;
    background: var(--gradient-1);
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.vision-content {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 40px;
    padding: 4rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--red-deep);
}

.vision-header {
    text-align: center;
    margin-bottom: 3rem;
}

.vision-header h1 {
    font-size: 3rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.vision-card {
    padding: 2rem;
    background: var(--gradient-4);
    border-radius: 20px;
    transition: transform 0.3s;
    border: 1px solid var(--red-deep);
}

.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.vision-card i {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.vision-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.vision-card p {
    color: var(--navy-light);
}