*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Instrument Sans';
    background:#010C1A !important;
}


img{
    max-width:120%;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}





/* ================= NAVBAR ================= */

.custom-navbar {
    background: linear-gradient(90deg, #2c3441, #3d4554);
    border-radius: 15px;
    margin: 20px auto;
    padding: 18px 30px;
    width: 95%;
    max-width: 1800px;
    box-shadow: 0 5px 15px rgba(0,0,0,.2);
}

/* Logo */
.navbar-brand img{
    height: 55px;
    width: 250px;
}

/* Menu */
.navbar-nav .nav-link{
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 15px;
    position: relative;
    transition: .3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color: #f6b21c !important;
}

.navbar-nav .nav-link.active::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 2px;
    background: #f6b21c;
}

.navbar-toggler{
    border: none;
}

.navbar-toggler:focus{
    box-shadow: none;
}

.navbar-toggler-icon{
    filter: invert(1);
}

/* ================= Large Devices ================= */

@media (max-width: 1200px){

    .navbar-nav .nav-link{
        margin: 0 10px;
        font-size: 13px;
    }

    .navbar-brand img{
        height: 70px;
    }

}

/* ================= Tablet ================= */

@media (max-width: 991px){

    .custom-navbar{
        width: 94%;
        padding: 15px 20px;
    }

      .navbar-collapse{
        background:#2c3441;
        border-radius:15px;
        padding:25px;
        margin-top:20px;
    }
     .navbar-nav{
        gap:15px;
    }

     .navbar-nav .nav-link{
        display:block;
        margin:15px 0;
        text-align:center;
    }


    .navbar-nav .nav-link.active::after{
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
    }

}

/* ================= Mobile ================= */

@media (max-width: 576px){

    .custom-navbar{
        margin: 15px auto;
        padding: 15px;
        border-radius: 12px;
    }

    .navbar-brand img{
               height: 40px;
        width: 200px;
    }

    .navbar-nav .nav-link{
        font-size: 13px;
    }

    .navbar-collapse{
        padding: 15px;
    }

}

/* ================= Extra Small ================= */

@media (max-width: 380px){

        .navbar-brand img {
        width: 150px;
        height: 35px;
    }

    .custom-navbar{
        width: 96%;
        padding: 12px;
    }

}





/* ===============================================
Footer sections
================================================== */


.footer-section{
    background:#010C1A;
    padding:0px 0 30px;
}
.footer-section hr{
    border:0;
    height:2px;
    background:rgba(255,255,255,.18);
    margin:0;
}
.footer-section .container{
    width:90%;
    max-width:1400px;
    margin:auto;
}



.footer-top{
    display:flex;
    justify-content:center; /* center logo */
    align-items:center;
    margin-bottom:40px;
    text-align:center;
}

.footer-top .navbar-brand{
    display:block;
}


.footer-top img{
    width:400px;   /* increased logo size */
    max-width:100%;
    height:auto;
    display:block;
}

.footer-top h2{
    color:#e0a52d;
    font-size:90px;
    font-weight:500;
}

.footer-middle{
    padding:30px 0;
    display:grid;
    grid-template-columns:180px 220px 1fr;
    column-gap:100px;
    align-items:start;
}


.footer-column h4,
.footer-form h4{
    
    color:#fff;
    margin-bottom:25px;
    font-size:20px;
    font-weight:700;
    letter-spacing:1px;
}

.footer-column ul{
    list-style:none;
    padding-left:0;
    margin:0;
}

.footer-column ul li{
    margin-bottom:22px;
}

.footer-column ul li a{
    display:block;
    text-decoration:none;
    color:#fff;
    font-size:17px;
    font-weight:400;
    transition:.3s;
    text-align:left;
}

.footer-column{
    text-align:left;
}

.footer-column ul li a:hover{
    color:#e0a52d;
}

.footer-form form{
    display:flex;
    flex-direction:column;
    gap:20px;
}
.footer-form hr{
    border: none;
    height: 8px;              /* Thickness */
    background: #2d3748;      /* Dark gray color */
    opacity: 1;               /* Fully visible */
    margin: 50px 0;
    border-radius: 10px;
}

.footer-form input{
    height:65px;
    border:1px solid rgba(255,255,255,.4);
    background:transparent;
    border-radius:8px;
    color:#fff;
    padding:0 20px;
    outline:none;
}

.footer-form input::placeholder{
    color:#e0a52d;
}

.footer-form button{
    border:none;
    background:#fff;
    color:#111;
    height:65px;
    border-radius:8px;
    font-weight:600;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:25px;
    cursor:pointer;
}

.footer-form button span{
    width:40px;
    height:40px;
    background:black;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.footer-bottom{
    padding-top:30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-bottom p{
    color:white;
    font-size:16px;
}


/* ================= Large Devices ================= */

@media (max-width:1200px){

    .footer-top h2{
        font-size:70px;
    }



    .footer-middle{
        grid-template-columns:160px 200px 1fr;
        column-gap:60px;
    }

}


/* ================= Tablet ================= */

@media (max-width:991px){

    /* .footer-top{
        flex-direction:column;
        text-align:center;
        gap:20px;
    } */
  .footer-top img{
        width:250px;
    }
    .footer-top h2{
        font-size:55px;
    }

    .footer-middle{
        grid-template-columns:1fr 1fr;
        gap:50px;
    }

    .footer-form{
        grid-column:1 / -1;
    }

    .footer-bottom{
        flex-direction:column;
        /* gap:15px; */
        text-align:center;
    }

}


/* ================= Mobile ================= */

@media (max-width:767px){

    .footer-section{
        padding:10px 0 20px;
    }

    .footer-top{
            margin-bottom: 24px;
        gap:15px;
    }

   .footer-top img{
        width:200px;
    }

    .footer-top h2{
        font-size:38px;
        text-align:center;
    }

    .footer-middle{
        grid-template-columns:1fr;
        gap:40px;
    }

    .footer-column{
        text-align:left;
    }

    .footer-column h4,
    .footer-form h4{
        font-size:18px;
    }

    .footer-column ul li{
        margin-bottom:15px;
    }

    .footer-column ul li a{
        font-size:15px;
    }

    .footer-form input{
        height:55px;
        font-size:14px;
    }

    .footer-form button{
        height:55px;
        font-size:14px;
        gap:15px;
    }

    .footer-bottom p{
        font-size:12px;
    }

}


/* ================= Small Mobile ================= */

@media (max-width:576px){

    .footer-section .container{
        width:92%;
    }

      .footer-top img{
       width: 250px;
    }
    .footer-top h2{
        font-size:28px;
    }

    .footer-form button{
        width:100%;
        font-size:13px;
        padding:0 15px;
    }

    .footer-form button span{
        width:35px;
        height:35px;
    }

}


/* ================= Extra Small Devices ================= */

@media (max-width:400px){

    .footer-top h2{
        font-size:22px;
    }

    .footer-column h4,
    .footer-form h4{
        font-size:16px;
    }

    .footer-column ul li a{
        font-size:14px;
    }

    .footer-form input{
        padding:0 15px;
    }

    .footer-form button{
        font-size:12px;
        gap:10px;
    }

}