/* ============================================
   GENERAL STYLES
   ============================================ */

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

/* ============================================
   HEADER STYLES
   ============================================ */

header {
    background-color: #000;
    --text-color: #fff;
    --main-color: #f6cc04;
    /* border-bottom: 1px solid #f5f5f5; */
    /* overflow-x: hidden; */
 position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: transform 0.4s ease-in-out;

}
/* .header-f{
   position: fixed;
    width: 100%;
    top: 0;
} */

header.header-hidden {
    transform: translateY(-100%);
}

.logo {
    width: clamp(200px, 10vw, 220px);
        padding: 15px 0;
}

/* ============================================
   NAVIGATION MENU
   ============================================ */

   .menu{
    overflow-y: hidden;
   }
.menu .navbar-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu .navbar-links li {
    padding: 0 0.3333333333rem;
    font-size: clamp(13px, 2vw, 16px);
}

.menu .navbar-links li:hover > ul {
    display: block;
}

.menu .navbar-links .nav-item {
    padding: 47px 0;
}

.menu .navbar-links li ul li {
    padding: 8px 0;
}

.menu .navbar-links li ul li a {
    padding: 10px 0;
    color: rgb(181, 181, 181);
    font-weight: 300;
    font-size: clamp(12px, 1.8vw, 14px);
}

.menu .navbar-links .main-links {
    color: var(--text-color);
    letter-spacing: 1.5px;
    font-size: clamp(16px, 2.2vw, 18px);
    font-weight: 200;
    padding: 50px 18px;
    transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}

.menu .navbar-links a:hover {
    color: var(--main-color);
}

.dropdown-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #000;
    min-width: 200px;
    width: 100%;
    z-index: 100;
    height: 0;
    overflow: hidden;
 
}

@media (min-width:992px) {
   .dropdown-wrapper {
  
    border-top: 1px solid #fdfdfd;
} 
 .menu .navbar-links .nav-item:hover > .dropdown-wrapper {
    height: auto;
    transition: 0.5s ease-in-out;
}   
}


.dropdown-container {
    padding: 15px 5vw;
}

.main-title {
    color: var(--text-color);
    padding: 0;
    display: block;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: clamp(14px, 2.2vw, 18px);
}

.main-title i {
    margin-left: 10px;
    margin-bottom: -2px;
    font-size: clamp(14px, 2.2vw, 18px);
    opacity: 0;
    transition: all 0.8s ease-in-out;
}

.main-title:hover i {
    opacity: 1;
    margin-left: 20px;
}

.overview-text {
    line-height: 1.5;
    font-size: clamp(13px, 2vw, 15px);
}




/* ============================================
   FOOTER STYLES
   ============================================ */

.footer {
    background: #000000;
    color: white;
    padding-top: 70px;
}

.bb {
    border-bottom: 2px solid rgb(39, 39, 39);
    padding-bottom: 50px;
}

.footer-heading {
      font-size: clamp(30px, 3vw, 56px);
    font-weight: 200;
}

.brand-logo {
    max-width: calc(100px + 10vw);
}

.about-brand {
    max-width: 400px;
}

.hoverable li {
    margin: 10px 0;
}

.links-wrapper li a, address {
    padding: 10px 0;
    color: rgb(181, 181, 181);
    font-weight: 300;
    font-size: clamp(13px, 2vw, 16px);
}

.text-light-gray {
    color: #b0b0b0;
    font-size: clamp(13px, 2vw, 16px);
}

.text-light-gray:hover {
    color: white;
}

.app-btn {
    width: 120px;
}

.footer-socal {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0;
    padding-left: 0;
}

.footer-socal a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 7px;
    font-size: clamp(14px, 2vw, 18px);
    color: rgb(255 255 255);
    transition: 0.5s ease-in-out;
    border: 1px solid white;
}



.footer-socal li {
    padding: 0 10px;
}

.links-wrapper a:hover {
    text-decoration: underline;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: rgb(181, 181, 181);
    font-weight: 300;
    padding: 5px 0 !important;
    font-size: clamp(13px, 2vw, 16px);
}

.social-links a img {
    width: 18px;
    margin-right: 10px;
} 

.social-sticky-wrapper .mobil {
    display: none;
}

/* ============================================
   RESPONSIVE DESIGN - TABLET (768px and below)
   ============================================ */

