/* ============================================
   Root Variables & Reset
   ============================================ */
   :root {
    /* Primary Colors */
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #10b981;
    --secondary-dark: #059669;
    --secondary-new: #00c8a7;
    
    /* Accent Colors */
    --accent-purple: #8b5cf6;
    --accent-pink: #ec4899;
    --accent-orange: #f59e0b;
    
    /* Neutral Colors */
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --gray-light: #cbd5e1;
    --light: #f8fafc;
    --white: #ffffff;
    
    /* Gradients */
    /* --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    --gradient-primary: linear-gradient(135deg, #0374e6 0%, #00c8a7 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    /* --gradient-hero: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%); */
    --gradient-hero: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 { font-size: 4.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

/* ============================================
   Container & Layout
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    padding: var(--spacing-xl) 0;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-brand img {
    height: 90px;
    width: 90px;
    border-radius: 16px;       
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
    transition: transform 0.3s ease;
    padding: 5px;
}

.nav-brand img:hover {
    transform: translateY(-3px) scale(1.05);
}

.nav-brand2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-brand2 img {
    height: 90px;
    width: 90px;
    border-radius: 16px;       
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
    transition: transform 0.3s ease;
    padding: 5px;
}

.nav-brand2 img:hover {
    transform: translateY(-3px) scale(1.05);
}

.nav-brand i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    color: var(--dark);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition-base);
}

.hide-1024
{
    display: none;
}
/* ============================================
   Hero Section
   ============================================ */


   /* .hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
} */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background: var(--gradient-hero),
                url('https://images.unsplash.com/photo-1576086213369-97a306d36557?w=1920&h=1080&fit=crop') center/cover;*/

 background: url('../img/building.jpg') top/cover;
    overflow: hidden;
}


/* .hero-overlay { */
    /* position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; */
    /* background: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(139, 92, 246, 0.9) 100%); */

/*    background: #000;*/

/*    opacity: 0.75;*/

    /*background: url('../img/building.jpg') center/cover;*/

/* } */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(139, 92, 246, 0.9) 100%); */

    background: #000;

    opacity: 0.75;

    /*background: url('../img/building.jpg') center/cover;*/

}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 1000px;
    padding: 0 2rem;
}

.gradient-text {
    background: linear-gradient(135deg, #3385d6 0%, #5efc82 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}


.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
    font-size: 1.25rem;
}

.detail-item {
    /* display: flex;
    align-items: center; */
    gap: 0.5rem;
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.detail-item i {
    color: var(--secondary-dark);
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.25rem;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: var(--transition-base);
    text-align: center;
}

.btn-primary {
    /* background: var(--white); */
    background: var(--gradient-primary);
    /* color: var(--primary-color); */
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ============================================
   Stats Section
   ============================================ */
.stats-section {
    background: var(--white);
    padding: 4rem 0;
    margin-top: -4rem;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50px;
}

.section-title {
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray);
}




/*Latest News Section*/

.latest_news {
    /* background: var(--dark-bg); */
    /* background: #184e77; */
    background: var(--gradient-primary);
    color: var(--white);
}

./*latest_news .section-title,
.latest_news .section-tag {
    color: var(--white);
}

.latest_news .section-description {
    color: rgba(255, 255, 255, 0.8);
}


.news-slider
{
    display: flex;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    gap: 1rem;
}*/


/* ============================================
   Latest News & Updates Section
   ============================================ */
   
.news-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    padding: var(--spacing-xl) 0;
}

.news-section .section-title {
    margin-bottom: 1rem;
}

.highlight-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* News Filter Tabs */
.news-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.news-filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--gray-light);
    background: var(--white);
    color: var(--gray);
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.news-filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.news-filter-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* News Card */
.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    position: relative;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

/* News Badge */
.news-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    letter-spacing: 1px;
}

.editorial-badge {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.social-badge {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* News Image */
.news-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-category {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
}

/* News Content */
.news-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-light);
}

.news-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.news-author img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.news-author span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
}

.news-date {
    font-size: 0.75rem;
    color: var(--gray);
}

.news-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-excerpt {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.news-link:hover {
    gap: 0.75rem;
}

.news-link i {
    transition: var(--transition-base);
}

/* Load More Button */
.news-load-more {
    text-align: center;
    margin-bottom: 2rem;
}

/* News Dots */
.news-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-light);
    cursor: pointer;
    transition: var(--transition-base);
}

.dot:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

.dot.active {
    background: var(--gradient-primary);
    width: 35px;
    border-radius: 10px;
}




