/* Project Details Page Styles */
.project-details-page {
    background: var(--dark-navy);
    color: var(--text-light);
    min-height: 100vh;
}

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

/* Hero Section */
.project-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, 
                rgba(26, 54, 110, 0.9) 0%, 
                rgba(15, 26, 45, 0.95) 100%),
                url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    position: relative;
    overflow: hidden;
}

.project-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--light-blue);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb .current {
    color: var(--text-gray);
}

.breadcrumb i {
    font-size: 0.7rem;
    color: var(--light-blue-text);
}

.project-header {
    margin-bottom: 60px;
}

.project-badge {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.badge {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.badge.completed {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge.category {
    background: rgba(120, 190, 255, 0.2);
    color: var(--light-blue);
    border: 1px solid rgba(120, 190, 255, 0.3);
}

.project-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
    line-height: 1.2;
}

.project-location {
    align-items: center;
    gap: 10px;
    color: var(--light-blue);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.project-location i {
    font-size: 1.2rem;
}

.project-tagline {
    font-size: 1.3rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: var(--glass-blur);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 190, 255, 0.3);
    box-shadow: var(--shadow-blue);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-blue);
    font-size: 1.5rem;
}

.stat-info h4 {
    font-size: 0.9rem;
    color: var(--light-blue-text);
    margin-bottom: 5px;
    font-weight: 500;
}

.stat-info p {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
}

/* Gallery Section */
.project-gallery {
    padding: 100px 0;
    background: var(--dark-blue-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    background: linear-gradient(to right, var(--light-blue), var(--purple-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    gap: 30px;
}

.main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 600px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.main-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(15, 26, 45, 0.7) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-image:hover .image-overlay {
    opacity: 1;
}

.zoom-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.zoom-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.thumbnail {
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
    transition: var(--transition);
}

.thumbnail.active {
    border-color: var(--light-blue);
    box-shadow: var(--shadow-neon);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail:hover img {
    transform: scale(1.1);
}

.thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(58, 134, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thumbnail:hover::after {
    opacity: 1;
}

/* Project Overview */
.project-overview {
    padding: 100px 0;
    background: var(--dark-navy);
}
.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.overview-main h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 30px;
    background: linear-gradient(to right, var(--light-blue), var(--white));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.overview-text p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.overview-text h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin: 40px 0 20px;
}

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

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-gray);
}

.feature-list i {
    color: var(--light-blue);
    margin-top: 3px;
    flex-shrink: 0;
}

.download-card {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 30px;
    border: 1px solid rgba(120, 190, 255, 0.2);
    box-shadow: var(--shadow-blue);
}

.download-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--light-blue);
}

.download-card h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.download-card p {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.quick-facts {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-facts h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.3rem;
    text-align: center;
}

.facts-grid {
    display: grid;
    gap: 20px;
}

.fact {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fact:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.fact-label {
    color: var(--light-blue-text);
    font-size: 0.9rem;
}

.fact-value {
    color: var(--white);
    font-weight: 500;
}

/* Amenities Section */
.amenities-section {
    padding: 100px 0;
    background: var(--dark-blue-gray);
}

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

.amenity-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.amenity-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(120, 190, 255, 0.3);
    box-shadow: var(--shadow-blue);
}

.amenity-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--light-blue);
}

