*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#f5f5f5;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#0066cc;
    padding:15px 8%;
    position:sticky;
    top:0;
    z-index:1000;
}


.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo img{
    width:50px;
    height:50px;
    object-fit:contain;
}

.logo a{
    color:greenyellow;
    text-decoration:none;
    font-size:28px;
    font-weight:bold;
}

.nav-links{
    display:flex;
    list-style:none;
}

.nav-links li{
    margin-left:25px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-size:16px;
    font-weight:500;
    transition:0.3s;
}

.nav-links a:hover{
    color:#ffcc00;
}

.menu-toggle{
    display:none;
    font-size:30px;
    color:white;
    cursor:pointer;
}

/* Mobile Responsive */
@media(max-width:768px){

    .menu-toggle{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:#0066cc;
        flex-direction:column;
        text-align:center;
        display:none;
    }

    .nav-links.active{
        display:flex;
    }

    .nav-links li{
        margin:15px 0;
    }
}





/* HERO SECTION */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:100px 20px;
    color:#fff;
    background:
    linear-gradient(rgba(0,0,0,0.65),
    rgba(0,0,0,0.65)),
    url("https://images.unsplash.com/photo-1585704032915-c3400ca199e7?auto=format&fit=crop&w=1600&q=80");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero-content{
    max-width:800px;
    animation:fadeUp 1.2s ease;
}

.hero-content h1{
    font-size:3.5rem;
    margin-bottom:20px;
    line-height:1.2;
}

