/* Global Variables & Reset */
:root {
    --primary-blue: #0ea5e9;
    --prominent-blue: #0284c7;
    --dark-blue: #0c4a6e;
    --primary-green: #10b981;
    --dark-green: #047857;
    --text-color: #334155;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --footer-bg: #0f172a;
    --max-width: 1200px;
    --header-height: 80px;
    --transition: all 0.3s ease;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: var(--prominent-blue);
    color: var(--white);
    box-shadow: 0 4px 6px -1px rgba(2, 132, 199, 0.3);
}

.btn-primary:hover {
    background: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(2, 132, 199, 0.4);
}

.btn-secondary {
    background: var(--primary-green);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
}

.btn-text {
    color: var(--prominent-blue);
    font-weight: 600;
}

.btn-text:hover {
    text-decoration: underline;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-green);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-title p {
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Animations */
.fade-in-up,
.fade-in-left,
.fade-in-right,
.zoom-in {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, transform;
}

.fade-in-up {
    transform: translateY(40px);
}

.fade-in-left {
    transform: translateX(-40px);
}

.fade-in-right {
    transform: translateX(40px);
}

.zoom-in {
    transform: scale(0.9);
}

.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Stagger Delays */
.stagger-1 {
    transition-delay: 100ms;
}

.stagger-2 {
    transition-delay: 200ms;
}

.stagger-3 {
    transition-delay: 300ms;
}

.stagger-4 {
    transition-delay: 400ms;
}

.stagger-5 {
    transition-delay: 500ms;
}

/* Header */
#header {
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
    background: var(--white);
    position: sticky;
    top: 0;
}

/* #header.fixed removed as we use sticky */

.top-bar {
    background: var(--dark-blue);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    color: var(--primary-green);
    margin-right: 5px;
}

.social-links a {
    color: var(--white);
    margin-left: 15px;
    opacity: 0.8;
}

.social-links a:hover {
    opacity: 1;
    color: var(--primary-green);
}

.main-nav {
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 60px;
    /* Adjusted heigth for header */
    width: auto;
    display: block;
}

/* 
.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
}
.logo h1 span {
    color: var(--primary-green);
} 
*/

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--prominent-blue);
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--prominent-blue);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow);
    z-index: 1000;
    top: 100%;
    left: 0;
    padding: 10px 0;
    border-radius: 0 0 5px 5px;
    list-style: none;
}

.dropdown-content li {
    margin: 0;
}

.dropdown-content li a {
    color: var(--text-color);
    padding: 12px 20px;
    display: block;
    font-size: 0.95rem;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.dropdown-content li a::after {
    display: none;
}

.dropdown-content li a:hover {
    background-color: var(--light-bg);
    color: var(--primary-blue);
    padding-left: 25px;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow);
    z-index: 1000;
    top: 100%;
    left: 0;
    padding: 10px 0;
    border-radius: 0 0 5px 5px;
    list-style: none;
    /* Ensure no bullets */
}

.dropdown-content li {
    margin: 0;
}