.amenity-card h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.amenity-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Section */
.project-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, 
                rgba(26, 54, 110, 0.9) 0%, 
                rgba(15, 26, 45, 0.95) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--light-blue), var(--purple-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cta-content p {
    color: var(--text-gray);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: var(--transition);
    min-width: 250px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    background: var(--gradient-primary-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-blue-dark);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: transparent;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 12px;
    border: 2px solid rgba(120, 190, 255, 0.5);
    transition: var(--transition);
    min-width: 250px;
}

.btn-outline:hover {
    background: rgba(120, 190, 255, 0.1);
    border-color: var(--light-blue);
    transform: translateY(-5px);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1200px;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close:hover {
    color: var(--light-blue);
}

/* Responsive Design */
@media (max-width: 992px) {
     .overview-content {
        grid-template-columns: 1fr;
    }
    
    .project-title {
        font-size: 2.8rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .project-title {
        font-size: 2.3rem;
    }
    
    .project-hero {
        padding: 80px 0 40px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .main-image {
        height: 400px;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-outline {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 576px) {
    .project-title {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .tabs-header {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .thumbnail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .overview-content {
        display: none;
        grid-template-columns: 1fr; /* 👈 এক কলাম */
        gap: 0;
    }

}
/* about.css - Advanced About Us Page Design */

/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Colors */
    --dark-navy: #0f1a2d;
    --medium-navy: #1e2a3d;
    --dark-blue-gray: #121928;
    --dark-blue: #2a4a8c;
    --darker-blue: #1a366e;
    --bright-blue: #4a8cff;
    --royal-blue: #2a6eff;
    --light-blue: #78beff;
    --purple-blue: #96aaff;
    
    /* Secondary Colors */
    --primary-blue: #3b82f6;
    --indigo: #6366f1;
    --purple: #8b5cf6;
    --green: #10b981;
    --pink: #ff006e;
    --light-purple: #b4c8ff;
    
    /* Text Colors */
    --white: #ffffff;
    --text-light: #e6f2ff;
    --text-gray: #d1dde8;
    --light-blue-text: #638fcc;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2a4a8c 0%, #1a366e 100%);
    --gradient-primary-hover: linear-gradient(135deg, #4a8cff 0%, #2a6eff 100%);
    --gradient-secondary: linear-gradient(135deg, 
        rgba(120, 190, 255, 0.2) 0%, 
        rgba(150, 170, 255, 0.15) 100%);
    --gradient-text: linear-gradient(90deg, #ffffff, #78beff, #96aaff);
    --gradient-border: linear-gradient(135deg, 
        rgba(120, 190, 255, 0.3), 
        rgba(150, 170, 255, 0.3), 
        rgba(180, 200, 255, 0.3));
    --gradient-stats: linear-gradient(45deg, #3a86ff, #ff006e);
    --gradient-cta: linear-gradient(45deg, #3a86ff, #8338ec);
    
    /* Shadows */
    --shadow-light: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-dark: 0 30px 60px rgba(0, 0, 0, 0.3);
    --shadow-blue: 0 10px 30px rgba(58, 134, 255, 0.3);
    --shadow-blue-dark: 0 20px 50px rgba(58, 134, 255, 0.4);
    --shadow-neon: 0 0 30px rgba(120, 190, 255, 0.3);
    
    /* Effects */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(15px);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ===== ABOUT HERO SECTION - Enhanced with your effects ===== */
.about-hero {
    min-height: 85vh;
    background: 
        linear-gradient(135deg, 
            rgba(15, 26, 45, 0.9) 0%, 
            rgba(30, 42, 61, 0.85) 50%,
            rgba(15, 26, 45, 0.9) 100%),
        url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(120, 190, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(150, 170, 255, 0.1) 0%, transparent 50%);
    animation: gradientShift 8s ease infinite;
}

.hero-content {
    text-align: center;
    margin: 0 auto;
    padding: 60px;
    position: relative;
    z-index: 2;
    background: rgba(18, 25, 40, 0.7);
    backdrop-filter: var(--glass-blur);
    border-radius: 24px;
    border: 1px solid rgba(120, 190, 255, 0.2);
    box-shadow: 
        var(--shadow-dark),
        inset 0 0 60px rgba(120, 190, 255, 0.1),
        0 0 50px rgba(120, 190, 255, 0.2);
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
    position: relative;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    position: relative;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: lineWidth 3s ease-in-out infinite alternate;
}

.highlight {
    color: var(--white);
    font-size: 2.8rem;
    font-weight: 600;
    opacity: 0.9;
    display: block;
    margin-top: 20px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out;
}

.stat-item {
    text-align: center;
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(120, 190, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    min-width: 220px;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-15px);
    border-color: rgba(120, 190, 255, 0.4);
    box-shadow: 
        var(--shadow-blue-dark),
        0 0 30px rgba(120, 190, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
    line-height: 1;
    text-shadow: 0 0 30px rgba(120, 190, 255, 0.3);
    transition: var(--transition);
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    width: 40px;
    height: 60px;
    border: 2px solid rgba(120, 190, 255, 0.5);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.scroll-indicator::before {
    content: '';
    width: 8px;
    height: 15px;
    background: rgba(120, 190, 255, 0.8);
    border-radius: 4px;
    animation: scrollDown 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-15px); }
}

@keyframes scrollDown {
    0% { transform: translateY(0); opacity: 0; }
    50% { transform: translateY(10px); opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}

/* ===== SECTION HEADER - Enhanced with your effects ===== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-header h2 {
    font-size: 3.2rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.section-header h2::before,
.section-header h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--light-blue));
}

.section-header h2::before {
    left: -60px;
    transform: translateY(-50%);
}

.section-header h2::after {
    right: -60px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, var(--light-blue), transparent);
}

.header-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--light-blue), var(--purple-blue));
    margin: 0 auto 20px;
    border-radius: 2px;
    animation: lineWidth 3s ease-in-out infinite alternate;
}

@keyframes lineWidth {
    0% { width: 100px; }
    100% { width: 200px; }
}

@keyframes gradientShift {
    0% { opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { opacity: 0.3; }
}

.section-header p {
    color: var(--text-light);
    opacity: 0.8;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.section-header p::before {
    content: "◆";
    color: var(--light-blue);
    margin-right: 10px;
    animation: sparkle 2s ease-in-out infinite;
}

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

/* ===== COMPANY OVERVIEW - Enhanced with your effects ===== */
.company-overview {
    padding: 120px 0;
    background: var(--dark-navy);
    position: relative;
    overflow: hidden;
}

.company-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(120, 190, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(150, 170, 255, 0.05) 0%, transparent 40%);
    z-index: 1;
}
 .overview-content {
    display: grid;
    gap: 80px;
    align-items: center;
}

.lead-text {
    font-size: 1.5rem;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 500;
    background: linear-gradient(135deg, 
        rgba(120, 190, 255, 0.1) 0%, 
        rgba(150, 170, 255, 0.05) 100%);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(120, 190, 255, 0.2);
    backdrop-filter: blur(10px);
}

.lead-text strong {
    color: var(--light-blue);
    font-weight: 700;
    position: relative;
}

.lead-text strong::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
    position: relative;
}

.description::first-letter {
    font-size: 3rem;
    color: var(--light-blue);
    font-weight: 700;
    float: left;
    line-height: 1;
    margin: 5px 10px 0 0;
    padding: 5px;
    background: rgba(120, 190, 255, 0.1);
    border-radius: 8px;
}

.company-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 20px;
    background: rgba(18, 25, 40, 0.7);
    backdrop-filter: var(--glass-blur);
    border-radius: 16px;
    border: 1px solid rgba(120, 190, 255, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(120, 190, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.detail-item:hover::before {
    left: 100%;
}

.detail-item:hover {
    transform: translateY(-10px);
    background: rgba(18, 25, 40, 0.9);
    border-color: rgba(120, 190, 255, 0.4);
    box-shadow: 
        var(--shadow-blue),
        0 0 30px rgba(120, 190, 255, 0.1);
}

.detail-item i {
    font-size: 2.2rem;
    color: var(--light-blue);
    background: rgba(120, 190, 255, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.detail-item:hover i {
    background: var(--gradient-primary);
    color: var(--white);
    transform: rotateY(180deg);
    border-color: rgba(120, 190, 255, 0.3);
    box-shadow: 0 0 20px rgba(120, 190, 255, 0.3);
}

.detail-item h4 {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 8px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.detail-item p {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 700;
    margin: 0;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.overview-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        var(--shadow-dark),
        0 0 0 1px rgba(120, 190, 255, 0.1),
        inset 0 0 40px rgba(120, 190, 255, 0.1);
    animation: floatAnimation 6s ease-in-out infinite;
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.overview-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: brightness(0.9) contrast(1.1);
}

.overview-image:hover img {
    transform: scale(1.1) rotate(1deg);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(15, 26, 45, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.overview-image:hover .image-overlay {
    opacity: 1;
}

.years-badge {
    background: var(--gradient-primary);
    padding: 25px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        var(--shadow-blue-dark),
        0 0 40px rgba(120, 190, 255, 0.3);
    border: 2px solid rgba(120, 190, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.overview-image:hover .years-badge {
    transform: translateY(0);
}

.years-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(255, 255, 255, 0.1), transparent 30%);
    animation: rotate 4s linear infinite;
}

.years-badge span {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    display: block;
    line-height: 1;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(120, 190, 255, 0.5);
}

.years-badge small {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.9;
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 5px;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

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

/* Add these animations for the about page elements */
.overview-content {
    animation: fadeInUp 1s ease-out;
}

.company-details {
    animation: fadeInUp 1.2s ease-out;
}

.overview-image {
    animation: fadeInUp 1.4s ease-out;
}

/* ===== MISSION & VISION - Enhanced with your effects ===== */
.mission-vision {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        rgba(15, 26, 45, 0.95) 0%, 
        rgba(30, 42, 61, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(120, 190, 255, 0.05) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite alternate;
}

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

.mv-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    position: relative;
    z-index: 2;
}

.mv-card {
    padding: 60px 50px;
    border-radius: 28px;
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(120, 190, 255, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    background: rgba(18, 25, 40, 0.7);
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(120, 190, 255, 0.1) 0%, 
        transparent 50%);
    z-index: 1;
}

.mv-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.mv-card:hover::after {
    transform: scaleX(1);
}

.mv-card:hover {
    transform: translateY(-15px) rotateX(2deg);
    border-color: rgba(120, 190, 255, 0.4);
    box-shadow: 
        var(--shadow-blue-dark),
        0 0 50px rgba(120, 190, 255, 0.2),
        inset 0 0 40px rgba(120, 190, 255, 0.1);
}

.mission-card {
    background: rgba(18, 25, 40, 0.8);
}

.vision-card {
    background: rgba(18, 25, 40, 0.8);
}

.mv-icon {
    width: 100px;
    height: 100px;
    background: rgba(120, 190, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    transition: var(--transition);
    position: relative;
    z-index: 2;
    border: 2px solid transparent;
    box-shadow: 
        inset 0 0 20px rgba(120, 190, 255, 0.2),
        0 0 30px rgba(120, 190, 255, 0.3);
}

.mv-card:hover .mv-icon {
    background: var(--gradient-primary);
    transform: rotateY(360deg) scale(1.1);
    border-color: rgba(120, 190, 255, 0.4);
    box-shadow: 
        inset 0 0 40px rgba(255, 255, 255, 0.1),
        0 0 50px rgba(120, 190, 255, 0.4);
}

.mv-icon i {
    font-size: 3rem;
    color: var(--light-blue);
    transition: var(--transition);
}

.mv-card:hover .mv-icon i {
    color: var(--white);
    transform: scale(1.2);
}

.mv-card h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 800;
    position: relative;
    z-index: 2;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mv-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 35px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
}

.mission-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.mission-features span {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 1rem;
    padding: 12px 20px;
    background: rgba(120, 190, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(120, 190, 255, 0.2);
    transition: var(--transition);
}

.mission-features span:hover {
    background: rgba(120, 190, 255, 0.2);
    transform: translateX(10px);
    border-color: rgba(120, 190, 255, 0.4);
}

.mission-features i {
    color: var(--green);
    font-size: 1.2rem;
    transition: var(--transition);
}

.mission-features span:hover i {
    transform: rotate(20deg) scale(1.2);
}

.vision-goals {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
}

.goal {
    text-align: center;
    padding: 25px 20px;
    background: rgba(120, 190, 255, 0.1);
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid rgba(120, 190, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.goal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(120, 190, 255, 0.05) 0%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.goal:hover::before {
    opacity: 1;
}

.goal:hover {
    background: rgba(120, 190, 255, 0.2);
    transform: translateY(-10px);
    border-color: rgba(120, 190, 255, 0.4);
    box-shadow: 
        var(--shadow-blue),
        0 0 30px rgba(120, 190, 255, 0.1);
}

.goal i {
    font-size: 2.5rem;
    color: var(--light-blue);
    margin-bottom: 15px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.goal:hover i {
    color: var(--white);
    transform: scale(1.3) rotate(10deg);
}

.goal p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
    position: relative;
    z-index: 1;
    line-height: 1.5;
}

/* ===== OUR STORY - Enhanced with your effects ===== */
.our-story {
    padding: 120px 0;
    background: var(--dark-navy);
    position: relative;
    overflow: hidden;
}

.our-story::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(120, 190, 255, 0.1) 0%, transparent 70%);
    animation: floatRight 10s ease-in-out infinite alternate;
}

@keyframes floatRight {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, -50px); }
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(to bottom, 
        var(--light-blue), 
        var(--purple-blue),
        var(--light-blue));
    transform: translateX(-50%);
    border-radius: 3px;
    box-shadow: 
        0 0 20px rgba(120, 190, 255, 0.3),
        inset 0 0 10px rgba(255, 255, 255, 0.1);
    animation: timelineGlow 3s ease-in-out infinite alternate;
}

@keyframes timelineGlow {
    0% { box-shadow: 0 0 20px rgba(120, 190, 255, 0.3); }
    100% { box-shadow: 0 0 40px rgba(120, 190, 255, 0.5); }
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    width: 50%;
    padding-right: 60px;
    animation: slideInLeft 0.8s ease-out forwards;
    opacity: 0;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 60px;
    animation: slideInRight 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-year {
    position: absolute;
    top: 0;
    right: -130px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 40px;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 
        var(--shadow-blue-dark),
        0 0 30px rgba(120, 190, 255, 0.3);
    z-index: 2;
    border: 2px solid rgba(120, 190, 255, 0.3);
    min-width: 120px;
    text-align: center;
    transition: var(--transition);
}

.timeline-year:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 
        var(--shadow-blue-dark),
        0 0 50px rgba(120, 190, 255, 0.4);
}

.timeline-item:nth-child(even) .timeline-year {
    right: auto;
    left: -130px;
}

.timeline-content {
    background: rgba(18, 25, 40, 0.8);
    backdrop-filter: var(--glass-blur);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(120, 190, 255, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(120, 190, 255, 0.05) 0%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.timeline-item:hover .timeline-content::before {
    opacity: 1;
}

.timeline-item:hover .timeline-content {
    border-color: rgba(120, 190, 255, 0.4);
    transform: translateY(-10px);
    box-shadow: 
        var(--shadow-blue-dark),
        0 0 40px rgba(120, 190, 255, 0.2),
        inset 0 0 30px rgba(120, 190, 255, 0.1);
}

.timeline-content h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 800;
    position: relative;
    z-index: 1;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.8;
    opacity: 0.9;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.timeline-icon {
    position: absolute;
    top: 0;
    right: -53px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 
        var(--shadow-blue),
        0 0 20px rgba(120, 190, 255, 0.3);
    border: 2px solid rgba(120, 190, 255, 0.4);
    transition: var(--transition);
}

.timeline-icon:hover {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 
        var(--shadow-blue-dark),
        0 0 40px rgba(120, 190, 255, 0.4);
}

.timeline-item:nth-child(even) .timeline-icon {
    right: auto;
    left: -53px;
}

.timeline-icon i {
    color: var(--white);
    font-size: 1.4rem;
    transition: var(--transition);
}

.timeline-icon:hover i {
    transform: scale(1.2);
}

/* Add scroll reveal animation for timeline */
.timeline-item.scroll-reveal {
    opacity: 0;
    transform: translateX(-100px);
}

.timeline-item.scroll-reveal:nth-child(even) {
    transform: translateX(100px);
}

.timeline-item.scroll-reveal.visible {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}