:root {
    --primary: #0A2540;
    --secondary: #FF6B35;
    --accent: #00D4FF;
    --text: #1A1A1A;
    --light: #F5F7FA;
    --white: #FFFFFF;
    --gradient-1: linear-gradient(135deg, #0A2540 0%, #1E3A5F 100%);
    --gradient-2: linear-gradient(135deg, #FF6B35 0%, #FF8C61 100%);
    --gradient-3: linear-gradient(135deg, #00D4FF 0%, #0099CC 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    background: var(--white);
    line-height: 1.6;
}
.logo img
{
   position: absolute;
    height: 115px;
    margin-top: -41px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 17rem 20px 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Space Mono', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Slider */
.hero-slider {
    margin-top: 90px;
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Professional Banner Backgrounds with SVG Patterns */
.slide-bg-1 {
    background: 
        linear-gradient(135deg, rgba(10, 37, 64, 0.7) 0%, rgba(30, 58, 95, 0.8) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><defs><linearGradient id="bg1" x1="0%25" y1="0%25" x2="100%25" y2="100%25"><stop offset="0%25" style="stop-color:%230A2540"/><stop offset="100%25" style="stop-color:%231E3A5F"/></linearGradient></defs><rect width="1920" height="1080" fill="url(%23bg1)"/><circle cx="1600" cy="300" r="400" fill="%23FF6B35" opacity="0.15"/><circle cx="400" cy="800" r="350" fill="%2300D4FF" opacity="0.12"/><rect x="200" y="200" width="100" height="680" fill="%2300D4FF" opacity="0.03"/><rect x="400" y="200" width="100" height="680" fill="%2300D4FF" opacity="0.03"/><rect x="600" y="200" width="100" height="680" fill="%2300D4FF" opacity="0.03"/></svg>');
    background-size: cover;
    background-position: center;
}

.slide-bg-2 {
    background: 
        linear-gradient(135deg, rgba(10, 37, 64, 0.7) 0%, rgba(30, 58, 95, 0.8) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><defs><linearGradient id="bg2" x1="0%25" y1="0%25" x2="100%25" y2="100%25"><stop offset="0%25" style="stop-color:%231E3A5F"/><stop offset="100%25" style="stop-color:%230A2540"/></linearGradient></defs><rect width="1920" height="1080" fill="url(%23bg2)"/><circle cx="1500" cy="200" r="500" fill="%2300D4FF" opacity="0.1"/><circle cx="300" cy="900" r="400" fill="%23FF6B35" opacity="0.08"/><path d="M0,0 L1920,1080 M0,200 L1720,1080 M200,0 L1920,880" stroke="%2300D4FF" stroke-width="2" opacity="0.05"/></svg>');
    background-size: cover;
    background-position: center;
}

.slide-bg-3 {
    background: 
        linear-gradient(135deg, rgba(10, 37, 64, 0.7) 0%, rgba(30, 58, 95, 0.8) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><defs><linearGradient id="bg3" x1="0%25" y1="0%25" x2="100%25" y2="100%25"><stop offset="0%25" style="stop-color:%230D2C4A"/><stop offset="50%25" style="stop-color:%230A2540"/><stop offset="100%25" style="stop-color:%231E3A5F"/></linearGradient></defs><rect width="1920" height="1080" fill="url(%23bg3)"/><circle cx="400" cy="900" r="450" fill="%2300D4FF" opacity="0.12"/><circle cx="1700" cy="200" r="300" fill="%23FF6B35" opacity="0.1"/><rect x="800" y="100" width="4" height="880" fill="%2300D4FF" opacity="0.08"/><rect x="1000" y="100" width="4" height="880" fill="%2300D4FF" opacity="0.08"/><rect x="1200" y="100" width="4" height="880" fill="%2300D4FF" opacity="0.08"/></svg>');
    background-size: cover;
    background-position: center;
}

.slide-bg-4 {
    background: 
        linear-gradient(135deg, rgba(10, 37, 64, 0.7) 0%, rgba(30, 58, 95, 0.8) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><defs><linearGradient id="bg4" x1="0%25" y1="0%25" x2="100%25" y2="100%25"><stop offset="0%25" style="stop-color:%231E3A5F"/><stop offset="70%25" style="stop-color:%230A2540"/></linearGradient></defs><rect width="1920" height="1080" fill="url(%23bg4)"/><circle cx="960" cy="540" r="550" fill="%2300D4FF" opacity="0.08"/><path d="M0,540 L1920,540 M960,0 L960,1080" stroke="%23FF6B35" stroke-width="3" opacity="0.1"/><rect x="100" y="100" width="1720" height="880" fill="none" stroke="%2300D4FF" stroke-width="4" opacity="0.06" rx="20"/></svg>');
    background-size: cover;
    background-position: center;
}

.slide-bg-5 {
    background: 
        linear-gradient(135deg, rgba(10, 37, 64, 0.7) 0%, rgba(30, 58, 95, 0.8) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><defs><linearGradient id="bg5" x1="0%25" y1="0%25" x2="100%25" y2="100%25"><stop offset="0%25" style="stop-color:%230A2540"/><stop offset="50%25" style="stop-color:%230D2C4A"/><stop offset="100%25" style="stop-color:%231E3A5F"/></linearGradient></defs><rect width="1920" height="1080" fill="url(%23bg5)"/><circle cx="1650" cy="900" r="500" fill="%23FF6B35" opacity="0.1"/><circle cx="250" cy="200" r="350" fill="%2300D4FF" opacity="0.1"/><path d="M0,0 L100,100 M200,0 L300,100 M400,0 L500,100 M600,0 L700,100 M800,0 L900,100 M1000,0 L1100,100 M1200,0 L1300,100 M1400,0 L1500,100 M1600,0 L1700,100 M1800,0 L1900,100" stroke="%2300D4FF" stroke-width="2" opacity="0.04" transform="scale(2)"/></svg>');
    background-size: cover;
    background-position: center;
}

.slide-bg-6 {
    background: 
        linear-gradient(135deg, rgba(10, 37, 64, 0.7) 0%, rgba(30, 58, 95, 0.8) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><defs><linearGradient id="bg6" x1="0%25" y1="0%25" x2="100%25" y2="100%25"><stop offset="0%25" style="stop-color:%231E3A5F"/><stop offset="100%25" style="stop-color:%230A2540"/></linearGradient><radialGradient id="glow" cx="80%25" cy="30%25"><stop offset="0%25" style="stop-color:%2300D4FF;stop-opacity:0.15"/><stop offset="100%25" style="stop-color:%2300D4FF;stop-opacity:0"/></radialGradient></defs><rect width="1920" height="1080" fill="url(%23bg6)"/><rect width="1920" height="1080" fill="url(%23glow)"/><circle cx="400" cy="300" r="450" fill="%23FF6B35" opacity="0.12"/><circle cx="1600" cy="850" r="350" fill="%2300D4FF" opacity="0.1"/></svg>');
    background-size: cover;
    background-position: center;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.3; 
    }
    50% { 
        transform: scale(1.2); 
        opacity: 0.5; 
    }
}

.slide-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.2);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 8rem;
}

.slide-text {
    max-width: 750px;
    color: var(--white);
}

.slide-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.slide-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0.95;
}

.slider-controls {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 3rem;
    z-index: 3;
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255, 107, 53, 0.9);
    border-color: rgba(255, 107, 53, 1);
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: var(--white);
    width: 40px;
    border-radius: 6px;
}

/* Tagline Section */
.tagline-section {
    background: var(--gradient-2);
    padding: 3rem 0;
    text-align: center;
    color: var(--white);
}

.tagline {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.tagline-desc {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-family: 'Outfit', sans-serif;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-2);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

/* Stats Section */
.stats {
    background: var(--light);
    padding: 5rem 3rem;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 500;
}

/* Quick About Section */
.quick-about {
    padding: 6rem 3rem;
    background: var(--white);
}

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

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-box {
    background: var(--light);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--secondary);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-box h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Services Overview */
.services-overview {
    padding: 2rem 3rem;
    background: var(--light);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-weight: 300;
}

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

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

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

.service-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.service-link:hover {
    color: var(--primary);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-1);
    padding: 6rem 3rem;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Page Header */
.page-header {
    background: var(--gradient-1);
    padding: 8rem 3rem 4rem;
    text-align: center;
    color: var(--white);
    margin-top: 90px;
}

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-header p {
    font-size: 1.4rem;
    opacity: 0.9;
}

/* About Page Styles */
.about-section {
    padding: 6rem 3rem;
}

.about-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

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

.lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #555;
}

.about-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.detail-card {
    background: var(--light);
    padding: 3rem;
    border-radius: 20px;
}

.detail-card h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.detail-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.detail-card ul {
    list-style: none;
    margin: 1.5rem 0;
}

.detail-card li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #555;
}

.detail-card li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* Mission & Vision */
.mission-vision {
    background: var(--light);
    padding: 6rem 3rem;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.mv-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.mv-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.mv-card h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.mv-list {
    list-style: none;
}

.mv-list li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.mv-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.5rem;
}

/* Core Values */
.core-values {
    padding: 6rem 3rem;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.value-card {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

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

.value-card p {
    color: #555;
    line-height: 1.7;
}

/* Why Choose Us */
.why-choose {
    background: var(--light);
    padding: 6rem 3rem;
}

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

.feature-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-item p {
    color: #555;
    line-height: 1.7;
}

/* Service Detail Pages */
.service-detail {
    padding: 4rem 3rem;
}

.service-detail.alt-bg {
    background: var(--light);
}

.service-detail-content {
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-header {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.service-icon-large {
    font-size: 5rem;
    flex-shrink: 0;
}

.service-detail-header h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.service-list h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.two-column-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.service-list ul {
    list-style: none;
}

.service-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #555;
}

.service-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.service-description {
    margin-top: 3rem;
    background: var(--light);
    padding: 2.5rem;
    border-radius: 16px;
}

.service-description h4 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

/* Quality Page */
.quality-intro {
    padding: 4rem 3rem;
    background: var(--white);
}

.quality-intro-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.quality-badge {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--light);
    padding: 2rem 3rem;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.badge-icon {
    font-size: 4rem;
}

.badge-text h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.badge-text p {
    color: #666;
    font-size: 1.1rem;
}

.quality-section {
    padding: 4rem 3rem;
    background: var(--white);
}

.quality-section.alt-bg {
    background: var(--light);
}

.quality-card {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.quality-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--secondary);
}

.quality-icon {
    font-size: 3rem;
}

.quality-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
}

.policy-list {
    list-style: none;
}

.policy-list li {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid #E0E0E0;
}

.policy-list li:last-child {
    border-bottom: none;
}

.policy-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    opacity: 0.3;
    flex-shrink: 0;
}

.policy-text strong {
    font-size: 1.3rem;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.policy-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.objectives-list {
    list-style: none;
}

.objectives-list li {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #E0E0E0;
}

.objectives-list li:last-child {
    border-bottom: none;
}

.objective-icon {
    font-size: 2rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.objective-text h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.objective-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.kpi-intro {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.kpi-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.kpi-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.kpi-card h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.kpi-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.kpi-additional {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.kpi-additional h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin: 0.5rem 0;
}

.accreditation-section {
    padding: 6rem 3rem;
    background: var(--white);
}

.accreditation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.accred-card {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 16px;
}

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

.accred-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.director-section {
    padding: 4rem 3rem;
    background: var(--light);
}

.director-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.director-card h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.director-name {
    font-size: 1.5rem;
    color: var(--text);
    margin: 1rem 0;
}

.director-title {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.doc-ref {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

/* Contact Page */
.contact-page {
    padding: 6rem 3rem;
}

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

.contact-info-section h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-icon-box {
    flex-shrink: 0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.contact-details h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.contact-details a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--primary);
}

.business-hours {
    background: var(--light);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.business-hours h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.business-hours p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.form-container {
    background: var(--light);
    padding: 3rem;
    border-radius: 20px;
}

.form-container h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.form-container > p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 2rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: var(--white);
}

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

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

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.map-section {
    padding: 6rem 3rem;
    background: var(--light);
}

.map-section h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 3rem;
}

.text-center {
    text-align: center;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.quick-contact {
    padding: 6rem 3rem;
    background: var(--white);
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.quick-card {
    text-align: center;
    background: var(--light);
    padding: 3rem 2rem;
    border-radius: 16px;
    transition: all 0.3s;
}

.quick-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.quick-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.quick-card h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.quick-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

.quick-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 3rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: 'Space Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

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

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

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

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

.footer-section p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    opacity: 0.7;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .two-column-list {
        grid-template-columns: 1fr;
    }

    .about-details {
        grid-template-columns: 1fr;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 0;
    }

    .nav-links a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--light);
    }

    .nav-links a::after {
        display: none;
    }

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

    .slide-content {
        padding: 0 4rem;
    }

    .slide-text {
        max-width: 100%;
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .slide-description {
        font-size: 1.1rem;
    }

    .slider-controls {
        padding: 0 1rem;
    }

    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .page-header {
        padding: 6rem 1.5rem 3rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-header {
        flex-direction: column;
    }

    .service-icon-large {
        font-size: 4rem;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .tagline {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .slide-content {
        padding: 0 3rem;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-description {
        font-size: 1rem;
    }

    .slider-controls {
        padding: 0 0.5rem;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
