/* --- VARIABLES & RESET --- */
:root {
    --primary: #0ea5e9; /* Sky Blue */
    --primary-dark: #0284c7;
    --secondary: #ffffff;
    --text-dark: #334155;
    --text-light: #64748b;
    --bg-light: #f0f9ff; /* Very pale blue */
    --max-width: 1100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--secondary);
}

/* --- UTILITIES --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.bg-light { background-color: var(--bg-light); }
.section-title { font-size: 2rem; margin-bottom: 40px; text-align: center; color: var(--primary-dark); }
.lead-text { text-align: center; max-width: 600px; margin: 0 auto 40px; color: var(--text-light); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
a { text-decoration: none; }

/* --- BUTTONS --- */
.btn { display: inline-block; padding: 10px 25px; border-radius: 6px; font-weight: 600; transition: 0.3s; }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-sm { padding: 8px 16px; font-size: 0.9rem; background: var(--primary); color: white; border-radius: 4px;}



/* ================= HEADER ================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    padding: 5px 0;
    transition: 0.3s;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
}

.nav-links a {
    margin-left: 20px;
    color: white;
    font-weight: 850;
    text-decoration: none;
}
    .nav-links a:hover {
            font-size:20px;

        }
.btn-nav {
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
}
/* ===== HAMBURGER ICON ===== */
.hamburger {
    display: none;
    font-size: 28px;
    color: white; 
    cursor: pointer;
}
/*===== MOBILE RESPONSIVE ===== */
@media (max-width:768px) {

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: black;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 25px 0;
        color: white;
        display: none;
        border-top: 1px solid #222;
    }

.nav-links.active {
            display: flex;
            animation: slideDown 0.4s ease;
        }

.nav-links a {
            color: black; 
            font-size: 18px;
            font-weight: 500;
        }

.nav-links a:hover {
                color: blue; 
            }
}

/*Menubar color change effect*/
/* Navbar Styling */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background:transparent;
    padding: 5px 0;
    transition: 0.3s;
}

    /* Sky blue background when scrolled */
    #navbar.scrolled {
        background-color: #0284c7; /* Sky Blue */
    }
/* ===== NEON BORDER ONLY FOR HERO SECTION BUTTONS ===== */

        .hero-section .btn-primary {
            position: relative;
            background: white;
            color: black;
            border-radius: 10px;
            z-index: 1;
            transition: 0.3s ease;
        }

            /* Animated Neon Border */
            .hero-section .btn-primary::before {
                content: "";
                position: absolute;
                inset: -3px; /* Border thickness */
                border-radius: 12px;
                background: linear-gradient( 45deg, #ff00cc, #3333ff, #00ffff, #00ff99, #ffff00, #ff6600, #ff00cc );
                background-size: 400%;
                z-index: -1;
                filter: blur(6px);
                animation: neonBorder 6s linear infinite;
            }

            /* Keep inner button clean */
            .hero-section .btn-primary::after {
                content: "";
                position: absolute;
                inset: 0;
                background: white;
                border-radius: 10px;
                z-index: -1;
            }

            /* Hover Effect */
            .hero-section .btn-primary:hover {
                transform: scale(1.08);
            }

        /* Animation */
        @keyframes neonBorder {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        /* ================= HERO ================= */
        .hero-section {
            position: relative;
            height: 110vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: url('/images/coverpage.gif') no-repeat center center;
            background-size:cover;
        }

            .hero-section::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 110vh;
                background: rgba(0,0,0,0.5);
            }

        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
        }

            .hero-content h1 {
                font-size: 3.5rem;
                margin-bottom: 20px;
            }

            .hero-content p {
                font-size: 1.2rem;
                margin-bottom: 30px;
                color: white;
            }

            .hero-btns{
            margin-top:120px;
            padding-bottom:200px;
            }
        /* BUTTONS */
        .btn {
            display: inline-block;
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
        }

        .btn-outline {
            border: 2px solid white;
            color: white;
        }
.hamburger { display: none; font-size: 1.5rem; cursor: pointer; }

/* --- COMPONENTS --- */
.benefits-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            margin-bottom: 0px;
            padding-bottom: 0px
        }
