/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    font-family: Poppins, sans-serif;
} */

#navbar-logo{
    width: 200px;
    height: 100px;
    padding-top: 18px;
    object-fit: cover !important;
    /* margin-top: 2px; */
}

.logote{
    /* margin-left: 22px;
    margin-top:3px; */
    width: 199px;
    margin-top:3px;
    /* background-color: yellow; */
}

#logot{
    text-align: center;
}

/* Main navigation */   
.ib-nav {
    position: fixed;
    top: 1;
    left: 0;
    right: 0;
    /* background-color: black; */
    z-index: 999;
}

.ib-nav.scroll-top {
    top: 1px;
    /* bottom: auto; */
    background-color: black;
    transition: 0.7s ease;
}

.ib-nav ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1vw 2vw;
    padding: 1vw 1.5vw;
    z-index: 990;
    /* background-color: rgba(234, 230, 230, 0.497); */
    /* background-color: transparent; */
    color: white;
    font-family: "Poppins", sans-serif;
    border-bottom: 1px solid white;
}

.ib-nav ul li {
    list-style: none;
    position: relative;
    cursor: pointer;
    font-size: 1vw;
    font-weight: 600;
    transition: 1s ease;
    color: white;
    /* padding: 5px; */
}

.ib-nav ul li a {
    font-size: 1vw;
    font-weight: 600;
    /* color: black;  Adjust color as needed */
    padding: 5px;
    border-bottom: 0 !important;
    color: white;
}

/* .ib-nav ul li a:hover {
    color:rgb(41, 36, 36);
} */

/* Dropdown */
.ib-nav ul li ul {
    position: absolute;
    top: 100%; /* Position below the parent <li> */
    left: 0;
    display: none;
    background-color: rgb(223, 220, 220);
    width: 180px;
    z-index: 992;
    transition: opacity 1s ease;
    opacity: 0;
}

.ib-nav ul li ul li {
    width: 100%;
    border-bottom: 1px solid black;
}

.ib-nav ul li ul li a {
    display: block;
    padding: 10px;
    color: black;
    text-decoration: none;
    font-size: 0.9vw; 
}

.ib-nav ul li ul li a:hover {
    background-color: rgb(236, 234, 234);
}

.ib-nav ul li:hover > ul {
    display: block; /* Show dropdown on hover */
    opacity: 1; /* Smooth fade-in effect */
    transition: opacity 1s ease;
}

/* Responsive Styles */
.menu-icon {
    display: none;
    font-size: 2em;
    position: absolute;
    top: 38px;
    right: 20px;
    cursor: pointer;
}


/* float left icon */

/* Floating Icon */
.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 30px;
    /* background-color: #007bff; */
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    padding: 10px;

}

.floating-btn img {
    width: 50px;
    height: 50px;
    display: none;
}

#float-btns{
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-left: 5px;

}

/* Option Buttons Container */
.option-btns {
    position: fixed;
    bottom: 130px;
    right: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 100;
    gap: 22px;
}

/* Individual Option Button Styling */
.option-btn {
    display: block;
    margin: 5px 0;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.option-btn:hover {
    background-color: #0056b3;
}

/* icon end*/

/* google translate start*/
#google_translate_element {
    position: absolute;
    top: 18px;
    right: 10px;
    z-index: 999;
    cursor: pointer;
    padding: 10px 15px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 5px;   
    width: 185px;
  }

  .google_translate_element:hover {
    background-color: #e45400;
  }

  /* Arabic style when toggled */
  .arabic {
    direction: rtl;
    font-family: "Arial", sans-serif;
  }

  @media (max-width: 600px) {
      #google_translate_element{
          top: 60px;
          position: fixed !important;
      }
  }

/* google translate end*/


/* inquiryform start */

.inquiryform {
    max-width: 90%;
    /* margin-top: 100px; */
    margin: auto;
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.inq-head {
    text-align: center;
    margin-bottom: 20px;
    margin: 100px auto 20px auto;
}

.inquiryform {
    display: flex;
    flex-direction: column;
}

fieldset {
    border: 1px solid #ddd;
    margin-bottom: 15px;
    padding: 15px;
}

legend {
    font-weight: bold;
    margin-bottom: 10px;
}

label {
    margin-bottom: 5px;
    display: block;
}

#inq-inp[type="text"], #inq-inp[type="email"], input[type="tel"], textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#inq-inp[type="checkbox"] {
    margin-right: 10px;
}

.inqbtn {
    padding: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.inqbtn:hover {
    background-color: #0056b3;
}


/* inquiryform end */

/* Style for the switch toggle button */
/* Style for the switch toggle button */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    top: 60px;   
    right: 120px;
    float: right;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Style for the toggle text */
.toggle-text {
    font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
    color: black;
    float: right;   
    margin-right: 30px;
    width: fit-content;
    /* display: inline; */
}



/* For screen widths of 768px or smaller */
@media (max-width: 786px) {
    .ib-nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        /* background-color: white; */
        width: 100%;
        height: auto;
        background-color: #252B50;
        color: white;
        gap: 3vw 0;
    }

    .ib-nav ul.active {
        display: flex;
    }

    .ib-nav ul li {
        width: 100%;
        text-align: center;
        font-size: 4vw;
        border-bottom: 1px solid white;
        color: white;
    }

    .ib-nav ul li a {
        font-size: 4vw;
        padding: 15px 0;
        font-size: 4vw;
        color: white;
    }

    .ib-nav ul li ul {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
    }

    .ib-nav ul li ul li {
        width: 100%;
        text-align: center;
        
    }

    .ib-nav ul li ul li a {
      font-size: 3vw;
    }

    .menu-icon {
        display: block;
    }

    #navbar-logo{
        width: 100%;
        height: 90px;
        margin-top: -28px;
        margin-left: 63px;
    }

    #logot{
        font-size: 10px;
        margin-left: 110px;
        
    }

    .distribution img{
        width: 50%;
    }

    .first_fold{
        margin-bottom: -100px;
    } 

    .homePageThree .header-section .top-bar{
        height: 100px;
    }

    #ib-naj{
        margin-top: 118px;
    }

    #toggleText{
        font-size: 11px;
        margin-top: 1px !important;
    }
   
    .inq-head{
        margin-top: 130px !important;
    }

    #nav-list{
        margin-top: 35px;
    }

    .switch {
        width: 60px;
        height: 34px;
        margin-right: 12px;
        top: 38px;   
        right: 21px;
        float: right;
    }

    #arabi-2img{
        width: 100% !important;
        /* margin-top: -110px; */
        padding: 0 0 20px 0 !important;
    }

    .option-btns {
        position: fixed;
        bottom: 190px;
        right: 27px;
        display: none;
        flex-direction: column;
        align-items: center;
        z-index: 100;
        gap: 22px;
    }

    .toggle-text {
        font-size: 18px;
        font-weight: 500;
        margin-top: 10px;
        color: black;
        float: right;
        margin-right: -53px;
        width: fit-content;
        /* display: inline; */
    }

    .indexlogo{
        margin-top: -26px !important;
    }

   
    
}

@media ( max-width:786px){

    .floating-btn{
     position: fixed;
    bottom: 113px;
    right: 20px;
    background-color: #007bff;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    padding: 10px;
       
    }

 
    .floating-btn img {
        width: 50px;
        height: 50px;
        display: block;
        /* right:35px; */
    }
}




