*{
    font-family: cairo !important;
}
body{
    overflow-x: hidden;
}

.Hero_Section  .Search{
    margin-right: 20px;
    cursor: pointer;
}

.navbar{
    position: relative;
    background-image:url("https://i.ibb.co/FbvxBhJj/IMG-9222-JPG.jpg");
    background-size: cover;
    background-position: center;
    left: -10px;
    width: 101%;
}



.collapse ul li a{
    color: #fff !important;
}

ul#menu-main_menu_header li {
    margin-left: 20px;
}

.dropdown-menu li{
margin-left: 0;
}
.collapse .dropdown-menu li a{
    color:#000 !important;
   
}

.dropdown-menu li{
    margin-left: 0 !important;
}

a.nav-link.dropdown-toggle {
    margin: 0;
    padding: 0;
}
/* .dropdown-menu .dropdown-item {
    color: #000 !important;
}
.navbar-light .navbar-nav .nav-link{
    color:#000;
}  */


 /* استايل الـ dropdown */
        .nav-item.dropdown .dropdown-menu {
            display: block;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-20px);
            transition: all 0.4s ease;
            border: none;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            border-radius: 8px;
            padding: 15px 0;
            margin-top: 0px; /* شيلنا المسافة عشان ميختفيش */
            pointer-events: none;
        }

        @media(max-width:600px){
            .nav-item.dropdown .dropdown-menu{
                visibility: visible;
                opacity: 1;
                 transform: translateY(3px);
            }
        }

        /* الـ hover على الـ dropdown item نفسه او على الـ menu */
        .nav-item.dropdown:hover .dropdown-menu,
        .nav-item.dropdown .dropdown-menu:hover {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            pointer-events: auto;
        }

        .dropdown-item {
            padding: 12px 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .dropdown-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: linear-gradient(135deg, #1a5f7a, #57cc99);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .dropdown-item:hover {
            background: linear-gradient(90deg, rgba(26, 95, 122, 0.1), transparent);
            color: #1a5f7a;
            padding-left: 30px;
        }

        .dropdown-item:hover::before {
            transform: scaleY(1);
        }

        .nav-link.dropdown-toggle {
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link.dropdown-toggle::after {
            transition: transform 0.3s ease;
        }

        .nav-item.dropdown:hover .nav-link.dropdown-toggle::after {
            transform: rotate(180deg);
        }

        /* اضافة animation لكل item على حدة */
        .dropdown-item:nth-child(1) { animation-delay: 0.05s; }
        .dropdown-item:nth-child(2) { animation-delay: 0.1s; }
        .dropdown-item:nth-child(3) { animation-delay: 0.15s; }
        .dropdown-item:nth-child(4) { animation-delay: 0.2s; }
        .dropdown-item:nth-child(5) { animation-delay: 0.25s; }
        .dropdown-item:nth-child(6) { animation-delay: 0.3s; }

        .nav-item.dropdown:hover .dropdown-item {
            animation: slideInItem 0.4s ease forwards;
            opacity: 0;
            transform: translateX(-10px);
        }

        @keyframes slideInItem {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

/* Start ٍSearch Icon Popup */

 .search-icon {
            background: #0f6163;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-size: 20px;
        }

        .search-icon:hover {
            transform: scale(1.1);
            background: #0d5456;
        }

        .search-popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            animation: fadeIn 0.3s ease;
        }

        .search-popup.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .search-container {
            width: 90%;
            max-width: 800px;
            animation: slideUp 0.4s ease;
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .close-btn {
            position: absolute;
            top: 30px;
            right: 30px;
            background: transparent;
            border: 2px solid #0f6163;
            color: #0f6163;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-btn:hover {
            background: #0f6163;
            color: white;
            transform: rotate(90deg);
        }

        .search-input-wrapper {
            position: relative;
            margin-bottom: 30px;
        }

        .search-input {
            width: 100%;
            padding: 25px 70px 25px 25px;
            font-size: 24px;
            border: 3px solid #0f6163;
            border-radius: 50px;
            background: white;
            color: #000;
            outline: none;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            border-color: #0f6163;
            box-shadow: 0 0 30px rgba(15, 97, 99, 0.3);
        }

        .search-input::placeholder {
            color: #999;
        }

        .search-btn {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: #0f6163;
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .search-btn:hover {
            background: #0d5456;
            transform: translateY(-50%) scale(1.1);
        }

        .search-suggestions {
            background: white;
            border-radius: 20px;
            padding: 20px;
            max-height: 400px;
            overflow-y: auto;
        }

        .suggestion-item {
            padding: 15px;
            border-bottom: 1px solid #eee;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 15px;
            color: #000;
        }

        .suggestion-item:last-child {
            border-bottom: none;
        }

        .suggestion-item:hover {
            background: #f8f8f8;
            padding-left: 25px;
        }

        .suggestion-icon {
            color: #0f6163;
            font-size: 18px;
        }

        .demo-content {
            text-align: center;
            padding:0 20px;
        }

        .demo-content h1 {
            color: #000;
            margin-bottom: 20px;
        }

        .demo-content p {
            color: #666;
            margin-bottom: 30px;
        }

/* End Search Icon Popup */


/* Start Slider Hero Section */
/* 
    
        .slider-container {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide.active {
            opacity: 1;
            z-index: 1;
        }

        .slide-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .slide-content {
            position: relative;
            z-index: 2;
            color: white;
            text-align: left;
            padding: 0 80px;
            max-width: 1200px;
            width: 100%;
        }

        .slide-content h1 {
            font-size: 5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .slide-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            max-width: 700px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }

        .slide-content .cta-link {
            color: white;
            text-decoration: underline;
            font-size: 1.1rem;
            font-weight: 600;
            transition: opacity 0.3s;
            display: inline-block;
        }

        .slide-content .cta-link:hover {
            opacity: 0.8;
        }

        .slider-controls {
            position: absolute;
            bottom: 50px;
            right: 80px;
            z-index: 10;
            display: flex;
            gap: 15px;
        }

        .slider-btn {
            background: rgba(255, 255, 255, 0.3);
            border: 2px solid white;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            backdrop-filter: blur(5px);
        }

        .slider-btn:hover {
            background: rgba(255, 255, 255, 0.5);
            transform: scale(1.1);
        }

        .slider-dots {
            position: absolute;
            bottom: 50px;
            left: 80px;
            z-index: 10;
            display: flex;
            gap: 12px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: white;
            width: 40px;
            border-radius: 6px;
        }

        @media (max-width: 768px) {
            .slide-content {
                padding: 0 30px;
            }

            .slide-content h1 {
                font-size: 3rem;
            }

            .slide-content p {
                font-size: 1rem;
            }

            .slider-controls,
            .slider-dots {
                bottom: 30px;
                left: 30px;
                right: 30px;
            }
        } */

/* End Slider Hero Section */

/* Start New Slider Hero Section */
    .Slider_Hero_Section {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        /* Video Background - Fixed */
        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        /* Dark Overlay */
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 2;
        }

        /* Text Content Container */
        .text-slider-container {
            position: relative;
            z-index: 3;
            height: 100%;
            display: flex;
            align-items: center;
        }

        /* Text Slide */
        .text-slide {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            padding: 0 5%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }

        .text-slide.active {
            opacity: 1;
            visibility: visible;
        }

        .text-slide h1 {
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }

        .text-slide p {
            font-size: clamp(1rem, 2vw, 1.3rem);
            color: #f0f0f0;
            margin-bottom: 2rem;
            max-width: 600px;
            line-height: 1.6;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
        }

        .cta-link {
            display: inline-block;
            padding: 15px 35px;
            background: #ffffff;
            color: #333;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: 5px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .cta-link:hover {
            background: #f0f0f0;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        /* Navigation Dots */
        .slider-dots {
            position: absolute;
            bottom: 40px;
            left: 5%;
            z-index: 4;
            display: flex;
            gap: 12px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .dot:hover {
            background: rgba(255, 255, 255, 0.7);
        }

        .dot.active {
            background: #ffffff;
            width: 40px;
            border-radius: 6px;
        }

        /* Navigation Buttons */
        .slider-controls {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 4;
            pointer-events: none;
        }

        .slider-btn {
            pointer-events: all;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            border: 2px solid rgba(255, 255, 255, 0.5);
            color: #ffffff;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-btn:hover {
            background: rgba(255, 255, 255, 0.5);
            border-color: #ffffff;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .text-slide h1 {
                font-size: 2rem;
            }

            .text-slide p {
                font-size: 1rem;
            }

            .slider-dots {
                left: 50%;
                transform: translateX(-50%);
            }

            .slider-btn {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .cta-link {
                padding: 12px 25px;
                font-size: 1rem;
            }
        }
        /* End New Slider Hero Section */

/* Start Section About Us */
.About_US{
    background-image: url("../images/bg_sections/bg_about.jpg");
    background-size: cover;
    padding:50px;
}

.About_Us_title::after{
     content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #2ecc71);
  margin: 15px auto 0;
  border-radius: 2px;
  box-shadow: 0 3px 10px rgba(52, 152, 219, 0.3);
  transition: width 0.3s ease;
}
/* End Section About Us */

.Info{
    background-image:linear-gradient(rgba(0,0,0,.3) , rgba(0,0,0,.3)) , url("../images/bg_info.jpg");
    background-size: cover;
    background-attachment:fixed ;
}
/* Start Footer */
     footer {
            background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
            padding: 60px 0 30px;
            color: #2c3e50;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
            gap: 40px;
            margin-bottom: 40px;
            align-items: start;
        }

        .footer-logo {
            display: flex;
            align-items: flex-start;
        }

        .footer-logo img {
            max-width: 100%;
            height: auto;
            width: 250px;
        }

        .footer-section h3 {
            font-size: 20px;
            font-weight: 600;
            color: #1a5f7a;
            margin-bottom: 25px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #2c3e50;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            color: #1a5f7a;
            transform: translateX(3px);
        }

        .social-links {
            list-style: none;
        }

        .social-links li {
            margin-bottom: 15px;
        }

        .social-links a {
            color: #2c3e50;
            text-decoration: none;
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }

        .social-links a i {
            font-size: 20px;
            width: 24px;
        }

        .social-links a:hover {
            color: #1a5f7a;
        }

        .contact-info {
            list-style: none;
        }

        .contact-info li {
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
        }

        .contact-info li i {
            font-size: 20px;
            color: #1a5f7a;
            width: 24px;
            flex-shrink: 0;
        }

        .contact-info a {
            color: #2c3e50;
            text-decoration: none;
            transition: color 0.3s ease;
            word-break: break-all;
        }

        .contact-info a:hover {
            color: #1a5f7a;
        }

        .footer-divider {
            height: 1px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                #cbd5e0 20%, 
                #cbd5e0 80%, 
                transparent 100%
            );
            margin: 40px 0 30px;
        }

        .footer-bottom {
            text-align: center;
            color: #718096;
            font-size: 14px;
        }

        @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 576px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-logo {
                justify-content: center;
            }

            .footer-section h3 {
                text-align: center;
            }

            .social-links,
            .footer-links,
            .contact-info {
                text-align: center;
            }

            .social-links a,
            .contact-info li {
                justify-content: center;
            }
        }
/* End Footer */

/* ############################################################# */
/* ####################### Start About Use Page ################# */
/* ############################################################# */

.About_Section{
    background-image: url("../images/bg_sections/bg_about.jpg");
    background-size: cover;
}

/* Custom CSS */

.hero-section {
    background-image: url('../images/sustainability-hero-image.0b63573ca9d8547cac983e0b4db999d0.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh; /* Make the hero section take the full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section h1 {
    font-size: 3.5rem; /* Adjust the font size of the heading */
    font-weight: bold; /* Make the text bold */
    color: #ffffff; /* Set the text color to white */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Add a shadow for better readability */
}

.hero-section p {
    font-size: 1.5rem; /* Adjust the font size of the paragraph */
    color: #f8f9fa; /* Set the text color to a light shade */
    margin-top: 1rem; /* Add some spacing above the paragraph */
}

.sidebar-menu {
    /* background-color: #f8f9fa; */
    padding: 1.5rem;
    border-radius: 8px;
}

.sidebar-link {
    display: block;
    padding: 0.5rem 0;
    color: #999;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 1rem;
}

.sidebar-link:hover {
    color: #333;
    padding-left: 1.5rem;
    border-left-color: #007bff;
}

.sidebar-link.active {
    color: #333;
    font-weight: 600;
    border-left-color: #007bff;
    padding-left: 1.5rem;
}

.content-section {
     scroll-margin-top: 20px;
}

.content-section h3 {
    color: #333;
    font-size: 1.75rem;
}

.content-section h4 {
    color: #333;
    font-size: 1.25rem;
}

.content-section p {
    font-size: 1rem;
    line-height: 1.8;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Responsive */
@media (max-width: 991px) {
    .sidebar-menu {
        position: relative !important;
        top: 0 !important;
    }
}

/* ############################################################# */
/* ####################### End About Use Page ################# */
/* ############################################################# */


/* ############################################################# */
/* ################ Start Erosion_Control Page ################# */
/* ############################################################# */
    .Erosion{
        background-image: url("../images/bg_page.jpg");
        background-size: cover;
        height: 100vh;
        color:#fff;
        padding: 100px;
    }

    .Erosion h2{
        font-size: 50px;
    }

    .Erosion p{
        width: 500px;
    }


    .page_2{
        background-image: url("../images/bg_page2.jpg");
        background-size: cover;
        height: 100vh;
        color:#fff;
        padding: 100px;
        background-attachment: fixed;
    }

    .page_2 h2{
        font-size: 50px;
        text-align: right;
    }

    .page_2 p{
        width: 500px;
       float: right;
       text-align: right;
    }


    .page_3{
        background-image:linear-gradient(rgba(0,0,0,.5) , rgba(0,0,0,.0) ) , url("../images/bg_page3.jpg");
        background-size: cover;
        height: 100vh;
        color:#fff;
        padding: 100px;
        background-attachment: fixed;
    }

    .page_3 h2{
        font-size: 50px;
    }

    .page_3 p{
        width: 500px;
    }

     .page_4{
        background-image:linear-gradient(rgba(0,0,0,.5) , rgba(0,0,0,.0) ) ,  url("../images/bg_page4.jpg");
        background-size: cover;
        height: 100vh;
        color:#fff;
        padding: 100px;
        background-attachment: fixed;
    }

    .page_4 h2{
        font-size: 50px;
        text-align: right;
    }

    .page_4 p{
        width: 500px;
       float: right;
       text-align: right;
    }


     .page_5{
        background-image:linear-gradient(rgba(0,0,0,.5) , rgba(0,0,0,.0) ) , url("../images/bg_page5.jpg");
        background-size: cover;
        height: 100vh;
        color:#fff;
        padding: 100px;
        background-attachment: fixed;
    }

    .page_5 h2{
        font-size: 50px;
    }

    .page_5 p{
        width: 500px;
    }

    .page_6{
        background-image:linear-gradient(rgba(0,0,0,.5) , rgba(0,0,0,.0) ) ,  url("../images/bg_page6.jpg");
        background-size: cover;
        height: 100vh;
        color:#fff;
        padding: 100px;
        background-attachment: fixed;
    }

    .page_6 h2{
        font-size: 50px;
        text-align: right;
    }

    .page_6 p{
        width: 500px;
       float: right;
       text-align: right;
    }

     .page_7{
        background-image:linear-gradient(rgba(0,0,0,.5) , rgba(0,0,0,.0) ) , url("../images/bg_page7.jpg");
        background-size: cover;
        height: 100vh;
        color:#fff;
        padding: 100px;
        background-attachment: fixed;
    }

    .page_7 h2{
        font-size: 50px;
    }

    .page_7 p{
        width: 500px;
    }

    .page_8{
        background-image:linear-gradient(rgba(0,0,0,.5) , rgba(0,0,0,.0) ) ,  url("../images/bg_page8.jpg");
        background-size: cover;
        height: 100vh;
        color:#fff;
        padding: 100px;
        background-attachment: fixed;
    }

    .page_8 h2{
        font-size: 50px;
        text-align: right;
    }

    .page_8 p{
        width: 500px;
       float: right;
       text-align: right;
    }

    .page_9{
        background-image:linear-gradient(rgba(0,0,0,.5) , rgba(0,0,0,.0) ) , url("../images/bg_page9.jpg");
        background-size: cover;
        height: 100vh;
        color:#fff;
        padding: 100px;
        background-attachment: fixed;
        background-position: center;
    }

    .page_9 h2{
        font-size: 50px;
    }

    .page_9 p{
        width: 500px;
    }

    @media(max-width:600px){
        .page p{
            width: auto;
        }
        .page{
                padding: 80px 20px;
        }
        .page_2{
            background-position:top right;
        }
    }

    /* Start Slider Products */


    .container_Slider{
        width: 90%;
        margin: 10px auto;
    }
    
        .header {
            margin-bottom: 40px;
            margin-top: 40px;
        }

        .header h1 {
            font-size: 2.5rem;
            color: #1a1a1a;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .header p {
            color: #4a4a4a;
            line-height: 1.6;
            max-width: 700px;
            font-size: 1rem;
        }

        .slider-wrapper {
            position: relative;
            padding: 0 60px;
        }

        .swiper {
            width: 100%;
            padding: 20px 0 60px 0;
        }

        .swiper-slide {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: auto;
        }

        .swiper-slide:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }

        .slide-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
        }

        .slide-content {
            padding: 30px;
            position: relative;
        }

        .slide-content h3 {
            font-size: 1.5rem;
            color: #1a1a1a;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .slide-content p {
            color: #666;
            line-height: 1.6;
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        .slide-arrow {
            position: absolute;
            bottom: 25px;
            right: 25px;
            width: 45px;
            height: 45px;
            background: #00a99d;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .slide-arrow:hover {
            background: #008c82;
        }

        .slide-arrow svg {
            width: 20px;
            height: 20px;
            fill: white;
        }

        .navigation {
            display: flex;
            gap: 15px;
            justify-content: flex-end;
            margin-bottom: 30px;
        }

        .nav-button {
            background: white;
            border: 2px solid #ddd;
            padding: 0;
            cursor: pointer;
            font-size: 1rem;
            color: #666;
            transition: all 0.3s ease;
            border-radius: 4px;
            width: 80px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 500;
        }

        .nav-button:hover:not(:disabled) {
            background: #00a99d;
            color: white;
            border-color: #00a99d;
        }

        .nav-button:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        @media (max-width: 768px) {
            .slider-wrapper {
                padding: 0 20px;
            }

            .header h1 {
                font-size: 2rem;
            }

            .slide-content {
                padding: 20px;
            }

            .slide-image {
                height: 200px;
            }
        }

    /* End Slider Products */

/* ############################################################# */
/* ################ End Erosion_Control Page ################# */
/* ############################################################# */


/* Start Butto OF Arrow In Pages  */

.explore-btn {
            display: inline-flex;
            overflow: hidden;
            border-radius: 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none;
            font-family: Arial, sans-serif;
        }

        .explore-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        .btn-text {
            background: #0a4a5c;
            color: white;
            padding: 15px 30px;
            font-size: 18px;
            font-weight: 600;
            transition: background 0.3s ease;
        }

        .btn-icon {
            background: #dc3545;
            color: white;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .btn-icon i {
            font-size: 24px;
            transition: transform 0.3s ease;
        }

        .explore-btn:hover .btn-text {
            background: #0d5a6f;
        }

        .explore-btn:hover .btn-icon {
            background: #c82333;
        }

        .explore-btn:hover .btn-icon i {
            transform: translateX(5px);
        }


        /* End  Butto OF Arrow In Pages  *

        /* Start Slider Product Application Page */

           .product-slider-main {
            width: 100%;
            height: 100vh !important;
        }

        .product-slider-main .swiper-slide {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background-size: cover;
            background-position: center;
        }

        .product-slider-main .swiper-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
        }

        .product-slide-content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: white;
            padding: 20px;
        }

        .product-slide-content h2 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
            letter-spacing: 2px;
        }

        .product-slide-content p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
        }

        /* Custom Navigation Buttons */
        .product-slider-nav {
            position: absolute;
            bottom: 90px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 20;
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .product-nav-btn {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid white;
            color: white;
            padding: 12px 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            backdrop-filter: blur(10px);
        }

        .product-nav-btn:hover {
            background: rgba(255, 255, 255, 0.9);
            color: #333;
            transform: translateY(-2px);
        }

        .product-nav-divider {
            width: 60px;
            height: 2px;
            background: white;
        }

        /* Pagination Dots */
        .product-slider-main .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: white;
            opacity: 0.5;
        }

        .product-slider-main .swiper-pagination-bullet-active {
            opacity: 1;
            background: white;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .product-slide-content h2 {
                font-size: 2.5rem;
            }

            .product-slide-content p {
                font-size: 1.2rem;
            }

            .product-nav-btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }

            .product-slider-nav {
                bottom: 30px;
            }
        }

        /* End Slider Product Applications Page */


        /* ٍStar Main Section 2 Product Application */

         .container_Sidbar {
            display: flex;
            min-height: 100vh;
            max-width: 1400px;
            margin: 0 auto;
            background: white;
        }

        .sidebar {
            width: 380px;
            padding: 60px 40px;
            position: relative;
            overflow: hidden;
        }

        .sidebar::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 2  100%;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
            transform: rotate(-15deg);
        }

        .nav-menu {
            position: relative;
            z-index: 1;
        }

        .nav_link_sides {
            display: block;
            padding: 18px 0;
            color: #999;
            text-decoration: none;
            font-size: 20px;
            font-weight: 400;
            letter-spacing: 3px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .nav_link_sides:hover {
            color: #555;
            padding-right: 15px;
        }

        .nav_link_sides.active {
            color: #000;
            font-weight: 600;
            padding-right: 15px;
            border-right: 4px solid #115d5f;
        }

        .content {
            flex: 1;
            padding: 80px 60px;
            background: white;
        }

        .content-header {
            margin-bottom: 50px;
        }

        .content-title {
            font-size: 28px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 30px;
            line-height: 1.5;
        }

        .content-text {
            font-size: 16px;
            line-height: 1.9;
            color: #444;
            margin-bottom: 25px;
        }

        .highlight {
            position: relative;
            display: inline-block;
        }

        .stats {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background:linear-gradient(135deg, #0d6e6f 0%, #78a53f 100%);
            color: white;
            padding: 4px 12px;
            border-radius: 4px;
            font-weight: 600;
        }

        @media (max-width: 968px) {
            

            .sidebar {
                width: 100%;
                padding: 40px 30px;
            }

            .content {
                padding: 40px 30px;
            }

            .nav-link {
                font-size: 16px;
                padding: 15px 0;
            }
        }

        @media (max-width: 640px) {
            .content-title {
                font-size: 22px;
            }

            .content-text {
                font-size: 15px;
            }
        }
        .Slide_Products{
            background-image: url("../images/bg_slider_product.jpg");
            background-size: cover;
        }
           /* ٍStar Main Section 2 Product Application */


           /* #################################################### */
           /* ##################### Start Projects Page ########## */
           /* #################################################### */

           .categories-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .category-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: block;
            aspect-ratio: 1;
            position: relative;
        }

        .category-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .category-image-wrapper {
            position: relative;
            width: 100%;
            height: 70%;
            overflow: hidden;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
        }

        .category-logo {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .category-card:hover .category-logo {
            transform: scale(1.05);
        }

        .category-content {
            padding: 20px;
            height: 30%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: center;
            background: #fff;
        }

        .category-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
            margin: 0;
            line-height: 1.3;
        }

        .category-count {
            font-size: 0.9rem;
            color: #666;
            margin-top: 5px;
        }

        /* Tablet - 2 columns */
        @media (max-width: 1024px) {
            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .section-header h2 {
                font-size: 2rem;
            }
        }

        /* Mobile - 2 columns */
        @media (max-width: 768px) {
            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .section-header h2 {
                font-size: 1.8rem;
            }

            .section-header p {
                font-size: 1rem;
            }

            .category-image-wrapper {
                padding: 20px;
            }

            .category-title {
                font-size: 0.95rem;
            }

            .category-count {
                font-size: 0.85rem;
            }

            .category-content {
                padding: 15px;
            }
        }

        /* Very small mobile */
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .categories-grid {
                gap: 12px;
            }

            .category-image-wrapper {
                padding: 15px;
            }

            .category-title {
                font-size: 0.9rem;
            }
        }
        
        @media(max-width:600px){
            .navbar{
    left: 0;

}

.About_US {
   padding: 50px 0 0 0;
}

.container.mt-5.mb-5 h2 {
    font-size: 25px !important;
}
    .product-image {
        height: 140px;
    }
    
    .product-title {
        font-size: 16px;
    }
    .view-btn{
        font-size: 13px;
        width: 80%;
        margin: 0 auto;
    }
    
    .product-info {
    padding: 0;
}

.product-card{
    height: 379px;
}
        }


            .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 20px;
        }

        .project-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        }

        .project-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .project-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .project-title {
            font-size: 18px;
            font-weight: bold;
            color: #1a1a1a;
            margin-bottom: 15px;
            line-height: 1.4;

        }

        .project-description {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #00a19a;
            color: white;
            border-radius: 50%;
            text-decoration: none;
            transition: background-color 0.3s ease;
            align-self: flex-end;
        }

        .read-more:hover {
            background-color: #008c86;
        }

        .read-more::after {
            content: '→';
            font-size: 20px;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .projects-grid {
                grid-template-columns: 1fr;
            }
        }

        
           /* #################################################### */
           /* ##################### End Projects Page ############ */
           /* #################################################### */


           /* #################################################### */
           /* ##################### Start Careers Page ############ */
           /* #################################################### */
            .wrapper {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            padding: 50px 60px;
            /* box-shadow: 0 2px 10px rgba(0,0,0,0.1);   */
        }

        .main-heading {
            color: #333;
            font-size: 32px;
            margin-bottom: 10px;
        }

        .tagline {
            color: #666;
            font-size: 16px;
            margin-bottom: 30px;
        }

        .tagline .highlight {
            color: #333;
            font-weight: bold;
        }

        .text-block {
            margin-bottom: 20px;
            font-size: 15px;
        }

        .link-style {
            color: #e74c3c;
            text-decoration: none;
        }

        .link-style:hover {
            text-decoration: underline;
        }

        .benefits-heading {
            margin-top: 30px;
            margin-bottom: 15px;
            font-size: 15px;
        }

        .benefits-list {
            list-style: none;
            margin-bottom: 25px;
        }

        .list-item {
            padding-left: 20px;
            position: relative;
            margin-bottom: 8px;
            font-size: 15px;
        }

        .list-item:before {
            content: "•";
            position: absolute;
            left: 0;
            color: #333;
            font-weight: bold;
        }

        .final-text {
            margin-top: 25px;
        }

        @media (max-width: 768px) {
            .wrapper {
                padding: 30px 25px;
            }
        }

         /* #################################################### */
           /* ##################### End Careers Page ############ */
           /* #################################################### */

           .contact-wrapper {
            /* display: flex; */
            min-height: 100vh;
        }

        .form-section {
            flex: 1;
            background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
            padding: 60px 50px;
            position: relative;
            overflow: hidden;
        }

        .form-section::after {
            content: '';
            position: absolute;
            right: -100px;
            top: 0;
            bottom: 0;
            width: 300px;
            background: linear-gradient(to right, transparent, rgba(255,255,255,0.3));
            transform: skewX(-15deg);
        }

        .form-content {
            width:100%;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .main-title {
            font-size: 28px;
            color: #333;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .subtitle {
            color: #666;
            font-size: 14px;
            margin-bottom: 30px;
        }

        .input-group {
            margin-bottom: 20px;
        }

        .input-label {
            display: block;
            font-size: 13px;
            color: #333;
            margin-bottom: 6px;
        }

        .required-mark {
            color: #e74c3c;
        }

        .input-field {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #ccc;
            font-size: 14px;
            font-family: Arial, sans-serif;
            background: white;
        }

        .input-field:focus {
            outline: none;
            border-color: #0066ff;
        }

        .name-row {
            display: flex;
            gap: 15px;
        }

        .name-row .input-group {
            flex: 1;
        }

        .helper-text {
            font-size: 11px;
            color: #999;
            margin-top: 3px;
        }

        .select-field {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #ccc;
            font-size: 14px;
            background: white;
            cursor: pointer;
        }

        .select-field:focus {
            outline: none;
            border-color: #0066ff;
        }

        .textarea-field {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #ccc;
            font-size: 14px;
            font-family: Arial, sans-serif;
            resize: vertical;
            min-height: 120px;
            background: white;
        }

        .textarea-field:focus {
            outline: none;
            border-color: #0066ff;
        }

        .section-title {
            font-size: 16px;
            color: #333;
            margin: 30px 0 20px 0;
            font-weight: 600;
        }

        .submit-btn {
            background: #0066ff;
            color: white;
            padding: 12px 35px;
            border: none;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            text-transform: uppercase;
            margin-top: 10px;
        }

        .submit-btn:hover {
            background: #0052cc;
        }

            .map-section {
                flex: 1;
                position: relative;
                min-height: 400px;
            }

            .map-container {
                width: 100%;
                height: 400px;
                position: relative;
            }

            .map-iframe {
                width: 100%;
                height: 100%;
                border: none;
            }

            @media (max-width: 968px) {
                .contact-wrapper {
                    flex-direction: column;
                }

                .form-section {
                    padding: 40px 30px;
                }

                .map-section {
                    min-height: 500px;
                }

                .name-row {
                    flex-direction: column;
                    gap: 0;
                }
            }


            /* Start Map Projects  */
            
            /* Slider Section */
            .branches-slider-section {
                width: 100%;
                padding: 20px 0;
                background: #fff;
            }

            .slider-container {
                max-width: 1400px;
                margin: 0 auto;
                position: relative;
                padding: 0 60px;
            }

            .section-title {
                text-align: center;
                font-size: 36px;
                font-weight: bold;
                color: #105f60;
                margin-bottom: 20px;
            }

            .swiper {
                width: 100%;
                height: 100%;
                padding: 10px 0 30px;
            }

            .swiper-slide {
                height: auto;
            }

            .branch-card {
                width: 100%;
                height: 200px;
                background: linear-gradient(135deg, #105f60 0%, #0a4344 100%);
                border-radius: 15px;
                padding: 25px;
                position: relative;
                overflow: hidden;
                cursor: pointer;
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }

            .branch-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 30px rgba(130, 173, 62, 0.3);
            }

            .branch-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 4px;
                background: linear-gradient(90deg, #82ad3e, #f89b21);
            }

            .branch-title {
                color: white;
                font-size: 16px;
                font-weight: bold;
                margin-bottom: 12px;
                padding-right: 60px;
            }

            .branch-details {
                color: rgba(255, 255, 255, 0.9);
                font-size: 14px;
                line-height: 1.7;
                padding-right: 60px;
            }

            .branch-detail-item {
                margin: 5px 0;
                display: flex;
                align-items: flex-start;
            }

            .branch-detail-item::before {
                content: '•';
                color: #f89b21;
                font-weight: bold;
                margin-right: 8px;
            }

            .icon-circle {
                position: absolute;
                top: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
                background: rgba(130, 173, 62, 0.2);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.3s ease;
                z-index: 2;
                text-decoration: none;
            }

            .icon-circle:hover {
                background: rgba(130, 173, 62, 0.35);
                transform: scale(1.1);
            }

            .swiper-navigation {
                display: flex;
                justify-content: center;
                gap: 15px;
                margin-top: 30px;
            }

            .swiper-button-next,
            .swiper-button-prev {
                position: static;
                width: 50px;
                height: 50px;
                background: #82ad3e;
                border-radius: 50%;
                color: white;
                transition: all 0.3s ease;
                margin: 0;
            }

            .swiper-button-next:hover,
            .swiper-button-prev:hover {
                background: #6d9333;
                transform: scale(1.1);
            }

            .swiper-button-next::after,
            .swiper-button-prev::after {
                font-size: 20px;
                font-weight: bold;
            }

            /* Map Section */
            .map-section {
                width: 100%;
                background: #f5f5f5;
                padding: 0;
                margin: 0;
                position: relative;
                height: 500px;
                max-height: 500px;
                overflow: hidden;
            }

            #map {
                width: 100%;
                height: 500px;
                max-height: 500px;
            }

            .maplibregl-canvas-container {
                z-index: 0;
            }

            /* Custom Marker */
            .custom-marker {
                width: 40px;
                height: 50px;
                position: relative !important;
                z-index: 50 !important;
                cursor: pointer;
                transition: all 0.3s ease;
                animation: bounce 1s ease-in-out;
                pointer-events: auto;
            }

            .custom-marker:hover {
                transform: scale(1.15);
            }

            .custom-marker::before {
                content: '';
                position: absolute;
                width: 40px;
                height: 40px;
                background: #f89b21;
                border-radius: 50% 50% 50% 0;
                transform: rotate(-45deg);
                top: 0;
                left: 0;
                border: 3px solid white;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            }

            .custom-marker::after {
                content: '';
                position: absolute;
                width: 14px;
                height: 14px;
                background: white;
                border-radius: 50%;
                top: 8px;
                left: 13px;
                z-index: 2;
                box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            }

            .custom-marker:hover::before {
                background: #82ad3e;
            }

            @keyframes bounce {
                0%, 100% { transform: translateY(0) scale(1); }
                50% { transform: translateY(-10px) scale(1.05); }
            }

            /* Map Overlay Info */
            .map-overlay-info {
                position: absolute;
                top: 20px;
                left: 20px;
                background: rgba(16, 95, 96, 0.95);
                padding: 20px 30px;
                border-radius: 15px;
                z-index: 1;
                backdrop-filter: blur(10px);
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
            }

            .overlay-title {
                font-size: 28px;
                font-weight: bold;
                color: #fff;
                margin-bottom: 5px;
            }

            .overlay-subtitle {
                font-size: 14px;
                color: rgba(255, 255, 255, 0.9);
                font-weight: 500;
            }

            /* Info Card */
            .marker-info-card {
                position: relative;
                transform: translate(-40%, calc(-100% - 14px));
                background: #fff;
                border-radius: 12px;
                padding: 16px 18px;
                min-width: 280px;
                max-width: 360px;
                box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
                pointer-events: auto;
                z-index: 2147483647 !important;
            }

            .marker-info-card .card-title {
                font-weight: 800;
                font-size: 18px;
                margin-bottom: 10px;
                color: #105f60;
                display: flex;
                justify-content: space-between;
                gap: 10px;
                align-items: center;
            }

            .marker-info-card .close-btn {
                cursor: pointer;
                font-size: 20px;
                line-height: 30px;
                color: #666;
                /* padding: 3px 8px;
                border-radius: 8px; */
                transition: all 0.2s ease;
                width: 30px;
                height: 30px;
                border-radius: 50%;
                display: none;
            }

            .marker-info-card .close-btn:hover {
                background: #f2f2f2;
                color: #105f60;
            }

            .marker-info-card .card-row {
                font-size: 14px;
                color: #333;
                margin: 8px 0;
                line-height: 1.5;
                word-break: break-word;
            }

            .marker-info-card .card-row b {
                color: #105f60;
                font-weight: 700;
            }

            .marker-info-card:after {
                content: "";
                position: absolute;
                left: 50%;
                bottom: -10px;
                transform: translateX(-50%);
                border-width: 10px 10px 0 10px;
                border-style: solid;
                border-color: #fff transparent transparent transparent;
                filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.18));
            }

            @media(max-width: 768px) {
                .slider-container {
                    padding: 0 20px;
                }

                .section-title {
                    font-size: 28px;
                }

                .map-overlay-info {
                    left: 10px;
                    top: 10px;
                    padding: 15px 20px;
                }

                .overlay-title {
                    font-size: 22px;
                }
            }
            /* End Map Projects */

