* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #0000001f;
}

:root {
    --mobile-h2-font-size: 2.2rem;
    --dekstop-h2-fontsize: 3rem;
}


hr {
    background-color: black;
    height: 2px;
    width: 80%;
    margin: 0px auto;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    color: black;
}


.navbar-logo img {
    height: 90px;
}



.navbar-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-links li {
    margin: 0 2vw;
    position: relative;
}

.navbar-links a {
    color: black;
    text-decoration: none;
    font-size: 1.1vw;
    display: block;
}


.dropdown {
    position: relative;
}

.dropbtn {
    display: flex;
    align-items: center;
    font-size: 16px;
}

.arrow {
    margin-left: 8px;
    font-size: 12px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgb(85, 85, 197);
    min-width: 190px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 122222;
}

.dropdown-content a {
    color: white;
    text-decoration: none;
    padding: 12px 16px;
    display: block;
}

.dropdown-content a:hover {
    background-color: rgb(125, 136, 236);
    color: rgb(255, 255, 255);
}

.contact-us {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 20px;
    background-color: #ffffff;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 30px auto;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    gap: 20px; /* Add gap between columns */
}

.contact-us:hover {
    background-color: #777;
}

.menu-icon {
    display: none;
    background-color: transparent;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

.sidebar {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    background-color: rgb(85, 85, 197);
    padding-top: 60px;
    transition: 0.3s;
    z-index: 1000000;
    overflow-x: hidden;
    backdrop-filter: blur(10px);
}

.sidebar a {
    padding: 10px 15px;
    text-decoration: none;
    font-size: 18px;
    color: white;
    display: block;
}

.sidebar a:hover {
    background-color: white;
    color: rgb(85, 85, 197);

}

.dropdown-sidebar {
    position: relative;
}

.dropbtn-sidebar {
    background-color: rgb(85, 85, 197);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
}

.dropdown-content-sidebar {
    display: none;
    overflow: hidden;
    border-radius: 8px;
    background-color: rgb(85, 85, 197);
    transition: max-height 0.3s ease-out;
    max-height: 0;
    /* Initially collapsed */
}

.dropdown-content-sidebar.show {
    display: block;
    max-height: 300px;
    /* Adjust based on content */
}

.dropdown-content-sidebar a {
    color: white;
    text-decoration: none;
    padding: 12px 16px;
    display: block;
}

.dropdown-content-sidebar a:hover {
    background-color: white;
    color: rgb(85, 85, 197);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 46px;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
}

@media (max-width: 1218px) {
    .navbar-links {
        display: none;
    }

    .contact-us {
        display: none;
    }

    .menu-icon {
        display: block;
        color: black;
        font-size: 50px;
        border-radius: 40px;
    }

    .sidebar {
        display: block;
        width: 0;
    }

    .sidebar.active {
        width: 250px;
    }
}


.hero-section {
    position: relative;
    width: 100%;
    height: 60vh;
    background: url('Hero-img.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;

}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 32, 65, 0.733);
    z-index: 1;
    overflow: hidden;
}

span {
    color: #FF9534;
}

.arrow {
    color: black;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    width: 60%;
    margin-top: 0px;
}


.hero-content h1 {
    font-size: 2.8rem;
    margin: 0;
}

.hero-content p {
    font-size: 1.4rem;
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.938);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-content {
        width: 80%;
    }
}

@media (max-width: 1080px) {

    .hero-section {
        position: relative;
        width: 100%;
        height: 60vh;
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        padding: 20px;
        width: 100%;
        margin-top: 30px;
    }
}

/* News Ticker */
/* Ticker Styles - Compact Height Version */
.mission-sectiont {
    padding: 5px 0; 
    margin-bottom: 0;
    background-color: transparent;
    width: 100%;
}

.ticker-fullwidth-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.ticker-container {
    background: linear-gradient(135deg, #2c3e50 0%, #1a1a2e 100%);
    border-radius: 30px; /* Reduced from 50px */
    padding: 8px 25px;   /* Reduced vertical padding */
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
    width: 95%;
    margin: 0 auto;
    height: 50px; /* Fixed height */
}

.ticker-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
    height: 100%;
}

.ticker {
    display: flex;
    align-items: center;
    animation: ticker-scroll 35s linear infinite;
    white-space: nowrap;
    width: max-content;
    height: 100%;
}

.ticker:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: flex;
    align-items: center;
    margin-right: 30px; /* Reduced spacing */
    color: #f5f7fa;
    font-weight: 500;
    font-size: 0.95rem; /* Slightly smaller font */
    flex-shrink: 0;
    padding: 5px 12px;  /* Reduced padding */
    background: rgba(255,255,255,0.08);
    border-radius: 20px; /* Reduced from 25px */
    transition: all 0.3s ease;
    height: 34px; /* Fixed item height */
}

.ticker-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.ticker-bullet {
    color: #4ecdc4;
    margin-right: 10px; /* Reduced spacing */
    font-size: 0.5rem; /* Smaller bullet */
    filter: drop-shadow(0 0 2px rgba(78, 205, 196, 0.5));
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Gradient fade effects */
.ticker-container::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    right: 0;
    background: linear-gradient(90deg, rgba(44,62,80,0) 0%, rgba(44,62,80,1) 100%);
    pointer-events: none;
}

.ticker-container::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    left: 0;
    background: linear-gradient(270deg, rgba(44,62,80,0) 0%, rgba(44,62,80,1) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .ticker-container {
        padding: 6px 20px;
        height: 45px;
    }
    
    .ticker-item {
        font-size: 0.9rem;
        margin-right: 25px;
        height: 32px;
    }
}

@media (max-width: 768px) {
    .ticker-container {
        border-radius: 25px;
        padding: 5px 15px;
        height: 40px;
    }
    
    .ticker-item {
        font-size: 0.85rem;
        margin-right: 20px;
        padding: 4px 10px;
        height: 30px;
    }
    
    .ticker-bullet {
        font-size: 0.4rem;
        margin-right: 8px;
    }
}