@media (max-width: 992px) {
  

    .newsletter input {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

.desktop-navMenu {
    display: flex;
}
.mobile-navMenu  {
    display: none !important;  
}

@media (min-width: 992px) {
    header .custom-container {
        max-width: 990px;
    }
}

@media (min-width: 1200px) {
    header .custom-container  {
        max-width: 1100px;
    }
}


@media (min-width: 1400px) {
    header .custom-container  {
        max-width: 1200px;
    }
}

@media (min-width: 1600px) {
     header .custom-container  {
        max-width: 1400px;
    }
}
@media (max-width: 1400px) {
    .logo {
        padding: 0px 0;
    }
.menu .navbar-links .nav-item {
    padding: 30px 0;
}
}

@media (max-width: 992px) {
    /* Header responsive adjustments */
    .desktop-navMenu {
    display: none !important;
}
.mobile-navMenu  {
    display: block !important;  
}
  

   .logo{
    padding: 20px 0;
   }

    .menu {
        width: 100%;
        flex-grow: 0 !important;
    }

    /* Mobile menu toggle button styling */
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        flex-direction: column;
        gap: 5px;
        padding: 0;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background-color: white;
        transition: all 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
       transform: rotate(-45deg) translate(2px, -2px);
    }
    .menu .navbar-links .nav-item{
      padding: 0;
    }
    .menu .navbar-links .main-links {
  
    padding: 20px 18px;
 
}

.mc-btn {
    background-color: white;
    border-radius: 0;
    color: black;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none;
    padding: 15px 30px;
    position: relative;
    letter-spacing: 1px;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    width: calc(100% - 40px);
    margin: 15px 20px;
    margin-top: -10px;
    text-decoration: none;
    z-index: 10
}

.mc-btn .text {
    position: relative;
    z-index: 10
}

.mc-btn svg,.btn-transparent i {
    margin-left: 10px;
    transition: transform .6s ease-in-out;
    position: relative;
    fill: var(--btn-color);
    z-index: 10
}

.mc-btn:hover svg {
    transform: translate(10px);
    fill: #fff
}

    /* Mobile menu hidden by default */
    .mobile-navMenu {
        
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        position: absolute;
        top: 100%;
        right: -100%;
        background-color: #000;
        border-top: 1px solid #333;
        padding: 0;
        z-index: 1000;
        transition: right 0.3s ease-in-out;
    }

    .mobile-navMenu.active {
        display: flex;
        right: 0;
    }

    /* Main Services dropdown for mobile */
    .mobile-navMenu .nav-item .dropdown-wrapper {
        position: unset;
        height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        top: auto;
        background-color: #000000;
        width: 100%;
    }

    .mobile-navMenu .nav-item .dropdown-wrapper.open {
        height: auto;
        overflow: visible;
    }

    .mobile-navMenu .nav-item .dropdown-container {
        display: flex;
        flex-direction: column;
        padding: 0 !important;
    }

    .mobile-navMenu .nav-item .dropdown-container .row {
        display: flex;
        flex-direction: column;
    }

    .mobile-navMenu .nav-item .dropdown-container .col {
        padding: 0 !important;
    }

    .navbar-links li {
        width: 100%;
        padding: 0;
        
    }

    .navbar-links .nav-item {
        padding: 0;
        width: 100%;
       border-bottom: 1px solid #333; 
    }

    .navbar-links .main-links {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        width: 100%;
        cursor: pointer;
    }

    /* Dropdown toggle indicator for mobile */
    .nav-item .dropdown-toggle {
        display: inline-block;
        transition: transform 0.3s ease;
    }

    .nav-item .dropdown-toggle.active {
        transform: rotate(180deg);
    }



    /* .dropdown-container {
        padding: 10px 0;
        background-color: #111;
    } */

    .dropdown-container .container {
        padding: 0 !important;
    }

    .dropdown-container .row {
        display: flex;
        flex-direction: column;
    }

    .dropdown-container .col-md-3 {
        padding: 0 !important;
        border-bottom: 1px solid #333;
    }

    .dropdown-container .col-md-3:last-child {
        border-bottom: none;
    }

    .main-title {
        padding: 12px 20px;
        margin-bottom: 0;
        font-size: clamp(14px, 2vw, 16px);
    }

    .main-title i {
        display: none;
    }

    .dropdown-container ul {
        display: none;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
       background: #0f0f0f;
    }

    .dropdown-container ul.open {
        display: flex;
        max-height: 1000px;
         max-height: auto;
    }

    .dropdown-container ul li {
        padding: 8px 20px !important;
    }

    .dropdown-container ul li a {
        font-size: clamp(12px, 1.8vw, 14px);
    }

    .menu .navbar-links li:hover > ul {
        display: flex;
    }

    /* Mobile nested dropdown styles */
    .mobile-navMenu .col {
        border-top: 1px solid #333;
    }

 

    .link-wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
       padding: 17px 20px 17px 30px;
        cursor: pointer;
    }

    .link-wrap .main-title {
        padding: 0;
        font-weight: 200;
        margin-bottom: 0;
            flex-grow: 1;
    }


    .mobile-navMenu .dropdown-toggle {
        font-size: 14px;
        color: #ffffff;
   
        transition: transform 0.3s ease;
    }
    .mobile-navMenu .dropdown-wrapper ul li{
          border-top: 1px solid #333;
                  padding: 15px 40px !important;
    }

    .mobile-navMenu .dropdown-toggle.active {
        transform: rotate(180deg);
    }

    /* Footer responsive adjustments */
    .footer-socal a {
        width: 35px;
        height: 35px;
        padding: 5px;
        font-size: clamp(13px, 1.8vw, 16px);
    }

    .links-wrapper li a, address {
        font-size: clamp(12px, 1.8vw, 14px);
    }
}

@media (max-width: 576px) {
    .footer{
        padding-top: 30px;
    }
    .footer-socal a {
        width: 30px;
        height: 30px;
        border-radius: 7px;
        padding: 5px;
        font-size: clamp(11px, 1.5vw, 13px);
    }
.footer-cta-wrapper{
    flex-wrap: wrap;
    gap: 30px;
}
 

    .menu-toggle span {
        width: 22px;
    }

    .navbar-links .main-links {
        padding: 12px 15px;
        font-size: clamp(14px, 2vw, 16px);
    }

    .main-title {
        padding: 10px 15px;
        font-size: clamp(13px, 1.8vw, 15px);
    }

    .dropdown-container ul li {
       padding: 13px 20px 13px 40px !important;
    }
}
