:root {
    --color-primary: purple;
    accent-color: var(--color-primary);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', Inter, Roboto, "Helvetica Neue", "Arial Nova", "Nimbus Sans", Arial, sans-serif;
    background-color: white;
    margin: 0;
    overflow-x: hidden;
}

/* Top Header */
.top-header {
    background-color: #2e3192;
    color: white;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.welcome-text {
    white-space: nowrap;
    font-size: 0.9em;
    font-weight: 500;
    flex: 1;
}

.login-btn {
    background-color: whitesmoke;
    color: black;
    padding: 6px 15px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.9em;
    white-space: nowrap;
}

.login-btn:hover {
    background-color: #00A651;
    color: white;
    transform: translateY(-1px);
}

.middle-header {
    width: 100%;
    height: 152px;
    overflow: hidden;
    position: relative;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.bottom-header {
    background-color: #2e3192;
    color: white;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);

    border-top: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
}


/* Desktop Navigation Container */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left Side - Main Navigation Links (Horizontal) */
.main-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    height: 100%;
}

.main-nav .nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.main-nav .nav-link {
    color: white;
    text-decoration: none;
    padding: 0 18px;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 0.95em;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.main-nav .nav-item:first-child .nav-link {
    border-left: none;
}

.main-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

/* Right Side - Registration Buttons */
.desktop-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.desktop-actions .login-btn {
    padding: 6px 18px;
    font-size: 0.9em;
}

/* Hamburger Menu (Hidden on Desktop) */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-btn span {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #2e3192;
    z-index: 1002;
    overflow-y: auto;
}

.mobile-overlay.active {
    display: block;
}

/* Mobile Header with Close Button */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #2e3192;
    z-index: 1003;
    align-items: center;
    justify-content: flex-end;
    padding: 0 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.mobile-overlay.active + .mobile-header {
    display: flex;
}

.mobile-close {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Mobile Navigation Content */
.mobile-content {
    padding: 80px 0 0 0;
    height: calc(100vh - 60px);
    overflow-y: auto;
}

.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-links .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-links .nav-link {
    color: white;
    text-decoration: none;
    padding: 18px 25px;
    display: block;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.mobile-nav-links .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    padding-left: 30px;
}

.mobile-actions {
    padding: 25px;
    display: none;
    flex-direction: column;
    gap: 15px;
    background-color: rgba(0, 0, 0, 0.1);
}

.mobile-actions .login-btn {
    width: 100%;
    padding: 14px;
    font-size: 1.1em;
    font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 15px;
    }

    .main-nav .nav-link {
        padding: 0 15px;
        font-size: 0.9em;
    }

    .desktop-actions {
        gap: 10px;
    }
}

@media (max-width: 992px) {
    .middle-header {
        height: 130px;
    }

    .main-nav .nav-link {
        padding: 0 12px;
        font-size: 0.85em;
    }

    .desktop-actions .login-btn {
        padding: 6px 15px;
        font-size: 0.85em;
    }
}

/* Mobile Breakpoint - Show Hamburger */
@media (max-width: 768px) {
    /* Show hamburger, hide desktop nav */
    .hamburger-btn {
        display: flex;
    }

    .main-nav, .desktop-actions {
        display: none !important;
    }

    .mobile-actions {
        display: flex;
    }

    .middle-header {
        height: 120px;
    }

    .top-header {
        flex-direction: column;
        gap: 8px;
        padding: 8px 15px;
        text-align: center;
    }

    .welcome-text {
        white-space: normal;
        font-size: 0.85em;
        line-height: 1.4;
    }

    .nav-container {
        height: 50px;
        padding: 0 15px;
        justify-content: space-between;
    }

    /* Fix banner image for mobile */
    .banner-image {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 576px) {
    .middle-header {
        height: 110px;
    }

    .mobile-nav-links .nav-link {
        padding: 16px 20px;
        font-size: 1em;
    }

    .mobile-actions {
        padding: 20px;
    }

    .mobile-actions .login-btn {
        padding: 12px;
        font-size: 1em;
    }

    .nav-container {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .middle-header {
        height: 100px;
    }

    .mobile-nav-links .nav-link {
        padding: 14px 15px;
        font-size: 0.95em;
    }

    .banner-image {
        object-fit: cover;
        object-position: center 25%;
    }
}

/* Small Mobile Devices */
@media (max-width: 360px) {
    .middle-header {
        height: 90px;
    }

    .top-header {
        padding: 6px 10px;
    }

    .welcome-text {
        font-size: 0.8em;
    }

    .mobile-nav-links .nav-link {
        padding: 12px 15px;
        font-size: 0.9em;
    }
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* Animation for mobile menu */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-overlay.active .mobile-nav-links .nav-item {
    animation: slideIn 0.3s ease forwards;
    opacity: 0;
}

.mobile-overlay.active .mobile-nav-links .nav-item:nth-child(1) { animation-delay: 0.1s; }
.mobile-overlay.active .mobile-nav-links .nav-item:nth-child(2) { animation-delay: 0.15s; }
.mobile-overlay.active .mobile-nav-links .nav-item:nth-child(3) { animation-delay: 0.2s; }
.mobile-overlay.active .mobile-nav-links .nav-item:nth-child(4) { animation-delay: 0.25s; }
.mobile-overlay.active .mobile-nav-links .nav-item:nth-child(5) { animation-delay: 0.3s; }
.mobile-overlay.active .mobile-nav-links .nav-item:nth-child(6) { animation-delay: 0.35s; }
.mobile-overlay.active .mobile-nav-links .nav-item:nth-child(7) { animation-delay: 0.4s; }
img {
    display: block;
    max-width: 100%;
    object-fit: cover;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #6a1b9a;
    text-decoration: underline;
}

/* Fade-in animation for sections */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out forwards;
}
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Carousel Banner Styles */
.carousel-banner {
    width: 100%;
    height: 600px;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.carousel-banner .carousel-inner,
.carousel-banner .carousel-item {
    height: 100%;
}

.carousel-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-banner .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: /*linear-gradient(to right,
    var(--overlay-color, rgba(202, 160, 62, 0.7)) 0%,
    var(--gradient-color, rgba(202, 160, 62, 0.3)) 50%,
    rgba(202, 160, 62, 0) 100%);*/
    
    z-index: 1;
}

/* Caption styling - white text without background */
.carousel-banner .carousel-caption {
    bottom: 30%;
    background: transparent !important; /* Remove background */
    padding: 20px;
    text-align: left;
    left: 10%;
    right: auto;
    width: 50%;
    z-index: 2;
}

/* Bigger font sizes */
.carousel-banner .carousel-caption h5 {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.carousel-banner .carousel-caption p {
    color: white;
    font-size: 1.8rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

/* Button styling */
.carousel-banner .carousel-caption .btn {
    font-size: 1.2rem;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .carousel-banner .carousel-caption {
        width: 70%;
    }

    .carousel-banner .carousel-caption h5 {
        font-size: 2.8rem;
    }

    .carousel-banner .carousel-caption p {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .carousel-banner {
        height: 60vh;
    }

    .carousel-banner .carousel-caption {
        width: 80%;
        left: 5%;
        bottom: 20%;
    }

    .carousel-banner .carousel-caption h5 {
        font-size: 2.2rem;
    }

    .carousel-banner .carousel-caption p {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .carousel-banner .carousel-caption h5 {
        font-size: 1.8rem;
    }

    .carousel-banner .carousel-caption p {
        font-size: 1rem;
    }

    .carousel-banner .carousel-caption .btn {
        font-size: 1rem;
        padding: 8px 20px;
    }
}

.welcome-section {
    position: relative;
    overflow: hidden;
    min-height: 80vh;
}

.welcome-bg-image {
    position: absolute;
    top: 0;
    right:0;
    width: 100%;
    height: 100%;
    background-image: url('public/images/1/welcome.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.welcome-content {

    border-radius: 10px;

}

.welcome-section h1 {
    color: #003087; /* OMCL blue */
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.welcome-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #333;
}

.more-link {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 12px 30px;
    background-color: #003087;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.more-link:hover {
    background-color: #f4a261; /* OMCL orange */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.position-relative {
    position: relative;
}

.z-index-2 {
    z-index: 2;
}

.object-fit-cover {
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .welcome-section {
        min-height: auto;
    }

    .welcome-content {
        margin: 20px;
    }

    .welcome-section h1 {
        font-size: 2rem;
    }

    .col-md-6.p-0 img {
        height: 400px;
    }
}

/* Card styling */
.card-container {
    padding: 40px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.card {
    width: 100%;
    max-width: 300px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
}
.card.bg-bright-red { background-color: #ff4444; color: white; }
.card.bg-bright-yellow { background-color: #ffeb3b; }
.card.bg-bright-green { background-color: #4caf50; color: white; }
.card.bg-bright-blue { background-color: #2196f3; color: white; }
.card-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    margin-bottom: 12px;
}
.card-text {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.5;
}

/* Events Section */
.events-section {
    padding: 40px 20px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    height: 680px;
}
.events-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    color: #222;
}
.shadow-effect {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #ECECEC;
    box-shadow: 0 19px 38px rgba(0,0,0,0.10), 0 15px 12px rgba(0,0,0,0.02);
}
#events-carousel .shadow-effect p {
    font-family: inherit;
    font-size: 17px;
    line-height: 1.5;
    margin: 0 0 17px 0;
    font-weight: 300;
}
.event-name {
    margin: -17px auto 0;
    display: table;
    width: auto;
    background: #3190E7;
    padding: 9px 35px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    box-shadow: 0 9px 18px rgba(0,0,0,0.12), 0 5px 7px rgba(0,0,0,0.05);
}
#events-carousel .item {
    text-align: center;
    padding: 50px;
    margin-bottom: 80px;
    opacity: .2;
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#events-carousel .owl-item.active.center .item {
    opacity: 1;
    -webkit-transform: scale3d(1.0, 1.0, 1);
    transform: scale3d(1.0, 1.0, 1);
}
.owl-carousel .owl-item img {
    transform-style: preserve-3d;
    max-width: 300px;
    margin: 0 auto 17px;
    height: 330px;
}
#events-carousel.owl-carousel .owl-dots .owl-dot.active span,
#events-carousel.owl-carousel .owl-dots .owl-dot:hover span {
    background: #3190E7;
    transform: translate3d(0px, -50%, 0px) scale(0.7);
}
#events-carousel.owl-carousel .owl-dots {
    display: inline-block;
    width: 100%;
    text-align: center;
}
#events-carousel.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
}
#events-carousel.owl-carousel .owl-dots .owl-dot span {
    background: #3190E7;
    display: inline-block;
    margin: 0 2px 5px;
    transform: translate3d(0px, -50%, 0px) scale(0.3);
    transform-origin: 50% 50% 0;
    transition: all 250ms ease-out 0s;
    width: 20px;
}

/* Quick Links Marquee Styling */
.quick-links-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 600;
    text-align: center;
    margin: 30px 0 20px;
    color: #222;
}
.logoMarqueeSection {
    padding: 40px 20px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.wrapper {
    display: grid;
    place-content: center;
    height: auto;
}
.marquee {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(
            var(--mask-direction, to right),
            hsl(0 0% 0% / 0),
            hsl(0 0% 0% / 1) 10%,
            hsl(0 0% 0% / 1) 90%,
            hsl(0 0% 0% / 0)
    );
}
.marquee__ctn {
    display: flex;
    width: 100%;
}
.marquee__track {
    display: flex;
}
@supports (-webkit-touch-callout: none) {
    .marquee__ctn {
        transform: translate3d(0, 0, 0) scale(1);
        perspective: 1px;
    }
}
.marquee__item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: clamp(120px, 20vw, 180px);
    margin-inline-end: 2rem;
}
.marquee__item img {
    height: clamp(60px, 15vw, 90px);
    width: 100%;
    object-fit: contain;
    backface-visibility: hidden;
    filter: brightness(100%);
    transition: transform 0.3s ease;
}
.marquee__item img:hover {
    transform: scale(1.1);
}

/* New Marquee Section */
.marquee-news-section {
    padding: 40px 20px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.marquee-news-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    color: #222;
}
.marquee-column {
    height: 500px;
    overflow: hidden;
    position: relative;
    padding: 10px;
}
.marquee-news-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
    color: #222;
}
.marquee-news {
    height: calc(100% - 40px);
    overflow: hidden;
}
.marquee-news .marquee-content {
    display: flex;
    flex-direction: column;
    animation: scrollVertical 10s linear infinite; /* Increased speed from 15s to 5s */
}
@keyframes scrollVertical {
    0% { transform: translateY(100%); } /* Start from bottom */
    100% { transform: translateY(-100%); } /* Loop back from top */
}
.news-card {
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-height: 100px;
}
.news-card.bg-bright-red { background-color: #ff4444; }
.news-card.bg-bright-orange { background-color: #ff9800; }
.news-card.bg-bright-yellow { background-color: #ffeb3b; color: #222; }
.news-card.bg-bright-green { background-color: #4caf50; }
.news-card.bg-bright-blue { background-color: #2196f3; }
.news-card.bg-bright-purple { background-color: #9c27b0; color: #fff; }
.news-card h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.news-card p {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Map Section */
.map-section {
    width: 100%;
    height: 400px;
    margin: 20px 0;
}
.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
    .video-banner {
        height: 40vh;
    }
    .welcome-section {
        padding: 30px 15px;
    }
    .welcome-section img {
        max-width: 100%;
        margin-top: 20px;
    }
    .card-container {
        padding: 30px 15px;
        gap: 15px;
    }
    .card {
        max-width: 100%;
    }

    .events-section {
        padding: 30px 15px;
    }
    .logoMarqueeSection {
        padding: 30px 15px;
    }
    .marquee__item {
        width: clamp(80px, 18vw, 120px);
        margin-inline-end: 1.5rem;
    }
    .marquee__item img {
        height: clamp(40px, 12vw, 60px);
    }
    .marquee-news-section {
        padding: 30px 15px;
    }
    .marquee-column {
        height: 200px;
    }
    .marquee-news-title {
        font-size: 1.2rem;
    }
    .map-section {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .video-banner {
        height: 30vh;
    }
    .welcome-section h1 {
        font-size: clamp(1.5rem, 4vw, 1.8rem);
    }
    .welcome-section p,
    .welcome-section .more-link {
        font-size: clamp(0.8rem, 2vw, 0.9rem);
    }
    .card-title {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
    }
    .card-text {
        font-size: clamp(0.8rem, 2vw, 0.9rem);
    }
    .events-section h2,
    .quick-links-title,
    .marquee-news-section h2 {
        font-size: clamp(1.5rem, 4vw, 1.8rem);
    }
    .marquee-column {
        height: 150px;
    }
    .marquee-news-title {
        font-size: 1rem;
    }
    .map-section {
        height: 250px;
    }
}


.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    min-height: 600px; /* Increased minimum height for the map */
}
.embed-responsive-custom::before {
    padding-top: 75%; /* Custom aspect ratio for a taller map (4:3 equivalent) */
}
.embed-responsive-item {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


.marquee__item a {
    display: inline-block; /* Removes extra space */
    line-height: 0;       /* Fixes alignment */
}
.marquee2-container {
    background-color: white;
    color: Black;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding: 10px 0;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.marquee2-wrapper {
    display: flex;
    align-items: center;
}

.marquee2-label {
    background-color: #caa03e;
    color: white;
    padding: 5px 15px;
    margin-right: 20px;
    font-weight: bold;
    font-size: 18px;
    white-space: nowrap;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    opacity: 1;
    background-image: none;
    position: relative;
    z-index: 2;
}

.marquee2-content {
    white-space: nowrap;
    display: inline-block;
    animation: marquee2-scroll 20s linear infinite;
    padding-left: 100%;
}

.marquee2-item {
    display: inline-block;
    padding-right: 50px;
}

@keyframes marquee2-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.marquee2-content:hover {
    animation-play-state: paused;
}

/* Auther: Abdelrhman Said - Modified for vertical right alignment */
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*:focus,
*:active {
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

.wrapper {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    list-style: none;
    z-index: 100;
}

.wrapper .icon {
    position: relative;
    background: #ffffff;
    border-radius: 50%;
    padding: 15px;
    margin: 8px;
    width: 50px;
    height: 50px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
    position: absolute;
    right: 65px;
    font-size: 14px;
    background: #ffffff;
    color: #ffffff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    white-space: nowrap;
}

.wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #ffffff;
    right: -3px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
    background: #1877F2;
    color: #ffffff;
}

.wrapper .twitter:hover,
.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip::before {
    background: GREY;
    color: #ffffff;
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
    background: #E4405F;
    color: #ffffff;
}

.wrapper .github:hover,
.wrapper .github:hover .tooltip,
.wrapper .github:hover .tooltip::before {
    background: #333333;
    color: #ffffff;
}

.wrapper .youtube:hover,
.wrapper .youtube:hover .tooltip,
.wrapper .youtube:hover .tooltip::before {
    background: #CD201F;
    color: #ffffff;
}
.why-omcl-section {

    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.why-omcl-header {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
}

.why-omcl-title {
    font-size: 2.5rem;
    color: #1a237e;
    margin: 0;
}

.why-omcl-desc {
    font-size: 1rem;
    color: #333;
    max-width: 400px;
    margin: 0;
}

.experience-highlight {
    font-size: 3rem;
    color: #2196f3;
    font-weight: bold;
    margin: 0;
}

.experience-text {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
}

.why-omcl-section {
    background-color: #ffffff; /* White background for container */
    padding: 40px 0;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    width: 100%;
}

.why-omcl-header {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 40px;
}

.why-omcl-title {
    font-size: 3rem;
    color: #1a237e;
    margin: 0;
}

.why-omcl-desc {
    font-size: 1.2rem;
    color: #333;
    max-width: 500px;
    margin: 0;
}

.experience-highlight {
    font-size: 4rem;
    color: #2196f3;
    font-weight: bold;
    margin: 0;
}

.experience-text {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
}

.why-omcl-section {
    background-color: #ffffff;
    padding: 40px 0;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    width: 100%;
}

.why-omcl-header {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 40px;
}

.why-omcl-title {
    font-size: 3rem;
    color: #1a237e;
    margin: 0;
}

.why-omcl-desc {
    font-size: 1.2rem;
    color: #333;
    max-width: 500px;
    margin: 0;
}

.experience-highlight {
    font-size: 4rem;
    color: #2196f3;
    font-weight: bold;
    margin: 0;
}

.experience-text {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
}

.why-omcl-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 0 20px;
}

/* Adapted card style from Uiverse.io */
.why-omcl-card {
    position: relative;
    width: 300px;
    height: 400px;
    background: mediumturquoise;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: bold;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.5s;
}

/* Randomly assign bright colors */
.why-omcl-card:nth-child(1) { background-color: #ff4444; } /* bg-bright-red */
.why-omcl-card:nth-child(2) { background-color: #9c27b0; } /* bg-bright-purple */
.why-omcl-card:nth-child(3) { background-color: #4caf50; } /* bg-bright-green */

.why-omcl-card::before,
.why-omcl-card::after {
    position: absolute;
    content: "";
    width: 20%;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: bold;
    background-color: lightblue;
    transition: all 0.5s;
}

.why-omcl-card::before {
    top: 0;
    right: 0;
    border-radius: 0 15px 0 100%;
}

.why-omcl-card::after {
    bottom: 0;
    left: 0;
    border-radius: 0 100% 0 15px;
}

.why-omcl-card:hover::before,
.why-omcl-card:hover::after {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    transition: all 0.5s;
}

.why-omcl-card:hover::after {
    content: attr(data-content);
    color: #333;
}

.why-omcl-card i {
    font-size: 4rem;
    color: #1a237e;
    margin-bottom: 10px;
}

.why-omcl-card h5 {
    font-weight: bold; /* Make title bold */
    font-size: 1.5rem; /* Increase title size for better visibility */
    color: #fff; /* Ensure contrast with bright backgrounds */
    margin: 0;
}

    .card-container {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        padding: 20px;
    }

    .card {
        position: relative;
        width: 200px;
        height: 250px;
        border-radius: 14px;
        z-index: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        text-align: center;
        cursor: pointer;
    }

    .bg {
        position: absolute;
        top: 5px;
        left: 5px;
        width: 190px;
        height: 240px;
        z-index: 2;
        background: rgba(255, 255, 255, .95);
        backdrop-filter: blur(24px);
        border-radius: 10px;
        overflow: hidden;
        outline: 2px solid white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }

    .blob {
        position: absolute;
        z-index: 1;
        top: 50%;
        left: 50%;
        width: 150px;
        height: 150px;
        border-radius: 50%;
        background-color: #ff0000;
        opacity: 1;
        filter: blur(12px);
        animation: blob-bounce 5s infinite ease;
    }

    @keyframes blob-bounce {
        0% { transform: translate(-100%, -100%) translate3d(0, 0, 0); }
        25% { transform: translate(-100%, -100%) translate3d(100%, 0, 0); }
        50% { transform: translate(-100%, -100%) translate3d(100%, 100%, 0); }
        75% { transform: translate(-100%, -100%) translate3d(0, 100%, 0); }
        100% { transform: translate(-100%, -100%) translate3d(0, 0, 0); }
    }

    .card i {
        font-size: 2.5rem;
        margin-bottom: 10px;
        color: #333;
    }

    .card .category {
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 5px;
        color: #333;
    }

    .card .subtopic {
        font-size: 1rem;
        color: #666;
        margin-bottom: 10px;
    }

    .card a {
        text-decoration: none;
        color: #007bff;
        font-size: 0.9rem;
        font-weight: bold;
    }

    .card a:hover {
        text-decoration: underline;
    }
    .video-banner {
        width: 100%;
        height: 540px;
        overflow: hidden;
        position: relative;
        background: #000;
    }
    .video-banner video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    @media (max-width: 768px) {
        .video-banner {
            height: 300px;
        }
    }
    @media (max-width: 576px) {
        .video-banner {
            height: 200px;
        }
    }
    .content-section {
        padding: 3rem 1rem;
        background-color: #f8f9fa;
    }
    .card {
        transition: transform 0.3s;
    }
    .card:hover {
        transform: translateY(-5px);
    }
    .site-footer {
        background-color: #06284c; /* Updated background color */
        padding: 45px 0 20px;
        font-size: 15px;
        line-height: 24px;
        color: #737373;
    }
    .site-footer hr {
        border-top-color: #bbb;
        opacity: 0.5;
    }
    .site-footer h6 {
        color: #fff;
        font-size: 16px;
        text-transform: uppercase;
        margin-top: 5px;
        letter-spacing: 2px;
    }
    .site-footer a {
        color: #737373;
    }
    .site-footer a:hover {
        color: #3366cc;
        text-decoration: none;
    }
    .footer-links {
        padding-left: 0;
        list-style: none;
    }
    .footer-links li {
        display: block;
    }
    .footer-links a:active, .footer-links a:focus, .footer-links a:hover {
        color: #3366cc;
        text-decoration: none;
    }
    .site-footer .social-icons {
        text-align: right;
    }
    .site-footer .social-icons a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        margin-left: 6px;
        margin-right: 0;
        border-radius: 100%;
        background-color: #33353d;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .copyright-text {
        margin: 0;
    }
    @media (max-width: 991px) {
        .site-footer [class^=col-] {
            margin-bottom: 30px;
        }
    }
    @media (max-width: 767px) {
        .site-footer {
            padding-bottom: 0;
        }
        .site-footer .copyright-text, .site-footer .social-icons {
            text-align: center;
        }
    }
    .social-icons {
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
    }
    .social-icons li {
        display: inline-block;
        margin-bottom: 4px;
    }
    .social-icons a {
        background-color: #33353d;
        font-size: 16px;
        text-align: center;
        margin-right: 8px;
        border-radius: 100%;
        transition: all .2s linear;
    }
    .social-icons a:active, .social-icons a:focus, .social-icons a:hover {
        color: #ffffff;
        background-color: #33353d;
    }
    .social-icons a.facebook:hover {
        background-color: #3b5998;
    }
    .social-icons a.x-twitter:hover {
        background-color: #000000;
    }
    .social-icons a.linkedin:hover {
        background-color: #007bb6;
    }
    .social-icons a.instagram:hover {
        background-color: #e1306c;
    }
    .site-footer .about-text {
        font-size: 19px;
        text-align: justify;
    }
    /* Newsletter Styles */
    .newsletter-form {
        margin-top: 20px;
    }
    .newsletter-form input[type="email"] {
        width: 70%;
        padding: 8px;
        border: 1px solid #ccc;
        border-radius: 4px;
        margin-right: 10px;
    }
    .newsletter-form button {
        padding: 8px 15px;
        background-color: #3366cc;
        color: #fff;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }
    .newsletter-form button:hover {
        background-color: #274d99;
    }