/* Hero Section with Video */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.video-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    text-align: center;
    padding: 0 20px;
    color: white;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

/* Enhanced Stats Section */
.stats-section {
    background: var(--gradient);
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png');
    opacity: 0.08;
    animation: backgroundShift 20s linear infinite;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 4rem 2rem;
    border-radius: 30px;
    text-align: center;
    color: white;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
    transform: translateY(100%);
    transition: transform 0.6s ease;
}

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

.stat-card:hover::before {
    transform: translateY(0);
}

.stat-card i {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--secondary);
    background: rgba(255, 255, 255, 0.1);
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    display: inline-block;
    transition: transform 0.4s ease;
}

.stat-card:hover i {
    transform: rotateY(360deg);
}
.stat-number {
    position: relative;
    font-size: 4rem;
    font-weight: 800;
    margin: 1.5rem 0;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.stat-number .counter {
    color: white;
    font-size: 4rem;
    font-weight: 800;
}

.stat-number span {
    color: white;
    font-size: 4rem;
    font-weight: 800;
}
.stat-card p {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    opacity: 0.9;
}

@keyframes backgroundShift {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

@media screen and (max-width: 1200px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .stat-card {
        padding: 3rem 2rem;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
}


/* Services Showcase Section */
.services-showcase {
    padding: 8rem 5%;
    background: linear-gradient(to bottom, #fff, var(--light));
    position: relative;
    overflow: hidden;
}

.services-showcase::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: var(--gradient);
    border-radius: 50%;
    opacity: 0.03;
    top: -400px;
    left: -400px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 4rem auto 0;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.service-box {
    background: white;
    border-radius: 25px;
    padding: 3.5rem 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    transform: rotate(-10deg);
    transition: transform 0.4s ease;
}

.service-box:hover .service-icon {
    transform: rotate(0deg);
}
.service-icon i {
    font-size: 2.5rem;
    color: white;
}

.service-box h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-box {
    position: relative;
    cursor: pointer;
}

.service-box p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-hover {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.service-box:hover .service-hover {
    opacity: 1;
    transform: translateY(0);
}

.service-hover ul {
    margin: 2rem 0;
}

.service-hover li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.1rem;
}

.service-hover li i {
    color: var(--primary);
    font-size: 1.2rem;
}

.explore-btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.explore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

@media screen and (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}
/* Awards Section */
.awards-section {
    padding: 8rem 5%;
    background: linear-gradient(to bottom right, var(--light) 60%, rgba(46, 204, 113, 0.1));
    position: relative;
    overflow: hidden;
}

.awards-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--gradient);
    border-radius: 50%;
    opacity: 0.05;
    top: -300px;
    right: -300px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    max-width: 1400px;
    margin: 4rem auto 0;
    padding: 0 1rem;
}

.award-card {
    background: white;
    border-radius: 25px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

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

.award-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

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

.award-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.award-icon::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border: 2px dashed var(--primary);
    border-radius: 50%;
    animation: spin 20s linear infinite;
}

.award-icon i {
    font-size: 3rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.award-year {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.award-card h3 {
    color: var(--dark);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.award-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.award-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--secondary);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

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

@media screen and (max-width: 768px) {
    .awards-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .award-card {
        padding: 3rem 2rem;
    }
}

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

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

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

/* Media Queries */
@media screen and (max-width: 992px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 80px;
    }
    
    .timeline-item:nth-child(odd) {
        justify-content: flex-end;
    }
    
    .timeline-date {
        left: 0;
        top: -40px;
        width: auto;
    }
    
    .timeline-content::before {
        left: -45px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before {
        right: auto;
        left: -45px;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}


.reach-section {
    padding: 8rem 5%;
    background: linear-gradient(to bottom, var(--light), #fff);
    position: relative;
    overflow: hidden;
}

.reach-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

#map {
    height: 600px;
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    z-index: 1;
    background: #ffffff;
}

#map:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}
.partners-section {
    padding: 8rem 5%;
    background: linear-gradient(to bottom, #fff, var(--light));
    position: relative;
    overflow: hidden;
}

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

.partner-card {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.partner-card:hover {
    transform: translateY(-15px);
}

.partner-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.partner-logo img {
    max-height: 100%;
    max-width: 80%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.partner-card:hover .partner-logo img {
    transform: scale(1.1);
}

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

.partner-hover {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.partner-card:hover .partner-hover {
    opacity: 1;
    transform: translateY(0);
}

@media screen and (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

.partners-section {
    padding: 8rem 5%;
    background: linear-gradient(to bottom, #fff, var(--light));
    position: relative;
    overflow: hidden;
}

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

.partner-card {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.partner-card:hover {
    transform: translateY(-15px);
}

.partner-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.partner-logo img {
    max-height: 100%;
    max-width: 80%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.partner-card:hover .partner-logo img {
    transform: scale(1.1);
}

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

.partner-hover {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.partner-card:hover .partner-hover {
    opacity: 1;
    transform: translateY(0);
}

@media screen and (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
}
.presence-section {
    padding: 8rem 5%;
    background: var(--light);
}

.reach-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.reach-map {
    position: relative;
    margin-bottom: 2rem;
}

.reach-map img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

@media screen and (max-width: 768px) {
    .presence-section {
        padding: 4rem 5%;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
}