/* Strat Mobile style */
@media(max-width:600px) {
    body>section.About_US>div>div>div:nth-child(2)>img {
        margin-top: 40px !important;
    }

    .container_Sidbar{
        display: block;
    }
        .product-slider-nav {
        bottom: 150px;
    }
    .form-content{
        width: 100%;
    }
}

/* End Mobile Style */

/* Start Product Style */


        .title_section_product {
            text-align: center;
            color: #105f61;
            font-size: 3.5rem;
            margin-bottom: 15px;
            animation: fadeInDown 0.8s ease;
            font-weight: 700;
        }

        .subtitle {
            text-align: center;
            color: #6c757d;
            font-size: 1.3rem;
            margin-bottom: 60px;
            animation: fadeInUp 0.8s ease;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }

        .product-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            animation: fadeInScale 0.6s ease backwards;
            border: 2px solid transparent;
        }

        .product-card:nth-child(1) { animation-delay: 0.1s; }
        .product-card:nth-child(2) { animation-delay: 0.2s; }
        .product-card:nth-child(3) { animation-delay: 0.3s; }
        .product-card:nth-child(4) { animation-delay: 0.4s; }
        .product-card:nth-child(5) { animation-delay: 0.5s; }
        .product-card:nth-child(6) { animation-delay: 0.6s; }

        .product-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 60px rgba(16, 95, 97, 0.2);
            border-color: #105f61;
        }

        .product-image {
            position: relative;
            width: 100%;
            height: 250px;
            overflow: hidden;
            background: #f5f7fa;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.12);
        }

        .product-info {
            padding: 30px;
        }

        .product-title {
            font-size: 16px;
            color: #2d3748;
            margin-bottom: 15px;
            font-weight: 700;
            line-height: 1.4;
            transition: color 0.3s ease;
            text-align: center;
        }

        .product-card:hover .product-title {
            color: #105f61;
        }

        .product-description {
            color: #718096;
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 25px;
            text-align: center;
        }

        .view-btn {
            width: 100%;
            padding: 16px;
            background: #105f61;
            color: white;
            border: none;
            border-radius: 14px;
            font-size: 1.05rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(16, 95, 97, 0.3);
            position: relative;
            overflow: hidden;
            display: block;
            text-align: center;
        }



        .view-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .view-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .view-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(16, 95, 97, 0.4);
            background: #0d4c4e;
            text-decoration: none;
            color:#fff;
        }

        .view-btn:active {
            transform: translateY(-1px);
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.85);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @media (max-width: 768px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .title_section_product {
                font-size: 2.5rem;
            }

            .subtitle {
                font-size: 1.1rem;
                margin-bottom: 40px;
            }

            .product-title {
                font-size: 1.4rem;
            }

            .product-image {
                height: 260px;
            }

            .product-info {
                padding: 25px;
            }
        }

        @media (max-width: 480px) {

            .title_section_product {
                font-size: 2rem;
            }

            .subtitle {
                font-size: 1rem;
                margin-bottom: 35px;
            }

            .products-grid {
                gap: 20px;
            }

            .product-image {
                height: 220px;
            }

            .product-info {
                padding: 20px;
            }

            .product-title {
                font-size: 1.3rem;
            }

            .product-description {
                font-size: 0.95rem;
            }
        }

