* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    color: #0a1f44;
    background: #ffffff;
}

/* NAVBAR */
.navbar {
    background: #0a1f44;
    color: white;
    padding: 15px 20px;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.logo img {
    width: 40px;
}

nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
}

/* HERO */
.hero {
    background: #f5f7fb;
    padding: 80px 20px;
}

.hero-content {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 16px;
    margin-bottom: 30px;
}

.btn-primary {
    background: #0a1f44;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
}

/* SERVICES */
.services {
    padding: 60px 20px;
    text-align: center;
}

.service-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.service-card img {
    width: 100%;
}

.service-card h3 {
    margin: 15px;
}

.service-card p {
    margin: 0 15px 20px;
    font-size: 14px;
}

/* ABOUT */
.about {
    background: #f5f7fb;
    padding: 60px 20px;
}

.about-content {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

/* GALLERY */
.gallery {
    padding: 60px 20px;
    text-align: center;
}

.gallery-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    border-radius: 8px;
}

/* TESTIMONIALS */
.testimonials {
    background: #f5f7fb;
    padding: 60px 20px;
    text-align: center;
}

.testimonial-grid {
    max-width: 800px;
    margin: auto;
    display: grid;
    gap: 20px;
}

.testimonial-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* FOOTER */
.footer {
    background: linear-gradient(180deg, #0b1c2d, #081726);
    color: #ffffff;
    padding: 60px 20px 20px;
    font-family: "Segoe UI", sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.footer-about h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.footer-about p {
    color: #cfd8e3;
    line-height: 1.7;
    font-size: 15px;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 15px;
    font-size: 17px;
}

.footer-links a {
    display: block;
    color: #cfd8e3;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #c7d0dd;
}

.copyright-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
    color: #ffffff;
}

/* MOBILE */
@media (max-width: 600px) {
    .footer {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    nav {
        display: none;
    }

    .hero h1 {
        font-size: 28px;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 999;
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

/* ================= BANNER SLIDER ================= */

.banner-slider {
    position: relative;
    overflow: hidden;
    height: 550px;
}

.slider-track {
    display: flex;
    transition: transform 0.6s ease;
    height: 100%;
}

.slide {
    min-width: 100%;
}

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10,31,68,0.8);
    color: #fff;
    border: none;
    font-size: 26px;
    padding: 10px 14px;
    cursor: pointer;
    z-index: 5;
}

.slider-btn.left {
    left: 15px;
}

.slider-btn.right {
    right: 15px;
}

/* Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10,31,68,0.8);
    color: white;
    border: none;
    font-size: 28px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    border-radius: 4px;
}

.slider-btn.left {
    left: 15px;
}

.slider-btn.right {
    right: 15px;
}

.slider-btn:hover {
    background: #0a1f44;
}

/* Mobile */
@media (max-width: 768px) {
    .banner-slider {
        height: 300px;
    }

    .slide-content h2 {
        font-size: 22px;
    }

    .slide-content p {
        font-size: 14px;
    }
}

/* Start Contact Us Page*/
/* CONTACT HERO */
.contact-hero {
    background: linear-gradient(135deg, #0b1c2d, #102a43);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

    .contact-hero h1 {
        font-size: 38px;
        margin-bottom: 10px;
    }

    .contact-hero p {
        max-width: 700px;
        margin: auto;
        font-size: 16px;
        color: #d1d9e6;
    }

/* CONTACT SECTION */
.contact-section {
    padding: 70px 20px;
    background: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* CONTACT INFO */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
    border-radius: 12px;
    background: #f4f7fb;
}

.contact-box img {
    width: 32px;
    height: 32px;
}

.contact-box h3 {
    margin-bottom: 5px;
    font-size: 18px;
    color: #0b1c2d;
}

.contact-box p,
.contact-box a {
    font-size: 15px;
    color: #333;
    text-decoration: none;
}

.contact-box a:hover {
    text-decoration: underline;
}

.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.contact-social a {
    color: #0b1c2d;
    font-weight: 500;
}

.contact-image img {
    width: 100%;
    border-radius: 16px;
}

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 30px;
    }
}
/* End Contact Us Page*/

/* Start Gallery Page*/
.gallery-hero {
    background: linear-gradient(135deg, #0b1c2d, #102a43);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.gallery-hero h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.gallery-hero p {
    max-width: 750px;
    margin: auto;
    font-size: 16px;
    color: #d1d9e6;
}

.gallery-section {
    padding: 70px 20px;
    background: #f5f7fb;
}

.gallery-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.gallery-post {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.gallery-post:hover {
    transform: translateY(-8px);
}

.gallery-post img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.post-content {
    padding: 20px;
}

.post-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #0b1c2d;
}

.post-content p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #555;
}

.nav-links .active {
    color: #0b1c2d;
    font-weight: 600;
}

@media (max-width: 600px) {
    .gallery-hero h1 {
        font-size: 30px;
    }

    .gallery-post img {
        height: 220px;
    }
}
/* End Gallery Page*/

/* Start Service Page*/
.services-hero {
    background: linear-gradient(135deg, #0b1c2d, #102a43);
    color: #ffffff;
    padding: 90px 20px;
    text-align: center;
}

.services-hero h1 {
    font-size: 38px;
    margin-bottom: 12px;
}

.services-hero p {
    max-width: 800px;
    margin: auto;
    font-size: 16px;
    color: #d1d9e6;
}

.services-section {
    padding: 70px 20px;
    background: #f5f7fb;
}

.services-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border-radius: 18px;
    padding-bottom: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card h3 {
    margin: 18px 20px 10px;
    font-size: 18px;
    color: #0b1c2d;
}

.service-card p {
    margin: 0 20px;
    font-size: 14.5px;
    line-height: 1.6;
    color: #555;
}

.services-cta {
    background: #0b1c2d;
    color: #ffffff;
    text-align: center;
    padding: 70px 20px;
}

.services-cta h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.services-cta p {
    max-width: 700px;
    margin: auto;
    color: #d1d9e6;
    margin-bottom: 25px;
}

.cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #ffffff;
    color: #0b1c2d;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #e6ecf5;
}

.nav-links .active {
    font-weight: 600;
}

@media (max-width: 600px) {
    .services-hero h1 {
        font-size: 30px;
    }

    .services-cta h2 {
        font-size: 24px;
    }
}
/* End Service Page*/