.dropdown-content li a {
    color: var(--text-color);
    padding: 12px 20px;
    /* Adjust padding */
    display: block;
    font-size: 0.95rem;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.dropdown-content li a::after {
    display: none;
    /* Remove underline from dropdown items */
}

.dropdown-content li a:hover {
    background-color: var(--light-bg);
    color: var(--primary-blue);
    padding-left: 25px;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

#mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark-blue);
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: var(--white);
    z-index: 1002;
    padding: 20px;
    transition: var(--transition);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.mobile-nav-links li {
    margin-bottom: 15px;
}

.mobile-nav-links a {
    display: block;
    font-size: 1.1rem;
    color: var(--dark-blue);
    font-weight: 500;
}

/* Page Headers */
.page-header {
    background-image: linear-gradient(rgba(12, 74, 110, 0.8), rgba(12, 74, 110, 0.8)), url('https://images.unsplash.com/photo-1516549655169-df83a0774514?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
    margin-bottom: 0;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.breadcrumb {
    font-size: 1rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--white);
}

.breadcrumb a:hover {
    color: var(--primary-green);
}


/* Hero Slider */
.hero-slider {
    position: relative;
    height: 800px;
    overflow: hidden;
    background: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.slide-btns {
    display: flex;
    gap: 15px;
}

.slider-controls button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-controls button:hover {
    background: var(--prominent-blue);
}

#prev-slide {
    left: 20px;
}

#next-slide {
    right: 20px;
}

/* Info Bar */
.info-bar {
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-top: -50px;
    position: relative;
    z-index: 10;
    border-radius: 8px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.info-item {
    display: flex;
    align-items: center;
    padding: 30px;
    border-right: 1px solid #eee;
}

.info-item:last-child {
    border-right: none;
}

.info-item i {
    font-size: 2.5rem;
    color: var(--prominent-blue);
    margin-right: 20px;
}

.info-text h3 {
    font-size: 1.2rem;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.info-text p {
    font-size: 0.9rem;
    color: #64748b;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.exp-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--prominent-blue);
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 10px 20px rgba(2, 132, 199, 0.4);
}

.exp-badge span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.sub-title {
    color: var(--prominent-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content p {
    color: #64748b;
    margin-bottom: 20px;
}

.feature-list {
    margin-bottom: 30px;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: var(--dark-blue);
    font-weight: 500;
}

.feature-list i {
    color: var(--primary-green);
    margin-right: 10px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .services-page-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--prominent-blue);
}

.service-card .icon {
    width: 80px;
    height: 80px;
    background: #e0f2fe;
    color: var(--prominent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:hover .icon {
    background: var(--prominent-blue);
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.service-card p {
    color: #64748b;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.read-more {
    color: var(--prominent-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover i {
    margin-left: 10px;
}

/* Parallax Section */
.parallax-section {
    background-image: url('https://images.unsplash.com/photo-1579684385136-137af75461bb?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 74, 110, 0.85);
}

.parallax-content {
    position: relative;
    z-index: 1;
}

.parallax-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.parallax-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.call-btn {
    font-size: 1.2rem;
    padding: 15px 40px;
}

/* Events Section */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.event-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.event-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-green);
    color: var(--white);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    min-width: 60px;
}

.event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.event-details {
    padding: 25px;
}

.event-details h3 {
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.event-details p {
    color: #64748b;
    margin-bottom: 20px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.event-details p i {
    color: var(--prominent-blue);
    margin-right: 8px;
}

/* Contact Page specific */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--prominent-blue);
    background: var(--white);
    outline: none;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.c-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.c-item i {
    font-size: 1.5rem;
    color: var(--white);
    background: var(--prominent-blue);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.c-item h4 {
    font-size: 1.2rem;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.c-item p {
    color: #64748b;
}

/* Careers */
.job-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    border-left: 5px solid var(--prominent-blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.job-card:hover {
    transform: translateX(10px);
}

.job-info h3 {
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.job-meta span {
    margin-right: 20px;
    color: #64748b;
    font-size: 0.9rem;
}

.job-meta i {
    margin-right: 5px;
    color: var(--primary-green);
}


/* Footer */
.footer {
    background: var(--footer-bg);
    color: #cbd5e1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-widget h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: var(--primary-green);
}

.footer-widget p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul li a {
    transition: var(--transition);
}

.footer-widget ul li a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: start;
}

.contact-list i {
    color: var(--primary-green);
    margin-right: 15px;
    margin-top: 5px;
}

.footer-bottom {
    background: #020617;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive */
@media (max-width: 1024px) {
    .slide-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 900px) {
    .header-cta {
        display: none;
    }

    .nav-links {
        display: none;
    }

    #mobile-menu-btn {
        display: block;
    }

    .about-grid,
    .footer-grid,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-item {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .slide-content {
        text-align: center;
        margin: 0 auto;
    }

    .slide-btns {
        justify-content: center;
    }

    .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .section-title h2 {
        font-size: 2rem;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .parallax-content h2 {
        font-size: 2.2rem;
    }

    .top-bar {
        display: none;
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.lightbox-close:hover {
    transform: rotate(90deg);
    color: var(--primary-green);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}