body {
    padding-top: 80px;
}
/* ===== PRELOADER SECTION START ===== */
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    background: rgb(230, 243, 212);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .6s ease, visibility .6s ease;
}

.loader-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(270deg, #00eaff, #4f46e5, #ff00cc) border-box;
    animation: rotate 2s linear infinite;
}

.dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #00eaff;
    border-radius: 50%;
    top: 32px;
    left: 32px;
    box-shadow: 0 0 10px #00eaff, 0 0 20px #00eaff, 0 0 40px #00eaff;
    animation: pulse 1.2s infinite;
}

.loading-text {
    margin-top: 20px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    opacity: 0.8;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1);
    }
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

/* ===== PRELOADER SECTION END ===== */

/* ===== HEADER SECTION START ===== */
.logo {
    height: 65px;
    cursor: pointer;
    transition: transform .35s ease, filter .35s ease;
}

.logo:hover {
    transform: scale(1.06) rotate(-2deg);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 8px 0;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.logo {
    height: 65px;
    cursor: pointer;
}

#menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
    margin-left: auto;
}

.nav-links li {
    position: relative;
}

/* ===== MAIN NAVBAR LINKS ===== */

.nav-links>li>a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    transition: all .35s ease;
    padding: 8px 16px;
    border-radius: 8px;
    position: relative;
    z-index: 1;
}

.nav-links>li>a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0c2b4a, #1e63d5);
    border-radius: 8px;
    transform: scale(0);
    transition: transform .35s ease;
    z-index: -1;
}

.nav-links>li>a:hover::before {
    transform: scale(1);
}

.nav-links>li>a:hover {
    color: #fff;
    transform: translateY(-3px);
}

/* ===== DROPDOWN MENU ===== */

.dropdown-menu {
    position: absolute;
    top: 110%;
    left: 0;
    background: #ffffff;
    min-width: 270px;
    padding: 8px;
    border-radius: 28px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    display: none;
    overflow: hidden;
}

.nav-links li:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    transition: all .25s ease;
    white-space: nowrap;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background: #f4f8ff;
    color: #1e63d5;
    padding-left: 26px;
}

.dropdown-menu li:first-child a {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.dropdown-menu li:last-child a {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

/* ===== RESPONSIVE NAVBAR ===== */

@media(max-width:992px){

.menu-icon{
display:block;
}

.nav-links{
position:absolute;
top:75px;
left:0;
width:100%;
background:#fff;
flex-direction:column;
align-items:flex-start;
padding:25px;
display:none;
gap:18px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
max-height:calc(100vh - 75px);
overflow-y:auto;
}

#menu-toggle:checked ~ .nav-links{
display:flex;
}

.nav-links li{
width:100%;
}

.nav-links > li > a{
width:100%;
padding:12px 16px;
}

/* dropdown mobile */

.dropdown-menu{
position:static;
display:block;
box-shadow:none;
padding-left:10px;
border-radius:12px;
background:#f8fbff;
margin-top:5px;
}

.dropdown-menu a{
padding:10px 15px;
}

}
/* ===== HEADER SECTION END ===== */


/* ===== FOOTER SECTION START ===== */
.main-footer {
    background: #0f2f47;
    color: #cfd8dc;
    padding: 60px 0 0;
    font-family: 'Inter', sans-serif;
}

.footer-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    transition: 0.4s;
}

.footer-title::after {
    content: '';
    width: 40px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: .4s;
}

.footer-title:hover {
    transform: translateY(-3px);
    color: #00e5ff;
}

.footer-title:hover::after {
    width: 70px;
    background: #00e5ff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cfd8dc;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    position: relative;
    padding-left: 14px;
    display: inline-block;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #9fb3c8;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #00e5ff;
    transform: translateX(6px);
}

.footer-links a:hover::before {
    color: #00e5ff;
}

/* SOCIAL ICONS */
.footer-social {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #4a6a82;
    color: #fff;
    transition: 0.4s;
}

.footer-social a:hover {
    background: #00e5ff;
    color: #0f2f47;
    box-shadow: 0 0 12px #00e5ff;
    transform: translateY(-4px);
}

.address-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.4s;
    backdrop-filter: blur(5px);
}

.address-card p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    transition: 0.4s;
}

.address-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: #00e5ff;
}

.address-card:hover p {
    color: #ffffff;
}

.footer-bottom {
    margin-top: 40px;
    background: #8a949d;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    color: #fff;
}

.footer-bottom span {
    color: #0f2f47;
    font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media(max-width:1400px) {
    .footer-social {
        gap: 12px;
    }
}

@media(max-width:1200px) {
    .footer-social {
        gap: 14px;
    }
}

@media(max-width:992px) {
    .main-footer {
        padding: 50px 0 0;
    }

    .footer-title {
        margin-top: 20px;
    }
}

@media(max-width:768px) {
    .main-footer {
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links a {
        padding-left: 0;
    }

    .footer-links a::before {
        display: none;
    }

    .address-card {
        margin: auto;
        max-width: 320px;
    }
}

@media(max-width:576px) {
    .footer-links a {
        font-size: 13px;
    }

    .footer-bottom {
        font-size: 12px;
    }

    .address-card {
        margin-top: 10px;
    }
}

/* ===== FOOTER SECTION END ===== */
/* ===== SCROLL TO TOP BUTTON START ===== */
#scrollTopBtn {
    position: fixed;
    bottom: 40px;
    right: 35px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #0c2b4a;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: all .3s ease;
    z-index: 999;
}

#scrollTopBtn:hover {
    background: #154c7a;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* mobile */
@media(max-width:576px) {
    #scrollTopBtn {
        width: 45px;
        height: 45px;
        bottom: 25px;
        right: 20px;
        font-size: 16px;
    }
}

/* ===== SCROLL TO TOP BUTTON END ===== */
