
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #023e8a; /* Dark Blue from logo */
    --secondary: #00b4d8; /* Cyan from logo */
    --accent: #0077b6; /* Medium Blue */
    --text-dark: #1a1a1a;
    --text-light: #555555;
    --white: #ffffff;
    --bg-light: #f4f7f6;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--bg-light);
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary);
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
}

.top-bar a {
    color: var(--white);
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-bar a:hover {
    color: #e0fbfc;
}

/* Marquee */
.marquee-container {
    background: var(--secondary);
    color: var(--white);
    padding: 10px 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.logo {
    max-height: 75px;
    transition: var(--transition);
}

.nav-link {
    font-weight: 600;
    color: var(--primary) !important;
    padding: 15px 20px !important;
    text-transform: capitalize;
    font-size: 16px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    width: 0;
    height: 3px;
    background: var(--secondary);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: calc(100% - 40px);
}

.nav-link:hover {
    color: var(--secondary) !important;
}

.btn-call {
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    color: var(--white) !important;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0, 180, 216, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-call:hover {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(2, 62, 138, 0.3);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
}

.hero-slide-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero-slide-img {
        aspect-ratio: 1 / 1;
    }
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(2, 62, 138, 0.8), rgba(0, 180, 216, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
}

.hero-title {
    color: var(--white);
    font-size: 4.5rem;
    font-weight: 800;
    text-shadow: 0px 4px 15px rgba(0,0,0,0.4);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    color: #e0fbfc;
    font-size: 1.8rem;
    font-weight: 500;
    text-shadow: 0px 2px 10px rgba(0,0,0,0.5);
}

/* Quick Contact Form - Glassmorphism */
.quick-contact {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 25px 45px rgba(0,0,0,0.15);
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.quick-contact .form-control {
    border-radius: 50px;
    padding: 15px 25px;
    border: 1px solid rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.8);
    font-size: 15px;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.quick-contact .form-control:focus {
    border-color: var(--secondary);
    background: rgba(255,255,255,1);
    box-shadow: 0 0 15px rgba(0, 180, 216, 0.4);
}

.btn-submit {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 700;
    width: 100%;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(2, 62, 138, 0.3);
    transition: var(--transition);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 180, 216, 0.5);
    background: linear-gradient(45deg, var(--secondary), var(--primary));
}

/* Sections */
.section-padding {
    padding: 100px 0;
}

.section-title {
    color: var(--primary);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    border-radius: 2px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Service Cards - Glassmorphism */
.service-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(255,255,255,0.8);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 180, 216, 0.2);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--secondary);
}

.service-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px 25px;
    position: relative;
    flex-grow: 1;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Page Header */
.page-header {
    background: var(--primary) url('images/page-bg.jpg') center/cover;
    padding: 120px 0;
    position: relative;
    color: var(--white);
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(2, 62, 138, 0.9) 0%, rgba(0, 180, 216, 0.8) 100%);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

/* Footer */
.footer {
    background: #012a5e;
    color: #e0fbfc;
    padding-top: 100px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
}

.footer-logo {
    max-height: 90px;
    background: white;
    padding: 10px;
    border-radius: 10px;
}

.footer-title {
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 40px; height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--secondary);
    margin-right: 15px;
    font-size: 1.4rem;
    margin-top: 4px;
}

.copyright {
    background: #011d40;
    padding: 25px 0;
    margin-top: 60px;
    font-size: 15px;
}

/* Floating Icons */
.floating-phone, .floating-whatsapp {
    position: fixed;
    bottom: 40px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.floating-phone {
    right: 40px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.floating-whatsapp {
    left: 40px;
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-phone:hover, .floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    color: white;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* Special Sections */
.stat-box {
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.8);
}
.stat-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--secondary);
    box-shadow: 0 25px 50px rgba(0, 180, 216, 0.2);
}
.stat-box i {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
    background: -webkit-linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
}

/* Responsiveness */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1.3rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .floating-phone { right: 20px; bottom: 20px; width: 55px; height: 55px; font-size: 28px; }
    .floating-whatsapp { left: 20px; bottom: 20px; width: 55px; height: 55px; font-size: 28px; }
    
    /* Mobile Menu Scroll Fix */
    .navbar-collapse {
        max-height: 70vh; /* Limits height so it can be scrolled */
        overflow-y: auto; /* Enables vertical scrolling */
        background: rgba(255, 255, 255, 0.98);
        padding: 15px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        margin-top: 15px;
        border: 1px solid rgba(0,0,0,0.05);
    }
    
    /* Improve Dropdown in Mobile */
    .dropdown-menu {
        border: none;
        background: transparent;
        padding-left: 15px;
        box-shadow: none;
    }
    
    /* Toggler Button */
    .navbar-toggler {
        border: none !important;
        padding: 5px 10px;
    }
    .navbar-toggler:focus {
        box-shadow: none;
    }
}

/* Gallery Hover Effects */
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1 !important;
}

/* Custom Alert Popup */
.custom-alert-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.custom-alert-overlay.show {
    opacity: 1;
    visibility: visible;
}
.custom-alert-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: scale(0.7);
    transition: var(--transition);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}
.custom-alert-overlay.show .custom-alert-box {
    transform: scale(1);
}
.custom-alert-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    font-size: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(40, 167, 69, 0.3);
}
.custom-alert-icon.error {
    background: linear-gradient(135deg, #dc3545, #f8d7da);
    box-shadow: 0 10px 20px rgba(220, 53, 69, 0.3);
}
.custom-alert-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}
.custom-alert-text {
    color: var(--text-light);
    margin-bottom: 25px;
}
.custom-alert-btn {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 15px rgba(2, 62, 138, 0.2);
}
.custom-alert-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(2, 62, 138, 0.3);
}