/* ============================================
   About Section
   ============================================ */
.about-section {
    background: var(--light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image .image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image ,.image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: fill;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.about-image .image-wrapper:hover .image-overlay {
    opacity: 1;
}

.play-button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.play-button:hover {
    transform: scale(1.1);
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.highlight-item {
    display: flex;
    gap: 1.5rem;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 1.5rem;
}

.highlight-content h4 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.highlight-content p {
    color: var(--gray);
    margin: 0;
}

/* ============================================
   Facilities Section
   ============================================ */
.facilities-section {
    background: var(--white);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.facility-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.facility-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.facility-title {
    margin-bottom: 1rem;
    color: var(--dark);
}

.facility-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.facility-features {
    list-style: none;
}

.facility-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--gray);
}

.facility-features i {
    color: var(--secondary-color);
}

/* ============================================
   Thrust Areas Section
   ============================================ */
.thrust-areas-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.thrust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.thrust-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.thrust-card:hover {
    transform: translateY(-10px) rotate(-1deg);
    box-shadow: var(--shadow-xl);
}

.thrust-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.thrust-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* background: var(--gradient-success); */
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 2rem;
}

.thrust-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.thrust-benefits,
.thrust-equipment {
    margin-bottom: 1.5rem;
}

.thrust-benefits h4,
.thrust-equipment h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.thrust-benefits ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.thrust-benefits li {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* .thrust-benefits li::before {
    content: '';
    color: var(--secondary-color);
    font-weight: 700;
} */

.equipment-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.equipment-tags span {
    padding: 0.5rem 1rem;
    background: var(--light);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--gray);
    border: 1px solid var(--gray-light);
}

.additional-thrust {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.additional-thrust h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.expansion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.expansion-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: var(--light);
    transition: var(--transition-base);
}

.expansion-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.expansion-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    /* color: var(--primary-color); */
    color: var(--secondary-new);
}

.expansion-item:hover i {
    color: var(--white);
}

.expansion-item h4 {
    font-size: 1rem;
    color: var(--dark);
}

.expansion-item:hover h4 {
    color: var(--white);
}

/* ============================================
   BioNEST Section
   ============================================ */
.bionest-section {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    background: var(--gradient-hero);
    color: var(--white);
}

.bionest-header {
    text-align: center;
    margin-bottom: 4rem;
}

.bionest-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.bionest-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.bionest-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.bionest-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.bionest-info h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.bionest-info > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.bionest-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--white);
    /* color: var(--primary-color); */
    color: var(--secondary-new);
    font-size: 1.5rem;
}

.feature-text h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.bionest-image .image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.bionest-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 30px;
    border: 10px solid var(--white);
}

.image-stats {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    display: flex;
    justify-content: space-around;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    /* color: var(--primary-color); */
    color: var(--secondary-new);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray);
}

.bionest-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bionest-cta h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.bionest-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.bionest-cta .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

/* ============================================
   Impact Section
   ============================================ */
.impact-section {
    background: var(--white);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.impact-card {
    background: var(--light);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.impact-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.impact-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.impact-card h3 {
    margin-bottom: 1rem;
}

.impact-card p {
    margin-bottom: 1.5rem;
}

.impact-stats {
    display: flex;
    flex-direction: column;
    padding-top: 1.5rem;
    border-top: 2px solid var(--gray-light);
}

.stat-highlight {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.impact-stats span:last-child {
    color: var(--gray);
    font-size: 0.875rem;
}

/* ============================================
   Partners Section
   ============================================ */
.partners-section {
    background: var(--light);
    padding: 4rem 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.partner-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.partner-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.partner-card i {
    font-size: 3rem;
    color: var(--accent-purple);
    margin-bottom: 1rem;
}

.partner-card img {
    height: 100px;
    width: 100px;
    margin-bottom: 1rem;
}
.partner-card h4 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.partner-card p {
    color: var(--gray);
    margin: 0;
    font-size: 0.9rem;
}


/* Image Slider */


/* .expo-preview2 {
    
    background: var(--gradient-primary);
    color: var(--white);
}

.expo-preview2 .section-title,
.expo-preview2 .section-tag {
    color: var(--white);
}

.expo-preview2 .section-description {
    color: rgba(255, 255, 255, 0.8);
}
        

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slide {
    min-width: calc(33.333% - 1.5rem);
    margin: 1rem 0.75rem;
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    transition: all 0.4s ease;
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.slide:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
} */

/* Lightbox */

/* .lightbox {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    position: relative;
}

.lightbox img {
    width: 100%;
    height: 80vh;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    z-index: 1001;
} */


/* ============================================
   GIMSES Event Photo Gallery Section
   ============================================ */
   .gallery-section {
    background: var(--white);
    
    padding: var(--spacing-xl) 0;
}

/* Gallery Filter Tabs */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.gallery-filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border: 2px solid var(--gray-light);
    background: var(--white);
    color: var(--gray);
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.gallery-filter-btn i {
    font-size: 1rem;
}

.gallery-filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.gallery-filter-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Gallery Item */
.gallery-item {
    display: none;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.15);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.2) 100%);
    opacity: 0;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    color: var(--white);
    transform: translateY(20px);
    transition: var(--transition-base);
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.gallery-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.gallery-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.gallery-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gallery-meta i {
    font-size: 0.875rem;
}

/* Gallery Actions */
.gallery-actions {
    display: flex;
    gap: 1rem;
    transform: translateY(20px);
    transition: var(--transition-base);
}

.gallery-item:hover .gallery-actions {
    transform: translateY(0);
}

.gallery-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    font-size: 1.125rem;
}

.gallery-btn:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Gallery Stats */
.gallery-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    border-radius: var(--radius-lg);
}