.benefit-item { background: white; padding: 10px 20px; border-radius: 50px; border: 1px solid #e2e8f0; font-weight: 600; color: var(--primary-dark);}
.card { background: white; padding: 25px; border-radius: 12px; border: 1px solid #e2e8f0; transition: transform 0.2s; }
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.card h3 { margin-bottom: 10px; }
.card .meta { font-size: 0.85rem; color: var(--primary); font-weight: 600; margin-bottom: 10px; text-transform: uppercase; }
.card .desc { font-size: 0.95rem; color: var(--text-light); margin-bottom: 20px; }
.text-link { color: var(--primary); font-weight: 600; font-size: 0.9rem; }

.bullet-list li { margin-bottom: 10px; list-style: none; padding-left: 20px; position: relative; }
.bullet-list li::before { content: "•"; color: var(--primary); font-weight: bold; position: absolute; left: 0; }

.testimonial { background: white; padding: 20px; border-left: 4px solid var(--primary); font-style: italic; }

/* --- FORMS --- */
.clean-form { background: white; padding: 30px; border-radius: 12px; border: 1px solid #e2e8f0; }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 500; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 10px; border: 1px solid #cbd5e1; border-radius: 6px; font-family: inherit;
}
.full-width { width: 100%; }

.info-box { background: var(--primary); color: white; padding: 30px; border-radius: 12px; }
.info-box h3 { margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 10px; }
.step { margin-bottom: 15px; }
.step strong { display: block; font-size: 1.1rem; }
.step p { font-size: 0.9rem; opacity: 0.9; }

.map-placeholder { width: 100%; height: 200px; background: #e2e8f0; display: flex; align-items: center; justify-content: center; margin-top: 20px; border-radius: 8px; color: var(--text-light); }

/* --- FAQ & FOOTER --- */
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.faq-item { background: var(--bg-light); padding: 20px; border-radius: 8px; }
.faq-item h4 { margin-bottom: 5px; color: var(--primary-dark); }
.faq-item p { font-size: 0.95rem; color: var(--text-light); }

footer { background: var(--text-dark); color: white; padding: 60px 0 20px; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-col h4 { margin-bottom: 20px; color: white; }
.footer-col p { color: #94a3b8; font-size: 0.9rem; }
.footer-col a { display: block; color: #94a3b8; margin-bottom: 10px; transition: 0.2s; }
.footer-col a:hover { color: var(--primary); }
.socials span { display: inline-block; width: 30px; height: 30px; background: #475569; margin-right: 5px; text-align: center; line-height: 30px; font-size: 0.8rem; border-radius: 4px; cursor: pointer; }
.footer-bottom { text-align: center; border-top: 1px solid #475569; padding-top: 20px; font-size: 0.85rem; color: #94a3b8; }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .nav-links { display: none; } 
    /* Javascript would toggle a mobile menu here */
    .hamburger { display: block; }
    .hero-content h1 { font-size: 2.5rem; }
    .grid-2 { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 30px; }
}

/*Slideshow*/



/*Services Columns*/
.section {
    padding: 80px 8%;
    text-align: center;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

    .section-subtitle::after {
        content: "";
        display: block;
        width: 80px;
        height: 3px;
        background: var(--primary);
        margin: 8px auto 0;
        border-radius: 5px;
    }

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--dark);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }

.service-image {
    overflow: hidden;
    height: 260px;
}

    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.service-card:hover img {
    transform: scale(1.08);
}

.service-content {
    padding: 30px 25px 50px;
    text-align: left;
    position: relative;
}

    .service-content h3 {
        font-size: 22px;
        font-weight: 600;
        color: #2d2d4d;
        line-height: 1.4;
    }

.arrow-btn {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .arrow-btn:hover {
        background: var(--primary);
        color: #fff;
        border-color: var(--primary);
    }

    .arrow-btn span {
        font-size: 22px;
        transition: transform 0.3s ease;
    }

    .arrow-btn:hover span {
        transform: translateX(4px);
    }

/* Responsive */
@media(max-width:1024px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {
    .section-title {
        font-size: 30px;
    }

    .services-container {
        grid-template-columns: 1fr;
    }
}
/*Services img slide effect*/
.image-slider {
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.slide-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s ease-in-out;
}

    .slide-track img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Proper fit */
        flex-shrink: 0;
    }

/* ===== ARROW BUTTONS ===== */

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: #fff;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s ease;
    z-index: 5;
}

    .slider-btn:hover {
        background: #0ea5e9;
        transform: translateY(-50%) scale(1.1);
    }

.prev {
    left: 12px;
}

.next {
    right: 12px;
}
