/* ===================================
   ABOUT PAGE STYLES
   (Using Services Page Structure)
   =================================== */

/* ===================================
   HEADER STYLES
   =================================== */

.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    gap: 2rem;
}

/* Brand/Logo */
.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #0f4c81;
}

.brand-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f4c81;
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.75rem;
    color: #666;
    font-weight: 400;
}

/* Navigation Toggle Button */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #0f4c81;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Main Navigation */
.site-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.site-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: color 0.3s;
    position: relative;
}

.site-nav a:hover,
.site-nav a.active {
    color: #0f4c81;
}

.site-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fbbf24;
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    list-style: none;
}

.dropdown a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    white-space: nowrap;
}

.dropdown a:hover {
    background: #f8fafc;
    color: #0f4c81;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    border: none;
}

.btn-outline {
    background: transparent;
    border: 2px solid #0f4c81;
    color: #0f4c81;
}

.btn-outline:hover {
    background: #0f4c81;
    color: white;
}

.icon-btn {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    color: #0f4c81;
    transition: transform 0.3s;
}

.icon-btn:hover {
    transform: rotate(20deg);
}

/* ===================================
   FOOTER STYLES
   =================================== */

.site-footer {
    background: #1e293b;
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.site-footer h3 {
    color: #fbbf24;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.site-footer h4 {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.site-footer p {
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 0.95rem;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer ul li {
    margin-bottom: 0.5rem;
}

.site-footer a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.site-footer a:hover {
    color: #fbbf24;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.9rem;
}

/* ===================================
   HERO SECTION (Services Style)
   =================================== */

.services-hero {
    margin-top: 80px;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f4c81 0%, #2196F3 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0.5;
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 2rem;
}

.hero-text {
    color: white;
}

.eyebrow {
    display: inline-block;
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: #fbbf24;
    color: #0f4c81;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid #fbbf24;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid white;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: #0f4c81;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: white;
    font-size: 1rem;
}

/* ===================================
   SERVICES OVERVIEW SECTION
   =================================== */

.services-overview {
    padding: 4rem 2rem 2rem;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #0f4c81;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.services-nav {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.service-nav-btn {
    background: white;
    border: 2px solid #e2e8f0;
    color: #334155;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.service-nav-btn:hover {
    border-color: #0f4c81;
    color: #0f4c81;
}

.service-nav-btn.active {
    background: #0f4c81;
    border-color: #0f4c81;
    color: white;
}

/* ===================================
   SERVICES CONTENT SECTION
   =================================== */

.services-content {
    padding: 4rem 2rem;
    background: white;
}

.service-category {
    margin-bottom: 5rem;
    animation: fadeIn 0.5s ease-in;
}

.category-header {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f1f5f9;
}

.category-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, #0f4c81, #2196F3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.category-header h2 {
    color: #0f4c81;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.category-header p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}


.service-card {
    background: white;
    border: 2px solid #f1f5f9;
    border-radius: 20px;
    padding: 1.2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    width:45%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0f4c81, #2196F3);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.service-card:hover {
    border-color: #0f4c81;
    box-shadow: 0 20px 40px rgba(15, 76, 129, 0.1);
    transform: translateY(-5px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: #0f4c81;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card > p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-benefit {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #fbbf24;
}

.benefit-label {
    display: inline-block;
    background: #fbbf24;
    color: #0f4c81;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.service-benefit p {
    color: #334155;
    font-weight: 500;
    margin: 0;
}

/* ===================================
   CTA SECTION
   =================================== */

.services-cta {
    background: linear-gradient(135deg, #0f4c81, #2196F3);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    background: #fbbf24;
    color: #0f4c81;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid #fbbf24;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.4);
}

.btn-outline-light {
    background: transparent;
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    border: 2px solid white;
    transition: all 0.3s;
}

.btn-outline-light:hover {
    background: white;
    color: #0f4c81;
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* ===================================
   MODERN SECTION BACKGROUNDS
   =================================== */

/* Our Story Section - Geometric Pattern */
.story-section {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(15, 76, 129, 0.03) 35px, rgba(15, 76, 129, 0.03) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(33, 150, 243, 0.03) 35px, rgba(33, 150, 243, 0.03) 70px);
    z-index: 0;
}

.story-section > * {
    position: relative;
    z-index: 1;
}

/* Vision & Mission Section - Premium Gradient with Animation */
.vision-mission-section {
    position: relative;
    background: linear-gradient(-45deg, #0f4c81, #2196F3, #1e88e5, #0d47a1);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    padding: 5rem 2rem;
    border-radius: 30px;
    margin-bottom: 3rem;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15, 76, 129, 0.3);
}

.vision-mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.vision-mission-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
    z-index: 0;
}

.vision-mission-section > * {
    position: relative;
    z-index: 1;
}

.vision-mission-section .category-header h2,
.vision-mission-section .category-header p {
    color: white;
}

.vision-mission-section .category-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.3));
}