/* End Product style */

/* Start Single Product */

 /* Main content area */
        .main-content {
            background: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        /* Top section: slider + info */
        .top-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 40px;
        }

        /* Left side: thumbnails + main image (6 columns) */
        .slider-section {
            display: flex;
            gap: 15px;
        }

        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 15px;
            width: 180px;
        }

        .thumbnail {
            width: 100%;
            height: 90px;
            cursor: pointer;
            border-radius: 8px;
            overflow: hidden;
            border: 3px solid transparent;
            transition: border-color 0.3s;
        }

        .thumbnail.active {
            border-color: #105f61;
        }

        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .main-image {
            flex: 1;
            height: 400px;
            border-radius: 8px;
            overflow: hidden;
        }

        .main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Right side: title + buttons (6 columns) */
        .info-section {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 25px;
        }

        .product_title_sigle{
            color: #333;
            font-weight: bold;
            font-size: 2rem;
        }

        .buttons-group {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .pdf-button {
            display: inline-block;
            background-color: #105f61;
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.1em;
            transition: background-color 0.3s;
            border: none;
            cursor: pointer;
            text-align: center;
        }
        .pdf-button{
            text-decoration: none;
        }

        .pdf-button:hover {
            background-color: #0d4d4f;
            color:#fff;
            text-decoration: none;
        }


        /* Description below */
        .project-description {
            font-size: 1.1em;
            color: #666;
            line-height: 1.8;
        }

        @media (max-width: 1024px) {
            .top-section {
                grid-template-columns: 1fr;
            }

            .slider-section {
                flex-direction: column;
            }

            .sidebar {
                flex-direction: row;
                width: 100%;
                overflow-x: auto;
            }

            .thumbnail {
                min-width: 100px;
            }
        }

        @media (max-width: 768px) {
            .gallery-section {
                grid-template-columns: 1fr;
            }

            .main-content {
                padding: 20px;
            }

            .project-title {
            }
        }

        /* Order Popup Styles */
        .order-popup {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            animation: fadeIn 0.3s ease;
        }

        .order-popup.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .order-popup-content {
            background: white;
            padding: 40px;
            border-radius: 15px;
            max-width: 550px;
            width: 90%;
            position: relative;
            animation: slideUp 0.3s ease;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
                height: 90%;
    overflow: auto;
        }

        .order-popup-close {
            position: absolute;
            left: 20px;
            top: 20px;
            font-size: 28px;
            font-weight: bold;
            color: #666;
            cursor: pointer;
            background: none;
            border: none;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .order-popup-close:hover {
            background-color: #f0f0f0;
            color: #333;
        }

        .order-popup h2 {
            text-align: center;
            margin-bottom: 30px;
            color: #333;
            font-weight: bold;
            font-family: 'Cairo', sans-serif;
        }

        .order-form-group {
            margin-bottom: 20px;
        }

        .order-form-group label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-weight: 600;
            font-family: 'Cairo', sans-serif;
        }

        .order-form-group input,
        .order-form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 15px;
            transition: all 0.3s ease;
            font-family: 'Cairo', sans-serif;
        }

        .order-form-group input:focus,
        .order-form-group textarea:focus {
            outline: none;
            border-color: #105f61;
            box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
        }

        .order-form-group input[readonly] {
            background-color: #f8f9fa;
            cursor: not-allowed;
        }

        .order-form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .order-submit-btn {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #105f61 0%, #105f61 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
            font-family: 'Cairo', sans-serif;
        }

        .order-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px #105f61;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Success Message */
        .success-message {
            display: none;
            text-align: center;
            padding: 20px;
        }

        .success-message.active {
            display: block;
        }

        .success-message i {
            font-size: 60px;
            color: #105f61;
            margin-bottom: 20px;
        }

        .success-message h3 {
            color: #333;
            margin-bottom: 10px;
            font-family: 'Cairo', sans-serif;
        }

        .success-message p {
            color: #666;
            font-family: 'Cairo', sans-serif;
        }
