/* ///////Header ///////// */
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }
        body p{
            font-family: 'Roboto', sans-serif !important;
        }

        body ul li{
            font-family: 'Roboto', sans-serif;
        }
        
        header {
            background-color: #fff;
            position: relative;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0px 5%;
            width: 100%;
            margin: 0 auto;
            position: fixed;
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.103);
        }
        
        


        .mobile-logo img,
        .logo img{
            height: 75px;
            margin-right: 10px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            position: relative;
            margin-left: 30px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: #000000;
            font-weight: 600;
            font-size: 14px;
            transition: color 0.3s;
            display: block;
            padding: 40px 0;
        }
        
        nav ul li a:hover {
            color: #ffbb00;
        }

        nav ul li a i{
            font-size: 10px;
            text-align: center;
            margin-left: 2px;
        }
        
        /* Dropdown styles */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #ffbb00;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 1000;
        }
        
        /* For About and Gallery dropdowns - stacked vertically */
        nav ul li:nth-child(2) .dropdown,  /* About */
        nav ul li:nth-child(5) .dropdown { /* Gallery */
            left: 0;
            transform: none;
        }
        
        nav ul li:hover .dropdown {
            opacity: 1;
            visibility: visible;
        }

        .dropdown li a{
            color: #fff;
            font-size: 16px;
            font-weight: 500;
        }
        .dropdown li a:hover{
            color: #000000;
        }
        
        .dropdown li {
            margin: 0;
            padding: 8px 20px;
            display: block;
            width: 100%;
        }
        
        .dropdown li:hover {
            /* background-color: #f5f5f5; */
        }
        
        .dropdown li a {
            padding: 5px;
            white-space: nowrap;
        }

        .dropdown-submenu {
            display: flex;
            justify-content: start;
            align-items: start;
            flex-direction: column !important;
            padding: 15px 0;
        }
        
        /* Mega menu styles for Products and Services */
        .mega-menu {
            left: 50%;
            transform: translateX(-70%);
            width: 1000px;
            min-height: 320px;
            display: flex;
            box-shadow: rgba(100, 100, 111, 0.73) 0px 7px 29px 0px;
            background-color: #ffbb00;
            border-radius: 5px;
        }
        
        .mega-menu-image {
            width: 45%;
            height: auto;
            background-color: #f5f5f5;
        }

        .mega-menu-image img {
            width: 100%;
            height: 100%;
            object-fit: fill;
        }
        
        .mega-menu-items {
            display: flex;
            flex-wrap: wrap;
            align-self: flex-start;
            align-items: start;
            padding: 30px 0px 30px 20px;
            width: 55%;
            background-color: #ffbb00;
        }
        
        .mega-menu-items a{
            width: 20%;
            padding: 10px;
            margin: 10px;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }
        .mega-menu-item {
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

        .mega-menu-item img {
            width: 60px;
            text-align: center;
            height: auto;
            transition: transform 0.5s ease;
        }

        .mega-menu-item:hover img{
            transform: scale(1.1);
        }

        .mega-menu-item span{
            color: #fff;
            font-weight: 500;
            font-size: 15px;
        }
        
        /* Mobile menu styles */
        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }
        
        .mobile-close-btn {
            display: none;
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            cursor: pointer;
            color: #333;
        }
        
        /* Mobile logo in nav */
        .mobile-logo {
            display: none;
            font-size: 28px;
            font-weight: bold;
            color: #333;
            text-decoration: none;
            padding: 20px 0;
            position: absolute;
            top: 0;
            left: 15px;
        }
        
        @media (max-width: 992px) {
            .header-container {
                padding: 15px 20px;
            }

            
            
            nav {
                position: fixed;
                top: 0;
                left: -100%;
                width: 100%;
                max-width: 100%;
                height: 100vh;
                background-color: #fff;
                box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
                transition: all 0.3s;
                z-index: 1001;
                padding-top: 70px;
                overflow-y: auto;
            }
            
            nav.active {
                left: 0;
            }
            
            .mobile-logo {
                display: block;
            }
            
            .mobile-close-btn {
                display: block;
            }
            
            nav ul {
                flex-direction: column;
                padding: 0 20px;
                margin-top: 20px;
            }
            
            nav ul li {
                margin: 0;
                border-bottom: 1px solid #eee;
            }
            
            
            nav ul li a {
                padding: 15px 0;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
            
            .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                box-shadow: none;
                padding: 0;
                display: none;
                transform: none;
                left: auto;
                width: auto;
                border-radius: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }
            
            .dropdown.active {
                display: block;
                max-height: 1000px;
                padding: 10px 0 10px 15px;
            }
            
            .dropdown li {
                padding: 8px 0;
            }
            
            .mega-menu {
                width: 100%;
                flex-direction: column;
                padding: 0;
            }
            
            .mega-menu.active {
                display: flex;
                max-height: 1000px;
                padding: 10px 0 10px 15px;
            }
            
            .mega-menu-image {
                display: none;
            }
            
            .mega-menu-items {
                width: 100%;
                padding: 0;
                margin: 0;
            }
            
            .mega-menu-items a{
                width: 45%;
                margin: 0;
                padding: 20px;
                border: 1px solid #ffffff;
            }
            .mega-menu-item {
                text-align: left;
                padding: 8px 0;                
                margin: 0;
                text-align: center;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            /* Chevron rotation for mobile */
            .fa-chevron-down {
                transition: transform 0.3s;
                font-size: 12px;
                margin-left: 5px;
            }
            
            .fa-chevron-down.rotate {
                transform: rotate(180deg);
            }
        }





 
    /* ////////Footer////////// */



    .aldac-footer {
        background-color: #000000;
        color: #fff;
        padding: 40px 0 20px;
        font-family: 'Arial', sans-serif;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        padding: 0 20px;
    }

    .footer-section {
        margin-bottom: 20px;
    }

    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
        text-transform: uppercase;
        color: #cc9600;
    }

    .footer-section h3:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 2px;
        background-color: #e74c3c;
    }

    .location h4 {
        font-size: 16px;
        margin: 15px 0 5px;
        color: #ecf0f1;
    }

    .location p {
        font-size: 14px;
        color: #bdc3c7;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .direction-link, .catalogue-link {
        display: inline-block;
        color: #000000;
        font-size: 14px;
        margin: 5px 0;
        text-decoration: none;
        background-color: #fff;
        padding: 7px;
        border-radius: 3px;
        font-weight: 500;
    }

    .direction-link i, .catalogue-link i {
        margin-right: 5px;
    }

    .footer-links {
        list-style: none;
        padding: 0;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #bdc3c7;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s;
    }

    .footer-links a:hover {
        color: #e74c3c;
    }

    .footer-links i {
        margin-right: 8px;
        width: 15px;
        text-align: center;
    }

    .franchise-btn {
        display: inline-block;
        background-color: #e74c3c;
        color: white;
        padding: 8px 15px;
        border-radius: 4px;
        text-decoration: none;
        font-size: 14px;
        margin-top: 15px;
        transition: background-color 0.3s;
    }

    .franchise-btn:hover {
        background-color: #c0392b;
    }

    .franchise-btn i {
        margin-right: 8px;
    }

    .contact-info a {
        display: block;
        color: #bdc3c7;
        text-decoration: none;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .contact-info i {
        margin-right: 10px;
        width: 15px;
        text-align: center;
    }

    .footer-social-media{
        display: flex;
        justify-content: start;
        align-items: start;
        margin-top: 20px;
    }
    .footer-social-media .fa-brands{
        margin-left: 15px;
        font-size: 1.7rem;
    }
    .footer-social-media .fa-brands:hover{
        color: #ffbb00;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .footer-section {
            margin-bottom: 30px;
        }

        .footer-section h3 {
            font-size: 16px;
        }

        .location h4, .footer-links a, .contact-info a {
            font-size: 14px;
        }
    }







    /* ////////////Fix Button/////// */


    .contact-bar {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 15px; 
            padding: 10px 5px;
            border-radius: 5px 0 0 5px;
            z-index: 1000; 
            box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

            background-color: rgba(255, 255, 255, 0.37);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);

            
            right: -100px; 
            animation: slideInFromRight 0.7s ease-out forwards; 
        }

        
        @keyframes slideInFromRight {
            0% {
                right: -100px; /* Start completely off-screen */
            }
            100% {
                right: 0; /* End at its fixed position */
            }
        }
        /* ----------------------------------------------- */


        .contact-bar a {
            color: #000000; 
            font-size: 24px; 
            text-decoration: none;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 40px; 
            height: 40px; 
            transition: background-color 0.3s ease;
        }

        .contact-bar a:hover {
            background-color: rgba(209, 209, 209, 0.487);
            border-radius: 3px;
        }

        /* Hide on smaller screens if desired */
        /* @media (max-width: 768px) {
            .contact-bar {
                display: none;
            }
        } */

        #scrollToTopBtn {
            display: none; /* Hidden by default */
            position: fixed; /* Fixed position */
            bottom: 20px; /* 20px from the bottom */
            right: 20px; /* 30px from the right */
            z-index: 999; /* Ensure it stays on top */
            border: none; /* No border */
            outline: none; /* No outline */
            background-color: #ffbb00; /* Blue background */
            color: white; /* White text */
            cursor: pointer; /* Add a mouse pointer on hover */
            padding: 15px; /* Some padding */
            height: 50px;
            width: 50px;
            border-radius: 50%; /* Circular shape */
            font-size: 22px; /* Icon size */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        #scrollToTopBtn:hover {
            background-color: #181818; /* Darker blue on hover */
            transform: translateY(-2px);
        }