.gallery-stat-item {
    text-align: center;
}

.gallery-stat-item .stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.gallery-stat-item .stat-label {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
}

/* Gallery Load More */
.gallery-load-more {
    text-align: center;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    font-size: 1.5rem;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--white);
    color: var(--dark);
    transform: scale(1.1);
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-caption {
    color: var(--white);
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1.125rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    max-width: 600px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}



/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    /* background: var(--white); */
    background: var(--light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 1rem;

}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 1.5rem;
}

.contact-text h4 {
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--gray);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light);
    color: var(--primary-color);
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--light);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-md);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition-base);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--gray);
    transition: var(--transition-base);
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -0.75rem;
    left: 0.75rem;
    font-size: 0.875rem;
    color: var(--primary-color);
    background: var(--white);
    padding: 0 0.5rem;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand i {
    font-size: 2rem;
    color: var(--primary-light);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
}

.footer-section ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-secondary);
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: var(--white);
}

/* ============================================
   Scroll to Top Button
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
    z-index: 999;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.scroll-top.visible {
    display: flex;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

iframe{
    height: 500px;
    width: 600px;
}
/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2rem; }


    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition-base);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }

    .nav-brand .hide-1024
    {
        display: block;
    }

    .nav-brand span
    {
        display: none;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content,
    .bionest-details,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
         /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
    }
    
    .facilities-grid,
    .thrust-grid,
    .impact-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    iframe{
    height: 500px;
    width: 400px;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 4rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.75rem; }

   
    .nav-brand2
    {
        display: none;
    }
    
    
    .hero {
        height: auto;
        min-height: 600px;
        padding: 6rem 0 4rem;
    }

    .hero-content {
    
    padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .facilities-grid,
    .thrust-grid,
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .expansion-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bionest-title {
        font-size: 2rem;
    }
    
    .bionest-subtitle {
        font-size: 1.25rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    iframe{
    width: 400px;
    }

    /* .slide {
            min-width: calc(100% - 1.5rem);
        } */

        .gallery-grid {
            grid-template-columns: 1fr;
        }
        
        .gallery-filters {
            gap: 0.75rem;
        }
        
        .gallery-filter-btn {
            font-size: 0.85rem;
            padding: 0.75rem 1.5rem;
        }
        
        .gallery-stats {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            padding: 2rem;
        }
        
        .lightbox-prev,
        .lightbox-next {
            width: 40px;
            height: 40px;
            font-size: 1.25rem;
        }
        
        .lightbox-close {
            width: 40px;
            height: 40px;
            font-size: 1.25rem;
        }
        

        .contact-info h2 {
   
    text-align: center;

}

.contact-info > p {
   
    text-align: center;
}


.contact-item {
    
    align-items: center;
}



.social-links {
    
    justify-content: center;
}



}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .expansion-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    iframe{
    width: 300px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}


/* Fix horizontal scroll on small screens */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Ensure navbar toggle and scroll-top stay inside viewport */
.nav-toggle,
#scrollTop {
    right: 10px;
    inset-inline-end: 10px; /* for better RTL/LTR handling */
}

/* Optional: handle narrow devices */
@media (max-width: 480px) {
    .nav-toggle {
        right: 8px;
    }
    #scrollTop {
        right: 8px;
        bottom: 12px;
    }
}

/* Prevent any element from breaking layout */
* {
    max-width: 100vw;
}