/* End Single Product */

.maplibregl-marker img {
    width: 30px;
}

/* Start Pagination */

 .pagination {
            display: flex;
            gap: 8px;
            list-style: none;
            flex-wrap: wrap;
            justify-content: center;
        }

        .pagination li {
            display: inline-block;
        }

        .pagination a {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 0 12px;
            text-decoration: none;
            color: #008c82;
            background: #f8f9fa;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .pagination a:hover {
            background: #008c82;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
        }

        .pagination .active a {
            background: linear-gradient(135deg, #008c82 0%, #00a19a 100%);
            color: white;
            border-color: #008c82;
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
        }

        .pagination .disabled a {
            color: #ccc;
            cursor: not-allowed;
            background: #f0f0f0;
        }

        .pagination .disabled a:hover {
            background: #f0f0f0;
            color: #ccc;
            transform: none;
            box-shadow: none;
        }

        .pagination .prev a,
        .pagination .next a {
            font-weight: bold;
            padding: 0 16px;
        }

        @media (max-width: 600px) {
            .container {
                padding: 5px;
                overflow: hidden;
            }

            .pagination a {
                min-width: 35px;
                height: 35px;
                font-size: 14px;
            }
            
                    a.view-btn {
    font-size: 11px;
}

        .product-title {
        font-size: 12px !important;
        margin-top: 20px;
    }
    
        .product-image {
        height: 188px;
    }
    
        .product-info {
        padding: 0;
    }
    
        .product-card {
        height: 310px;
    }
    
    .Hero_Section{
    overflow: hidden;
}

.slider-controls{
    top:75%;
}
        }


/* End Pagination */