.vision-mission-section .category-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.vision-mission-section .service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.vision-mission-section .service-card:hover {
    background: white;
    border-color: #fbbf24;
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* Values Section - Dotted Pattern */
.values-section {
    position: relative;
    background: white;
    padding: 4rem 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(15, 76, 129, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
}

.values-section::after {
    content: '⭐';
    position: absolute;
    font-size: 25rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.03;
    z-index: 0;
    animation: float 10s ease-in-out infinite;
}

.values-section > * {
    position: relative;
    z-index: 1;
}

/* Impact Section - Dark with Gradient Overlay */
.impact-section {
    position: relative;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 5rem 2rem;
    border-radius: 30px;
    margin-bottom: 3rem;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(30deg, transparent 0%, rgba(251, 191, 36, 0.05) 50%, transparent 100%),
        radial-gradient(circle at 80% 20%, rgba(33, 150, 243, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.impact-section > * {
    position: relative;
    z-index: 1;
}

.impact-section .category-header h2,
.impact-section .category-header p {
    color: white;
}

.impact-section .category-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.3));
}

.impact-section .category-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.impact-section .service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.impact-section .service-card h3 {
    color: #fbbf24;
}

.impact-section .service-card > p {
    color: #cbd5e1;
}

.impact-section .service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #fbbf24;
    transform: translateY(-10px);
}

.impact-section .service-benefit {
    background: rgba(251, 191, 36, 0.1);
    border-left-color: #fbbf24;
}

.impact-section .service-benefit p {
    color: white;
}

/* ===================================
   DARK MODE SUPPORT
   =================================== */

/* Header & Nav Dark Mode */
:root.dark .site-header {
    background: #1e293b;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

:root.dark .brand-name {
    color: #60a5fa;
}

:root.dark .brand-tagline {
    color: #cbd5e1;
}

:root.dark .nav-toggle span {
    background: #60a5fa;
}

:root.dark .site-nav a {
    color: #e2e8f0;
}

:root.dark .site-nav a:hover,
:root.dark .site-nav a.active {
    color: #60a5fa;
}

:root.dark .dropdown {
    background: #0f172a;
}

:root.dark .dropdown a {
    color: #e2e8f0;
}

:root.dark .dropdown a:hover {
    background: #1e293b;
    color: #60a5fa;
}

:root.dark .btn-outline {
    border-color: #60a5fa;
    color: #60a5fa;
}

:root.dark .btn-outline:hover {
    background: #60a5fa;
    color: #0f172a;
}

:root.dark .icon-btn {
    color: #60a5fa;
}

/* Content Dark Mode */
:root.dark .services-overview {
    background: #0f172a;
}

:root.dark .services-content {
    background: #1e293b;
}

:root.dark .section-title {
    color: #60a5fa;
}

:root.dark .section-subtitle {
    color: #cbd5e1;
}

:root.dark .category-header {
    border-bottom-color: #334155;
}

:root.dark .category-header h2 {
    color: #60a5fa;
}

:root.dark .category-header p {
    color: #cbd5e1;
}

:root.dark .service-card {
    background: #0f172a;
    border-color: #334155;
}

:root.dark .service-card h3 {
    color: #60a5fa;
}

:root.dark .service-card > p {
    color: #cbd5e1;
}

:root.dark .service-benefit {
    background: #1e293b;
}

:root.dark .service-benefit p {
    color: #e2e8f0;
}

:root.dark .service-nav-btn {
    background: #1e293b;
    border-color: #334155;
    color: #e2e8f0;
}

:root.dark .service-nav-btn:hover {
    border-color: #60a5fa;
    color: #60a5fa;
}

:root.dark .service-nav-btn.active {
    background: #60a5fa;
    border-color: #60a5fa;
    color: #0f172a;
}

/* Dark Mode for Modern Section Backgrounds */
:root.dark .story-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

:root.dark .story-section::before {
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(96, 165, 250, 0.05) 35px, rgba(96, 165, 250, 0.05) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(59, 130, 246, 0.05) 35px, rgba(59, 130, 246, 0.05) 70px);
}

:root.dark .story-section .category-header h2 {
    color: #60a5fa;
}

:root.dark .story-section .category-header p {
    color: #cbd5e1;
}

:root.dark .story-section .service-card {
    background: #0f172a;
    border-color: #334155;
}

/* Vision & Mission stays the same in dark mode (already has dark background) */
:root.dark .vision-mission-section {
    /* Keep the animated gradient - it looks great in both modes */
}

:root.dark .values-section {
    background: #0f172a;
}

:root.dark .values-section::before {
    background-image: radial-gradient(circle, rgba(96, 165, 250, 0.08) 1px, transparent 1px);
}

:root.dark .values-section .category-header h2 {
    color: #60a5fa;
}

:root.dark .values-section .category-header p {
    color: #cbd5e1;
}

:root.dark .values-section .service-card {
    background: #1e293b;
    border-color: #334155;
}

/* Impact section already dark, enhance for dark mode */
:root.dark .impact-section {
    background: linear-gradient(135deg, #0f172a 0%, #020617 100%);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

:root.dark .impact-section::before {
    background-image: 
        linear-gradient(30deg, transparent 0%, rgba(251, 191, 36, 0.08) 50%, transparent 100%),
        radial-gradient(circle at 80% 20%, rgba(96, 165, 250, 0.15) 0%, transparent 50%);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
    .header-inner {
        padding: 1rem 1.5rem;
    }

    .hero-content-wrapper {
        gap: 3rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .category-header {
        gap: 1.5rem;
    }

    .category-icon {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    /* Header Responsive */
    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        padding: 2rem;
    }

    .site-nav.open {
        left: 0;
    }

    .site-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .site-nav li {
        border-bottom: 1px solid #f1f5f9;
        padding: 0.5rem 0;
    }

    .site-nav a {
        display: block;
        padding: 0.75rem 0;
    }

    .dropdown {
        position: static;
        box-shadow: none;
        padding-left: 1rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0.5rem;
    }

    .header-actions {
        gap: 0.5rem;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .brand-name {
        font-size: 1.1rem;
    }

    .brand-tagline {
        font-size: 0.7rem;
    }

    .brand-logo {
        width: 40px;
        height: 40px;
    }

    /* Footer Responsive */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .site-footer {
        padding: 2rem 1.5rem 1rem;
    }

    /* Hero Responsive */
    .services-hero {
        margin-top: 70px;
        min-height: auto;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1.5rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    /* Content Responsive */
    .service-grid {
        grid-template-columns: 1fr;
    }

    .category-header {
        flex-direction: column;
        gap: 1rem;
    }

    .category-header h2 {
        font-size: 1.75rem;
    }

    .services-nav {
        gap: 0.5rem;
    }

    .service-nav-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large,
    .btn-outline-light {
        width: 100%;
        max-width: 300px;
    }

    /* Modern Section Backgrounds Responsive */
    .story-section,
    .vision-mission-section,
    .values-section,
    .impact-section {
        padding: 3rem 1.5rem;
        border-radius: 15px;
    }

    .vision-mission-section {
        padding: 4rem 1.5rem;
    }

    .values-section::after {
        font-size: 15rem;
    }
}

@media (max-width: 480px) {
    /* Header Mobile */
    .header-inner {
        padding: 0.75rem 1rem;
    }

    .brand-name {
        font-size: 1rem;
    }

    .brand-tagline {
        font-size: 0.65rem;
    }

    .brand-logo {
        width: 35px;
        height: 35px;
    }

    .btn-outline {
        display: none;
    }

    .site-nav {
        top: 70px;
    }

    /* Dark mode mobile nav */
    :root.dark .site-nav {
        background: #0f172a;
    }

    :root.dark .site-nav li {
        border-bottom-color: #334155;
    }

    /* Hero Mobile */
    .hero-text h1 {
        font-size: 1.75rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    /* Content Mobile */
    .service-card {
        padding: 2rem 1.5rem;
    }

    .category-icon {
        font-size: 2.5rem;
    }

    .category-header h2 {
        font-size: 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    /* Modern Section Backgrounds Mobile */
    .story-section,
    .vision-mission-section,
    .values-section,
    .impact-section {
        padding: 2.5rem 1.25rem;
        border-radius: 12px;
        margin-bottom: 2rem;
    }

    .vision-mission-section {
        padding: 3.5rem 1.25rem;
    }

    .values-section::after {
        font-size: 10rem;
    }

    .story-section::before,
    .values-section::before {
        background-size: 20px 20px;
    }
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
    .services-hero,
    .services-nav,
    .hero-cta,
    .services-cta {
        display: none;
    }

    .service-card {
        page-break-inside: avoid;
        border: 1px solid #ddd;
        box-shadow: none;
    }

    .services-content {
        padding: 2rem 1rem;
    }
}

.multi-displine{
    
    width:200px;
}