﻿/* =====================================
   GLOBAL
===================================== */

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #F8FCFF, #FFFFFF);
    padding-top: 90px;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* =====================================
   NAVBAR
===================================== */

.custom-navbar {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 98%;
    z-index: 9999;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 8px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: all .3s ease;
    overflow: visible !important;
}

.services-dropdown {
    position: relative;
}

.services-link {
    display: flex;
    align-items: center;
}

.services-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: #fff;
    list-style: none;
    padding: 10px;
    margin: 0;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: .3s;
    z-index: 99999;
}

.services-dropdown:hover .services-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.services-menu li a {
    display: block;
    padding: 12px 15px;
    border-radius: 10px;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

    .services-menu li a:hover {
        background: linear-gradient( 135deg, #00D4FF, #00A8CC);
        color: #fff;
        transform: translateX(5px);
    }

.services-dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.fa-chevron-down {
    transition: .3s;
}


.navbar-scrolled {
    background: rgba(255,255,255,.98);
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}
/* =====================================
   LOGO
===================================== */



.logo-img {
    width: 80px;
    height: auto;
    object-fit: contain;
    margin-right: 10px;
    filter: drop-shadow( 0 4px 8px rgba(0,0,0,.25));
}



.brand-text {
    font-size: 25px;
    font-weight: 700;
    background: linear-gradient( 45deg, #00A8CC, #374151);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



.brand-tagline {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #00A8CC;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 1px;
}
/* =====================================
   MENU
===================================== */

.nav-link {
    color: #333 !important;
    margin-right: 18px;
    font-weight: 600;
    position: relative;
    transition: .3s;
}

    .nav-link:hover {
        color: #00D4FF !important;
    }

    .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -5px;
        width: 0%;
        height: 2px;
        background: #00D4FF;
        transition: .3s;
    }

    .nav-link:hover::after {
        width: 100%;
    }
/* =====================================
   BUTTON
===================================== */

.btn-explore {
    background: linear-gradient( 45deg, #00D4FF, #00A8CC);
    color: white !important;
    border: none;
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0,212,255,.25);
    transition: .3s;
}

    .btn-explore:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,212,255,.25);
        color: white !important;
    }
/* =====================================
   HERO SECTION
===================================== */

.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 65px;
    font-weight: 800;
    line-height: 1.1;
    color: #111827;
}

.hero-subtitle {
    font-size: 20px;
    color: #6b7280;
    margin-top: 20px;
}

.hero-image {
    max-width: 550px;
    animation: floating 5s ease-in-out infinite;
}

@keyframes floating {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}
/* =====================================
   CARDS
===================================== */

.custom-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    border: none;
    transition: .4s;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
}

    .custom-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,.10);
    }
/* =====================================
   FOOTER
===================================== */

.footer {
    background: #ffffff;
    margin-top: 80px;
    padding: 60px 0 20px;
    border-top: 1px solid #e5e7eb;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

.footer-description {
    color: #6b7280;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #6b7280;
        text-decoration: none;
        transition: .3s;
    }

        .footer-links a:hover {
            color: #00D4FF;
            padding-left: 5px;
        }

.footer p {
    color: #6b7280;
    margin-bottom: 10px;
}

.footer-divider {
    margin: 35px 0 20px;
    opacity: .15;
}

.copyright {
    color: #6b7280;
    font-size: 14px;
    text-align: center;
}
/* =====================================
   ANIMATION
===================================== */

.animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s ease;
}

    .animate.show {
        opacity: 1;
        transform: translateY(0);
    }
/* =====================================
   RESPONSIVE
===================================== */

@media(max-width:991px) {

    .hero-title {
        font-size: 42px;
    }

    .hero-image {
        max-width: 320px;
        margin-top: 40px;
    }

    .nav-link {
        margin-right: 0;
        margin-top: 10px;
    }
}

@media(max-width:768px) {

    .logo-img {
        width: 45px;
    }

    .brand-text {
        font-size: 18px;
    }

    .hero-title {
        font-size: 34px;
    }
}

.contact-details p {
    color: #6b7280;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.8;
}


.whatsapp-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(37,211,102,.35);
    transition: .3s;
}

    .whatsapp-btn:hover {
        transform: scale(1.1);
        color: white;
    }