.hero-content p{
    font-size:1.2rem;
    line-height:1.8;
    margin-bottom:35px;
    opacity:0.95;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.btn{
    text-decoration:none;
    padding:14px 30px;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    transition:0.3s;
}

.primary-btn{
    background:#007bff;
    color:#fff;
}

.primary-btn:hover{
    background:#0056b3;
    transform:translateY(-3px);
}

.secondary-btn{
    background:#fff;
    color:#007bff;
}

.secondary-btn:hover{
    background:#f2f2f2;
    transform:translateY(-3px);
}

.hero-content p{
        color: #ffc93c;
    }

/* Animation */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Responsive */

@media(max-width:992px){
    .hero-content h1{
        font-size:2.8rem;
    }

    .hero-content p{
        color: #ffc93c;
    }
}

@media(max-width:768px){
    .hero{
        padding:120px 20px 80px;
    }

    .hero-content h1{
        font-size:2.2rem;
    }

    .hero-content p{
        font-size:1rem;
        color: #ffc93c;
    }

    .btn{
        width:100%;
        max-width:250px;
    }
}

@media(max-width:480px){
    .hero-content h1{
        font-size:1.8rem;
    }

    .hero-content p{
        font-size:0.95rem;
        color: #ffc93c;
    }
}






/* SERVICES SECTION */

.services{
    padding:100px 8%;
    background:#f8f9fa;
}

.container{
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    color:#003366;
    margin-bottom:15px;
}

.section-title p{
    font-size:18px;
    color:#666;
    max-width:700px;
    margin:auto;
    line-height:1.7;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-card{
    background:#fff;
    padding:35px 25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:all .4s ease;
    animation:fadeUp 1s ease;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 12px 30px rgba(0,0,0,0.15);
}

.icon{
    width:70px;
    height:70px;
    margin:auto;
    border-radius:50%;
    background:#007bff;
    color:#fff;
    font-size:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.service-card h3{
    font-size:24px;
    color:#003366;
    margin-bottom:15px;
}

.service-card p{
    color:#666;
    line-height:1.7;
    font-size:15px;
}

/* Animation */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Responsive */

@media(max-width:768px){

    .services{
        padding:70px 20px;
    }

    .section-title h2{
        font-size:32px;
    }

    .section-title p{
        font-size:16px;
    }

    .service-card{
        padding:30px 20px;
    }

    .service-card h3{
        font-size:22px;
    }
}

@media(max-width:480px){

    .section-title h2{
        font-size:28px;
    }

    .service-card h3{
        font-size:20px;
    }

    .icon{
        width:60px;
        height:60px;
        font-size:24px;
    }
}



/* WHY CHOOSE US */

.why-choose-us{
    padding:100px 8%;
    background:#ffffff;
}

.container{
    max-width:1200px;
    margin:auto;
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading h2{
    font-size:42px;
    color:#003366;
    margin-bottom:15px;
}

.section-heading p{
    max-width:750px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
    color:#666;
}

.choose-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.choose-card{
    background:#f8f9fa;
    padding:35px 25px;
    border-radius:15px;
    text-align:center;
    transition:0.4s ease;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    animation:slideUp 1s ease;
}

.choose-card:hover{
    transform:translateY(-10px);
    box-shadow:0 12px 25px rgba(0,0,0,0.15);
}

.choose-icon{
    width:75px;
    height:75px;
    margin:auto;
    background:#007bff;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    margin-bottom:20px;
}

.choose-card h3{
    font-size:24px;
    color:#003366;
    margin-bottom:15px;
}

.choose-card p{
    color:#666;
    line-height:1.8;
    font-size:15px;
}

/* Animation */

@keyframes slideUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Tablet */

@media(max-width:768px){

    .why-choose-us{
        padding:70px 20px;
    }

    .section-heading h2{
        font-size:32px;
    }

    .section-heading p{
        font-size:16px;
    }

    .choose-card{
        padding:30px 20px;
    }

    .choose-card h3{
        font-size:22px;
    }
}

/* Mobile */

@media(max-width:480px){

    .section-heading h2{
        font-size:28px;
    }

    .choose-icon{
        width:65px;
        height:65px;
        font-size:28px;
    }

    .choose-card h3{
        font-size:20px;
    }

    .choose-card p{
        font-size:14px;
    }
}






/* GALLERY SECTION */

.gallery-section{
    padding:100px 8%;
    background:#f8f9fa;
}

.container{
    max-width:1200px;
    margin:auto;
}

.gallery-heading{
    text-align:center;
    margin-bottom:60px;
}

.gallery-heading h2{
    font-size:42px;
    color:#003366;
    margin-bottom:15px;
}

.gallery-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
    font-size:18px;
    line-height:1.8;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.gallery-item{
    overflow:hidden;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    animation:fadeInUp 1s ease;
}

.gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
    transition:0.5s ease;
}

.gallery-item:hover img{
    transform:scale(1.1);
}

/* Animation */

@keyframes fadeInUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Tablet */

@media(max-width:768px){

    .gallery-section{
        padding:70px 20px;
    }

    .gallery-heading h2{
        font-size:32px;
    }

    .gallery-heading p{
        font-size:16px;
    }

    .gallery-item img{
        height:240px;
    }
}

/* Mobile */

@media(max-width:480px){

    .gallery-heading h2{
        font-size:28px;
    }

    .gallery-item img{
        height:220px;
    }
}







/* BOOKING FORM SECTION */

.booking-section{
    padding:100px 8%;
    background:#f8f9fa;
}

.booking-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.booking-content{
    animation:slideLeft 1s ease;
}

.booking-content h2{
    font-size:42px;
    color:#003366;
    margin-bottom:20px;
}

.booking-content p{
    font-size:18px;
    line-height:1.8;
    color:#666;
}

.booking-form{
    background:#ffffff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    animation:slideRight 1s ease;
}

.input-group{
    margin-bottom:20px;
}

.input-group input,
.input-group select,
.input-group textarea{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
    font-size:16px;
    transition:0.3s;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus{
    border-color:#007bff;
    box-shadow:0 0 8px rgba(0,123,255,0.2);
}

.booking-btn{
    width:100%;
    padding:15px;
    border:none;
    background:#007bff;
    color:#fff;
    font-size:18px;
    font-weight:600;
    border-radius:10px;
    cursor:pointer;
    transition:0.3s;
}

.booking-btn:hover{
    background:#0056b3;
    transform:translateY(-2px);
}

/* Animations */

@keyframes slideLeft{
    from{
        opacity:0;
        transform:translateX(-50px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes slideRight{
    from{
        opacity:0;
        transform:translateX(50px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

/* Tablet */

@media(max-width:992px){

    .booking-container{
        grid-template-columns:1fr;
    }

    .booking-content{
        text-align:center;
    }
}

/* Mobile */

@media(max-width:768px){

    .booking-section{
        padding:70px 20px;
    }

    .booking-content h2{
        font-size:32px;
    }

    .booking-content p{
        font-size:16px;
    }

    .booking-form{
        padding:25px;
    }
}

@media(max-width:480px){

    .booking-content h2{
        font-size:28px;
    }

    .booking-form{
        padding:20px;
    }

    .booking-btn{
        font-size:16px;
    }
}







/* CONTACT SECTION */

.contact-section{
    padding:100px 8%;
    background:#f8f9fa;
}

.container{
    max-width:1200px;
    margin:auto;
}

.contact-heading{
    text-align:center;
    margin-bottom:60px;
}

.contact-heading h2{
    font-size:42px;
    color:#003366;
    margin-bottom:15px;
}

.contact-heading p{
    max-width:700px;
    margin:auto;
    font-size:18px;
    color:#666;
    line-height:1.8;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:40px;
    align-items:center;
}

/* Contact Cards */

.contact-info{
    display:grid;
    gap:20px;
}

.contact-box{
    background:#fff;
    padding:25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.4s ease;
    animation:fadeUp 1s ease;
}

.contact-box:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 25px rgba(0,0,0,0.15);
}

.contact-box span{
    font-size:35px;
    display:block;
    margin-bottom:10px;
}

.contact-box h3{
    color:#003366;
    margin-bottom:10px;
    font-size:22px;
}

.contact-box p{
    color:#666;
    line-height:1.7;
}

/* Map */

.map-container{
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    animation:fadeUp 1.2s ease;
}

.map-container iframe{
    width:100%;
    height:500px;
    border:0;
}

/* Animation */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Tablet */

@media(max-width:992px){

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .map-container iframe{
        height:400px;
    }
}

/* Mobile */

@media(max-width:768px){

    .contact-section{
        padding:70px 20px;
    }

    .contact-heading h2{
        font-size:32px;
    }

    .contact-heading p{
        font-size:16px;
    }

    .contact-box h3{
        font-size:20px;
    }

    .map-container iframe{
        height:350px;
    }
}

@media(max-width:480px){

    .contact-heading h2{
        font-size:28px;
    }

    .contact-box{
        padding:20px;
    }

    .map-container iframe{
        height:300px;
    }
}






/* WHATSAPP BUTTON */

.whatsapp-btn{
    position:fixed;
    bottom:20px;
    left:20px;
    width:60px;
    height:60px;
    z-index:999;
    animation:float 2s infinite;
}

.whatsapp-btn img{
    width:100%;
    height:100%;
    object-fit:contain;
}

/* CALL BUTTON */

.call-btn{
    position:fixed;
    bottom:95px;
    right:20px;
    width:60px;
    height:60px;
    background:#007bff;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:28px;
    box-shadow:0 5px 15px rgba(0,0,0,0.3);
    z-index:999;
    animation:float 2s infinite;
}

/* BACK TO TOP */

.top-btn{
    position:fixed;
    bottom:20px;
    right:20px;
    width:60px;
    height:60px;
    border:none;
    border-radius:50%;
    background:#003366;
    color:#fff;
    font-size:28px;
    cursor:pointer;
    display:none;
    z-index:999;
    box-shadow:0 5px 15px rgba(0,0,0,0.3);
    transition:0.3s;
}

.top-btn:hover{
    transform:translateY(-5px);
}

/* FLOAT ANIMATION */

@keyframes float{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-8px);
    }
    100%{
        transform:translateY(0);
    }
}

/* MOBILE */

@media(max-width:768px){

    .whatsapp-btn,
    .call-btn,
    .top-btn{
        width:55px;
        height:55px;
    }

    .call-btn,
    .top-btn{
        font-size:24px;
    }
}






/* FOOTER */

.footer{
    background:#003366;
    color:#ffffff;
    padding-top:70px;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    padding:0 8%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.footer-box{
    animation:footerFade 1s ease;
}

.footer-box h3{
    font-size:24px;
    margin-bottom:20px;
    position:relative;
}

.footer-box h3::after{
    content:'';
    width:50px;
    height:3px;
    background:#00bfff;
    position:absolute;
    left:0;
    bottom:-8px;
}

.footer-box p{
    line-height:1.8;
    color:#d9d9d9;
    margin-bottom:10px;
}

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin-bottom:12px;
    color:#d9d9d9;
}

.footer-box ul li a{
    color:#d9d9d9;
    text-decoration:none;
    transition:0.3s;
}

.footer-box ul li a:hover{
    color:#00bfff;
    padding-left:5px;
}

/* Social */

.footer-social{
    text-align:center;
    padding:30px 20px;
}

.footer-social a{
    display:inline-block;
    margin:8px;
    color:#ffffff;
    text-decoration:none;
    border:1px solid rgba(255,255,255,0.3);
    padding:10px 18px;
    border-radius:30px;
    transition:0.3s;
}

.footer-social a:hover{
    background:#00bfff;
    border-color:#00bfff;
}

/* Copyright */

.footer-bottom{
    text-align:center;
    padding:20px;
    border-top:1px solid rgba(255,255,255,0.15);
    color:#d9d9d9;
    font-size:14px;
}

/* Animation */

@keyframes footerFade{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Tablet */

@media(max-width:768px){

    .footer{
        padding-top:50px;
    }

    .footer-container{
        gap:30px;
    }

    .footer-box h3{
        font-size:22px;
    }
}

/* Mobile */

@media(max-width:480px){

    .footer-container{
        padding:0 20px;
    }

    .footer-box{
        text-align:center;
    }

    .footer-box h3::after{
        left:50%;
        transform:translateX(-50%);
    }

    .footer-social a{
        display:block;
        margin:10px auto;
        max-width:220px;
    }

    .footer-bottom{
        font-size:13px;
    }
}


