.container { max-width: 1200px;}  


* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        }

        body {
            background-color: #f6f6f6;
            line-height: 1.6;
        }

        /* 1. The Big Brand Header (Scrolls Away) */
        .brand-section {
            background-color: #fff;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-bottom: 1px solid #eaeaea;
        }

        .brand-section .logo {
		margin-top: 10px;
        }

nav { display: flex;}

.blue {background-color: #1f7ec0; display: block; height: 60px;width:50px}

.brand-section .logo img { width:300px;}
		

        /* 2. The Sticky Navigation Bar */
        .sticky-navbar {
            background-color: #fff;
            height: 60px;
            width: 100%;
            display: flex;
            align-items: center;
            border-bottom: 1px solid #ddd;
            
            /* The Magic: Only this part sticks */
            position: -webkit-sticky;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .nav-container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
        }

        /* Desktop Menu */
        .desktop-menu {
            display: flex;
            list-style: none;
        }

        .desktop-menu li a {
            text-decoration: none;
            color: #333;
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            padding: 0 15px;
            transition: color 0.2s; display: block; margin-top: 20px;
        }

        .desktop-menu li a:hover {
            color: #1f7ec0; /* Al Jazeera Gold accent */
        }



.desktop-menu li:last-child a {
    font-family: cairo;   /* example Arabic font */
    font-weight: 700;
    font-size: 14px;
}


        /* Mobile Hamburger (3 Dashes) */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 24px;
            height: 18px;
            background: none;
            border: none;
            cursor: pointer;
        }

        .hamburger span {
            display: block;
            width: 100%;
            height: 3px;
            background-color: #333;
            border-radius: 2px;
        }

        /* 3. Mobile Slide-out Menu (Left) */
        .side-menu {
            position: fixed;
            top: 0;
            left: -300px; /* Hidden off-screen */
            width: 300px;
            height: 100%;
            background: #fff;
            z-index: 2000;
            transition: left 0.3s ease-in-out;
            padding: 30px 20px;
            box-shadow: 5px 0 15px rgba(0,0,0,0.1);
        }

        .side-menu.open {
            left: 0;
        }

        .side-menu .close-btn {
            font-size: 32px;
            background: none;
            border: none;
            cursor: pointer;
            margin-bottom: 30px;
        }

        .side-menu ul {
            list-style: none;
        }

        .side-menu ul li {
            margin-bottom: 20px;
        }

        .side-menu ul li a {
            text-decoration: none;
            color: #222;
            font-size: 20px;
            font-weight: bold;
        }

        /* Overlay Background */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            display: none;
            z-index: 1500;
        }

        .overlay.active {
            display: block;
        }

        /* Content spacing for scrolling demo */
        .content {
            padding: 50px 20px;
            max-width: 800px;
            margin: 0 auto;
            background: white;
            min-height: 2000px; /* Allow long scroll */
        }

        /* Responsiveness */
        @media (max-width: 900px) {
            .desktop-menu {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .brand-section {
                height: 80px;
            }
            .brand-section .logo {
                font-size: 32px;
            }
        }



/* Improve touch interaction */
.carousel-item img {
    user-select: none;
    -webkit-user-drag: none;
}

/* Make indicators larger for thumbs on mobile */
@media (max-width: 768px) {
    .carousel-indicators [button] {
        width: 30px;
        height: 5px;
    }
    /* Adjust height for mobile screens to see more of the page */
    .carousel-item div {
        height: 350px !important; 
    }
}


/* Force Smooth Sliding */
.carousel-item {
    transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1.000); /* Smooth easing */
}

/* Fix for jumpy images on mobile */
.carousel-inner {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Ensure images don't get "stuck" to the finger during touch */
.carousel-item img {
    pointer-events: none; /* Prevents browser image dragging from interfering */
    user-select: none;
    -webkit-user-drag: none;
}


#mainCarousel .carousel-item img {
    /* Critical: This prevents the browser from trying to drag the image file */
    pointer-events: none; 
    user-select: none;
    -webkit-user-drag: none;
    touch-action: pan-y; /* Allows vertical scrolling but captures horizontal swipes */
}


.position-relative{ border-radius: 10px;}

