/*==================================
        RESET
==================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Poppins,sans-serif;
}

html{
    scroll-behavior:smooth;
    -webkit-overflow-scrolling:touch;
}

body{

    font-family:Arial, Helvetica, sans-serif;
    background:#FAFAFA;
    color:#222;
    overflow-x:hidden;

}

img{
    display:block;
    max-width:100%;
}

a{
    text-decoration:none;
}

section{

    padding:90px 8%;

}

/*==================================
        HEADER
==================================*/

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:90px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:30px;

    padding:0 8%;

    background:#FAFAFA;

    box-shadow:
    0 6px 12px rgba(0,0,0,.18),
    0 18px 40px rgba(0,0,0,.25);

    z-index:1000;

    transition:.35s;

}


header.scrolled{

    height:75px;

}

/*==================================
          LOGO
==================================*/

.logo{

    white-space:nowrap;

}

.logo h1{

    color:#003f91;

    font-size:50px;

}

.logo p{

    color:#666;

    font-size:14px;

    margin-top:4px;

}

/*==================================
        NAVIGATION MORDEN LOOK
==================================*/

nav{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:2px;

    padding:10px 20px;

    background:#FAFAFA;
    border-radius:40px;

    box-shadow:
        0 8px 25px rgba(0,0,0,.08),
        inset 0 1px 0 rgba(255,255,255,.9);

    transition:all .35s ease;
}

nav.active{
    display:flex;
}

nav a{
    position:relative;

    color:#0A3D62;
    text-decoration:none;

    font-size:17px;
    font-weight:600;
    letter-spacing:.4px;

    padding:12px 24px;

    border-radius:30px;

    transition:
        transform .35s ease,
        color .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}

nav a:hover{
    color:#ffffff;

    background:linear-gradient(135deg,#0A3D62,#1E81B0);

    transform:scale(1.08);

    box-shadow:
        0 10px 25px rgba(30,129,176,.35),
        0 0 15px rgba(72,202,228,.3);
}


nav a::after{
    content:"";
    position:absolute;

    left:50%;
    bottom:8px;

    width:0;
    height:3px;

    background:#48CAE4;

    border-radius:10px;

    transform:translateX(-50%);
    transition:.35s ease;
}

nav a:hover::after{
    width:70%;
}

nav a:active{
    transform:scale(.96);
}

.nav-header{
    display:none;
}


/*
===================================
this is for the header on mobile the logo and wave
====================================
*/

@media (max-width:992px){

    .nav-header{

        display:block;

        text-align:center;

        margin-bottom:25px;

        padding-bottom:20px;

        border-bottom:1px solid rgba(255,255,255,.15);

    }

    .nav-header img{

        width:90px;
        height:90px;

        border-radius:50%;

        object-fit:cover;

        border:4px solid rgba(72,202,228,.4);

        background:#fff;

        box-shadow:
            0 10px 30px rgba(0,0,0,.25),
            0 0 20px rgba(72,202,228,.35);
    }

    .nav-header h2{

        color:#fff;

        margin:15px 0 5px;

        font-size:24px;
    }

    .nav-header p{

        color:#d8f3ff;

        font-size:14px;

        margin-bottom:15px;
    }

}


/*==================================
      PARTNER LOGOS
==================================*/

.partner-strip{

    flex:1;

    overflow:hidden;
    background:#FAFAFA;

}

.partner-track{

    display:flex;

    align-items:center;

    width:max-content;

    animation:logos 22s linear infinite;
    background:#FAFAFA;

}

.partner-track img{

    height:30px;

    width:auto;

    margin:0 18px;

    opacity:.85;

    transition:.3s;

}

.partner-track img:hover{

    transform:scale(1.08);

    opacity:1;

}

.partner-strip:hover .partner-track{

    animation-play-state:paused;

}

@keyframes logos{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

/*==================================
            HERO
==================================*/

.hero{

    margin-top:90px;

    min-height:90vh;

    background:url("images/hero22.jpg") center center/cover no-repeat;

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.35);
     box-shadow:
    0 6px 12px rgba(0,0,0,.18),
    0 18px 40px rgba(0,0,0,.25);

}

.hero-content{

    position:relative;

    z-index:2;

    max-width:700px;

    text-align:center;

    color:#fff;

    padding:55px;

    border-radius:20px;

    background:rgba(0,63,145,.75);

    backdrop-filter:blur(8px);

}

.hero h2{

    font-size:52px;

    margin-bottom:20px;

}

.hero p{

    font-size:20px;

    line-height:1.6;

    margin-bottom:35px;

}

/*==================================
 BUTTONS glow added premimum look
==================================*/

.button{

    display:inline-block;

    padding:15px 35px;

    background:linear-gradient(135deg,#d60000,#ff2a2a);

    color:#fff;

    border:none;

    border-radius:50px;

    font-weight:600;

    letter-spacing:.5px;

    cursor:pointer;

    transition:all .35s ease;

    box-shadow:
        0 8px 20px rgba(214,0,0,.25);

    animation:redGlow 3s ease-in-out infinite;
}


.button:hover{

    background:linear-gradient(135deg,#ff2a2a,#ff5555);

    transform:translateY(-4px) scale(1.04);

    box-shadow:
        0 15px 30px rgba(214,0,0,.35),
        0 0 20px rgba(255,60,60,.20);

}

.button:active{

    transform:translateY(-1px) scale(.98);

}




/*==================================
          GLOW ANIMATION
==================================*/

@keyframes redGlow{

    0%{
        box-shadow:
            0 8px 18px rgba(214,0,0,.25);
    }

    50%{
        box-shadow:
            0 10px 25px rgba(0,0,0,.15),
            0 0 12px rgba(255,0,0,.18);
    }

    100%{
        box-shadow:
            0 8px 18px rgba(214,0,0,.25);
    }

}

/*==================================
          SERVICES
==================================*/

.services{

    position:relative;

    background-image:url(images/services.jpg);
    background-size:cover;
    background-position:center;
    background-attachment:fixed;

    text-align:center;

       padding:70px 5%;

    overflow:hidden;

    

}

/* Dark overlay so text is easier to read */
.services::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(8,35,70,.72),
        rgba(12,58,103,.65)
    );

}

.services > *{
    position:relative;
    z-index:2;
}


@media(max-width:768px){

    .services{

        background-image:url(images/servicesm.jpg);

        background-attachment:scroll;
        padding:70px 5%;

    width:100%;

    overflow-x:hidden;
    
    box-sizing:border-box;
    }
    

    .services h2{

        display:block;

        width:auto;
    
        max-width:90%;

        margin:0 auto 20px;

        padding:12px 24px;

        font-size:20px;

        line-height:1.2;

        letter-spacing:.5px;

        border-radius:18px;
        
        display:inline-flex;

        justify-content:center;

        align-items:center;
        
        

    }


    .cards{
        display:grid;
        grid-template-columns:1fr;
        gap:25px;
        width:100%;
    }

    .card{
        width:100%;
        max-width:100%;
        box-sizing:border-box;
        overflow:hidden;
    }

    .card img{
    display:block;
    max-width:100%;
    height:auto;
    margin:0 auto 20px;
}

}


.services h2{

    display:inline-block;

    padding:15px 40px;

    margin-bottom:25px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(12px);

    border:2px solid rgba(72,202,228,.35);

    border-radius:50px;

    color:#ffffff;

    font-size:42px;

    letter-spacing:1px;

    box-shadow:
        0 10px 25px rgba(0,0,0,.25);
}


.services p{

    color:#EAF8FF;

    font-size:18px;

    line-height:1.8;

}
 


.section-text{

    max-width:750px;

    margin:10px auto 50px;

    color:#DDEEFF;

    font-size:18px;

    line-height:1.8;

}

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:35px;

}

.card{

    background:rgba(255,255,255,.90);

    backdrop-filter:blur(12px);

    padding:20px 15px;

    border-radius:22px;

    border:1px solid rgba(72,202,228,.25);

    box-shadow:
        0 15px 35px rgba(0,0,0,.18);

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;

}

.card:hover{

    transform:
        translateY(-12px)
        scale(1.03);

    border-color:#48CAE4;

    box-shadow:
        0 20px 45px rgba(0,0,0,.22),
        0 0 25px rgba(72,202,228,.25);

}

.card img{
    width:90px;
    display:block;
    margin:0 auto 20px;
}

.card:hover img{

    transform:
        scale(1.12)
        rotate(-6deg);

}

.card h3{

    margin-bottom:18px;

    color:#0A3D62;

    font-size:24px;

    font-weight:700;

}

.card p{

    color:#555;

    line-height:1.8;

    font-size:16px;

}

.card-line{

    width:70px;

    height:5px;

    margin:0 auto 20px;

    border-radius:10px;

    background:linear-gradient(90deg,#48CAE4,#1E81B0);

}

/*==================================
            ABOUT
==================================*/



.about{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;
    background:#FAFAFA;
}

.about img{

    border-radius:20px;

}

.about h1{

    color:#003f91;

    margin-bottom:20px;

}

.about p{

    line-height:1.8;

    margin-bottom:30px;

}

/*==================================
          GALLERY
==================================*/

.gallery{

    position:relative;

    background:
        linear-gradient(rgba(8,35,70,.82),rgba(12,58,103,.82)),
        url(images/gallery-bg.jpg);

    background-size:cover;
    background-position:center;
    background-attachment:fixed;

    text-align:center;

    overflow:hidden;

}

.gallery::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        radial-gradient(circle at top right,
        rgba(72,202,228,.12),
        transparent 40%);

}

.gallery > *{

    position:relative;

    z-index:2;}



/*==================================
            HEADING
==================================*/

.gallery h2{

    display:inline-block;

    padding:15px 40px;

    margin-bottom:20px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(12px);

    border:2px solid rgba(72,202,228,.35);

    border-radius:50px;

    color:#fff;

    font-size:42px;

    box-shadow:
        0 10px 25px rgba(0,0,0,.25);

}



/*==================================
        GALLERY GRID
==================================*/

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

    margin-top:50px;

}



/*==================================
        GALLERY IMAGES
==================================*/

.gallery-grid img{

    width:100%;

    height:100%;

    object-fit:cover;

    border-radius:20px;

    border:3px solid rgba(72,202,228,.25);

    background:#fff;

    box-shadow:
        0 15px 35px rgba(0,0,0,.18);

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;

}


/*==================================
          HOVER EFFECT
==================================*/

.gallery-grid img:hover{

    transform:
        translateY(-10px)
        scale(1.04);

    border-color:#FFD166;

    box-shadow:
        0 20px 45px rgba(0,0,0,.28),
        0 0 25px rgba(255,209,102,.35);

}

/*==================================
            MOBILE
==================================*/

@media(max-width:768px){

    .gallery{

        background-attachment:scroll;

    }

    .gallery h2{

        font-size:34px;

        padding:12px 30px;

    }

    .gallery-grid{

        gap:20px;

    }

    .gallery-grid img{

        height:100%;

        border-radius:18px;

    }

}

.gallery-grid img:nth-child(even){

    margin-top:20px;

}

@media(max-width:768px){

    .gallery-grid img:nth-child(even){

        margin-top:0;

    }

}


/*==================================
     FOOTER
==================================*/


/*==================================
     FOOTER
==================================*/

footer{
    position: relative;
    background: linear-gradient(180deg, #012A4A 0%, #013A63 55%, #001D3D 100%);
    color: #fff;
    text-align: center;
    padding: 70px 20px 35px;
    overflow: hidden;
    border-top: 4px solid #D4AF37;
}

/* Ocean Glow */
footer::before{
    content: "";
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 250px;
    background: radial-gradient(circle,
        rgba(0,170,255,.20),
        transparent 70%);
    pointer-events: none;
}

/* Gold line */
footer::after{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg,#D4AF37,#FFD700,#D4AF37);
    border-radius: 20px;
}

footer h3{
    font-size: 28px;
    color: #FFD166;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

footer p{
    color: rgba(255,255,255,.88);
    line-height: 1.8;
    max-width: 750px;
    margin: 10px auto;
    font-size: 16px;
}

footer a{
    color: #7FDFFF;
    text-decoration: none;
    transition: .3s;
}

footer a:hover{
    color: #FFD166;
}

.footer-divider{
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg,#D4AF37,#FFD166,#D4AF37);
    margin: 25px auto;
    border-radius: 20px;
}

.footer-bottom{
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.7);
    font-size: 14px;
}

/*==================================
      SCROLL ANIMATIONS
==================================*/

.hidden{

    opacity:0;

    transform:translateY(60px);

    transition:all .8s ease;

}

.show{

    opacity:1;

    transform:translateY(0);

}

/* ==========================
   HAMBURGER MENU
========================== */

  .mobile-menu{
    display:none;
}

nav {
    transition: transform .35s ease, opacity .35s ease;
}

nav.active {
    display: flex;
}

body.nav-open {
    overflow:hidden;
}

@media (max-width: 992px) {

    header{
        position:static;
        flex-wrap:wrap;
        align-items:flex-start;
        padding:16px 6%;
        height:auto;
        gap:18px;
        box-shadow:0 10px 25px rgba(0,0,0,.08);
    }

    header.scrolled{
        height:auto;
    }

    .logo{
        flex:1 1 100%;
        order:1;
        margin-bottom:8px;
    }



@media (max-width:992px){

    /*my hamburger has a morden look*/
  @media (max-width:992px){

    /* Mobile Menu Container */
    .mobile-menu{
        display:flex;
        align-items:center;
        justify-content:space-between;
        width:100%;
        order:2;

        padding:12px 18px;

        background:linear-gradient(135deg,#0A3D62,#1E81B0);

        border-radius:18px;

        color:#fff;

        box-shadow:
            0 10px 25px rgba(10,61,98,.30),
            0 0 15px rgba(72,202,228,.20);

        transition:all .35s ease;

        animation:mobileGlow 3s ease-in-out infinite;
    }

    .mobile-menu:hover{
        transform:translateY(-3px);

        background:linear-gradient(135deg,#1E81B0,#48CAE4);

        box-shadow:
            0 15px 30px rgba(30,129,176,.35),
            0 0 20px rgba(72,202,228,.35);
    }

    /* Hamburger Button */
    .menu-toggle{
        display:block;

        font-size:30px;
        color:#fff;

        background:none;
        border:none;

        cursor:pointer;

        transition:
            transform .4s ease,
            color .3s ease;
    }

    .menu-toggle:hover{
        transform:rotate(180deg) scale(1.15);
        color:#90E0EF;
    }

    .menu-toggle:active{
        transform:rotate(360deg) scale(.9);
    }

    .menu-toggle:focus-visible{
        outline:none;
    }

    /* Quick Find Text */
    .hamburger{
        display:block;

        font-size:15px;
        font-weight:600;

        color:#fff;

        margin:0;          /* Remove the 120px margin */
        margin-right:50px;  /* Pushes the text to the right */
    }
}

/* Glow Animation */
@keyframes mobileGlow{

    0%{
        box-shadow:
            0 8px 20px rgba(10,61,98,.25);
    }

    50%{
        box-shadow:
            0 12px 30px rgba(30,129,176,.45),
            0 0 18px rgba(72,202,228,.30);
    }

    100%{
        box-shadow:
            0 8px 20px rgba(10,61,98,.25);
    }
}
}

    .partner-strip{
        flex:1 1 100%;
        order:3;
        width:100%;
        padding:12px 0;
        background:#ffffff;
        border-radius:20px;
        box-shadow:0 10px 20px rgba(0,0,0,.08);
        overflow-x:auto;
        overflow-y:hidden;
    }

    .partner-strip::-webkit-scrollbar{
        display:none;
    }

    .partner-track{
        justify-content:flex-start;
        min-width:100%;
        gap:12px;
    }

/*
NAV bar morden look in the mobile view with gradient background and hover
*/

   nav{
    position:fixed;
    top:0;
    right:0;
    height:100vh;
    width:min(340px,80vw);

    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:12px;

    padding:90px 20px 30px;

    background:linear-gradient(180deg,#0A3D62 0%,#0F5C91 45%,#1E81B0 100%);
    backdrop-filter:blur(15px);

    border-left:4px solid #48CAE4;
    box-shadow:-15px 0 40px rgba(0,0,0,.35);

    overflow-y:auto;

    transform:translateX(100%);
    transition:transform .4s ease;

    z-index:1100;
}

nav a{
    position:relative;

    width:100%;
    padding:16px 20px;

    color:#ffffff;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
    letter-spacing:.5px;

    border-bottom:1px solid rgba(255,255,255,.15);
    border-radius:12px;

    transition:all .35s ease;
}

nav a:hover{
    background:rgba(255,255,255,.15);

    transform:scale(1.06);

    color:#ffffff;

    box-shadow:
        0 0 20px rgba(72,202,228,.45),
        inset 0 0 12px rgba(255,255,255,.15);

    border-left:5px solid #48CAE4;

    padding-left:28px;
}

nav a:active{
    transform:scale(.97);
}

nav a:focus-visible{
    outline:none;
    box-shadow:0 0 0 3px rgba(72,202,228,.5);
}

nav a i{
    margin-right:14px;
    width:22px;
    color:#48CAE4;
}


    nav.active{
        transform:translateX(0);
    }

    .hero{
        margin-top:0;
        min-height:70vh;
    }

    .hero-content{
        padding:35px;
    }

    .hero h2{
        font-size:38px;
    }

    .hero p{
        font-size:18px;
    }

    .services,
    .gallery,
    .contact,
    footer{
        padding:70px 6%;
    }

    .about{
        grid-template-columns:1fr;
        gap:40px;
    }

    .about img{
        width:100%;
    }

    .gallery-grid{
        grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    }

}

@media (max-width: 640px) {

    header{
        padding:14px 5%;
        gap:14px;
        box-shadow:none;
    }

    .logo h1{
        font-size:24px;
    }

    .logo p{
        font-size:13px;
    }

    .partner-strip{
        display:block;
        width:100%;
        order:3;
        padding:10px 0;
        background:#ffffff;
        border-radius:18px;
        box-shadow:0 10px 20px rgba(0,0,0,.08);
    }

    .partner-track{
        animation:logos 18s linear infinite;
        min-height:40px;
    }

    .partner-track img{
        height:28px;
        margin:0 10px;
        filter:none;
    }

    .hero{
        padding-top:20px;
        margin-top:0;
    }

    .hero-content{
        padding:28px 20px;
    }

    .hero h2{
        font-size:32px;
    }

    .hero p{
        font-size:16px;
    }

    .button{
        padding:14px 30px;
    }

    .section-text,
    .about p,
    .contact p,
    footer p{
        font-size:15px;
        
    }

    .cards{
        gap:20px;
    }

    .card{
        padding:30px 20px;
    }

    .gallery-grid{
        gap:14px;
    }

    section{
        padding:70px 5%;
    }

}


/*==================================
        LOGO above company name
==================================*/

/* Logo container */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Logo image */
.logo img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Logo hover */
.logo img:hover {
    transform: scale(1.08);
}

/* Company name */
.logo h1 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: black;
}

/*mobile css*/
@media (max-width:768px){

    .logo img{
        width:50px;
        height:50px;
    }

    .logo h1{
        font-size:20px;
    }

}

/*==============================
        Powered By
==============================*/

.powered-by{
    margin-top:30px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
    opacity:.95;
}

.powered-line{
    width:70px;
    height:2px;
    background:linear-gradient(90deg,
        transparent,
        #D4AF37,
        #FFD166,
        #D4AF37,
        transparent);
    border-radius:20px;
}

.powered-by span{
    color:rgba(255,255,255,.75);
    font-size:14px;
    font-weight:500;
    letter-spacing:2px;
    text-transform:uppercase;
}

.powered-by img{
    width:52px;
    height:auto;
    transition:.35s ease;
    filter:drop-shadow(0 0 10px rgba(255,209,102,.35));
}

.powered-by img:hover{
    transform:translateY(-3px) scale(1.08);
    filter:drop-shadow(0 0 18px rgba(255,209,102,.8));
}


/*
=================================
Booking Form
=============================
*/

/*==================================
        CONTACT SECTION
==================================*/

.contact{

    position:relative;

    padding:110px 8%;

    text-align:center;

    background:
        linear-gradient(
            rgba(6,28,58,.88),
            rgba(8,45,88,.90)
        ),
        url(images/contact-bg.jpg);

    background-size:cover;

    background-position:center;

    background-attachment:fixed;

    overflow:hidden;

}

.contact::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        radial-gradient(circle at top right,
        rgba(255,193,7,.10),
        transparent 45%);

}

.contact>*{

    position:relative;

    z-index:2;

}


.contact h2{

    display:inline-block;

    padding:16px 45px;

    color:#fff;

    font-size:42px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(15px);

    border:2px solid rgba(72,202,228,.35);

    box-shadow:0 15px 35px rgba(0,0,0,.25);

}

.contact p{

    max-width:700px;

    margin:20px auto 60px;

    color:#EAF8FF;

    font-size:18px;

    line-height:1.8;

}


form{

    position:relative;

    max-width:820px;

    margin:auto;

    padding:45px;

    border-radius:28px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.12);

    box-shadow:
        0 25px 60px rgba(0,0,0,.35);

}

form::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;

    height:6px;

    border-radius:28px 28px 0 0;

    background:
        linear-gradient(
            90deg,
            #FFD700,
            #FFB000,
            #48CAE4
        );

}

input,
select,
textarea{

    width:100%;

    margin-bottom:18px;

    padding:18px 20px;

    border-radius:15px;

    border:2px solid transparent;

    background:#ffffff;

    font-size:16px;

    color:#0A3D62;

    transition:.35s;

    box-sizing:border-box;

}

input::placeholder,
textarea::placeholder{

    color:#888;

}

input:focus,
select:focus,
textarea:focus{

    outline:none;

    border-color:#48CAE4;

    box-shadow:
        0 0 0 4px rgba(72,202,228,.15),
        0 0 20px rgba(72,202,228,.25);

}

@media(max-width:768px){

    .contact{

        padding:80px 5%;

        background-attachment:scroll;

    }

    .contact h2{

        font-size:32px;

        padding:14px 28px;

    }

    .contact p{

        font-size:16px;

        margin-bottom:40px;

    }

    form{

        padding:25px 20px;

        border-radius:20px;

    }

    input,
    select,
    textarea{

        padding:16px;

        font-size:16px; /* Prevents iPhone zoom */

    }

    button{

        padding:16px;

        font-size:17px;

    }

}

.input-group p{
    color: #bb1919;
    font-size:medium;
}


/*terms box*/
/*css for terms and conditions box for us to contact client */
.terms-box{

    display:flex;

    align-items:flex-start;

    gap:15px;

    margin:25px 0;

    padding:18px 20px;

    background:rgba(255, 255, 255, 0.301);

    backdrop-filter:blur(12px);

    border:1px solid rgba(72,202,228,.25);

    border-left:5px solid #bb1919;

    border-radius:18px;

    color:#EAF8FF;

    line-height:1.7;

    transition:.35s ease;

}

.terms-box:hover{

    border-color:#48CAE4;

    box-shadow:
        0 10px 25px rgba(72,202,228,.15);

}

/*==================================
            CHECKBOX
==================================*/

.terms-box input[type="checkbox"]{

    width:22px;

    height:22px;

    margin-top:2px;

    accent-color:#bb1919;

    cursor:pointer;

    flex-shrink:0;

}

/*==================================
             LABEL
==================================*/

.terms-box label{

    cursor:pointer;

    font-size:15px;

    color:#ffffff;

}


/*==================================
             LINKS
==================================*/

.terms-box a{

    color:#ff0707cc;

    font-weight:600;

    text-decoration:none;

    transition:.3s;

}

.terms-box a:hover{

    color:#48CAE4;

    text-decoration:underline;

}

/*==================================
        TERMS SECTION
==================================*/

.terms{

    margin-top:60px;

    padding:30px;

    background:rgba(255, 255, 255, 0.384);

    backdrop-filter:blur(12px);

    border-left:6px solid #bb1919;

    border-radius:22px;

    color:#EAF8FF;

    line-height:1.9;

    box-shadow:
        0 15px 35px rgba(0,0,0,.18);

}

.terms h3{

    color:#EAF8FF;

    margin-bottom:15px;

    font-size:28px;

}

/*==================================
            MOBILE
==================================*/

@media(max-width:768px){

    .terms-box{

        padding:15px;

        gap:12px;

        border-radius:15px;

    }

    .terms-box label{

        font-size:14px;

        line-height:1.6;

    }

    .terms-box input[type="checkbox"]{

        width:20px;

        height:20px;

    }

    .terms{

        padding:22px;

        border-radius:18px;

    }

    .terms h3{

        font-size:22px;

    }

}



/*==================================
        SUBMIT BUTTON
==================================*/

.submit-btn{

    width:100%;

    padding:18px 25px;

    margin-top:15px;

    border:none;

    border-radius:50px;

    background:linear-gradient(135deg,#C1121F,#E63946);

    color:#fff;

    font-size:18px;

    font-weight:700;

    letter-spacing:.5px;

    cursor:pointer;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background .35s ease;

    box-shadow:
        0 10px 25px rgba(193,18,31,.35);

}

/* Hover */

.submit-btn:hover{

    background:linear-gradient(135deg,#E63946,#FF4D5A);

    transform:
        translateY(-4px)
        scale(1.02);

    box-shadow:
        0 18px 35px rgba(193,18,31,.45),
        0 0 20px rgba(255,77,90,.30);

}

/* Click */

.submit-btn:active{

    transform:scale(.97);

}

/* Keyboard Focus */

.submit-btn:focus-visible{

    outline:none;

    box-shadow:
        0 0 0 4px rgba(72,202,228,.35),
        0 15px 30px rgba(193,18,31,.35);

}

/* Mobile */

@media (max-width:768px){

    .submit-btn{

        width:100%;

        padding:16px;

        font-size:17px;

    }

}



/*==================================
            DATE INPUT
==================================*/

#date{

    width:100%;

    min-height:56px;

    padding:0 18px;

    margin-bottom:18px;

    font-family:'Poppins',sans-serif;

    font-size:16px;

    color:#0A3D62;

    background:rgba(255,255,255,.96);

    border:2px solid rgba(72,202,228,.25);

    border-radius:16px;

    box-sizing:border-box;

    cursor:pointer;

    transition:
        border-color .35s ease,
        box-shadow .35s ease,
        transform .25s ease,
        background .35s ease;

    appearance:none;
    -webkit-appearance:none;

}

/* Hover */

#date:hover{

    border-color:#FFD166;

    transform:translateY(-2px);

    box-shadow:
        0 8px 20px rgba(72,202,228,.15);

}

/* Focus */

#date:focus{

    outline:none;

    border-color:#48CAE4;

    background:#ffffff;

    box-shadow:
        0 0 0 4px rgba(72,202,228,.15),
        0 0 20px rgba(72,202,228,.25);

}

/* Calendar Icon */

#date::-webkit-calendar-picker-indicator{

    cursor:pointer;

    opacity:.9;

    padding:4px;

    border-radius:50%;

    transition:
        transform .3s ease,
        opacity .3s ease;

}

#date::-webkit-calendar-picker-indicator:hover{

    opacity:1;

    transform:scale(1.15);

}

/*==================================
            MOBILE
==================================*/

@media(max-width:768px){

    #date{

        min-height:54px;

        font-size:16px; /* Prevents iPhone zoom */

        padding:0 16px;

        border-radius:14px;

    }

    #date::-webkit-calendar-picker-indicator{

        width:22px;

        height:22px;

    }

}

@media(max-width:480px){

    #date{

        min-height:52px;

        padding:0 14px;

    }

}


/*==================================
            TIME SELECT
==================================*/

#time{

    width:100%;

    min-height:56px;

    padding:0 50px 0 18px;

    margin-bottom:18px;

    font-family:'Poppins',sans-serif;

    font-size:16px;

    color:#0A3D62;

    background:#ffffff;

    border:2px solid rgba(72,202,228,.25);

    border-radius:16px;

    box-sizing:border-box;

    cursor:pointer;

    transition:
        border-color .35s ease,
        box-shadow .35s ease,
        transform .25s ease,
        background .35s ease;

    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

    /* Blue Arrow */
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%230A3D62'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");

    background-repeat:no-repeat;

    background-position:right 18px center;

    background-size:22px;

}

/* Hover */

#time:hover{

    border-color:#FFD166;

    transform:translateY(-2px);

    box-shadow:
        0 8px 20px rgba(72,202,228,.15);

}

/* Focus */

#time:focus{

    outline:none;

    border-color:#48CAE4;

    background:#ffffff;

    box-shadow:
        0 0 0 4px rgba(72,202,228,.15),
        0 0 20px rgba(72,202,228,.25);

}

/* Selected */

#time:valid{

    color:#0A3D62;

}

/* Placeholder */

#time option:first-child{

    color:#888;

}

#time option{

    color:#0A3D62;

    background:#ffffff;

}

/*==================================
            MOBILE
==================================*/

@media(max-width:768px){

    #time{

        min-height:54px;

        font-size:16px; /* Prevents iPhone zoom */

        padding:0 48px 0 16px;

        border-radius:14px;

        background-size:20px;

    }

}

@media(max-width:480px){

    #time{

        min-height:52px;

        padding:0 45px 0 14px;

        background-position:right 14px center;

        background-size:18px;

    }

}

#date:hover,
#time:hover{

    background:#FCFEFF;

    border-color:#FFD166;

}



/*==================================
        ERROR MESSAGE
==================================*/

.error-message{

    display:none;

    width:100%;

    margin:8px 0 15px;

    padding:14px 18px;

    background:#ffffff;

    color:#B00020;

    border:2px solid #C1121F;

    border-left:8px solid #C1121F;

    border-radius:14px;

    font-size:15px;

    font-weight:600;

    line-height:1.6;

    box-shadow:
        0 10px 25px rgba(0,0,0,.18);

    animation:errorSlide .35s ease;

}

.error-message.show{

    display:block;

}

.error-message::before{

    content:"⚠ ";

    font-size:18px;

    color:#C1121F;

    font-weight:bold;

}

/* Invalid Input */

input.invalid,
select.invalid,
textarea.invalid{

    border:2px solid #C1121F !important;

    background:#FFF5F6;

    box-shadow:
        0 0 0 4px rgba(193,18,31,.12);

}

/* Animation */

@keyframes errorSlide{

    from{

        opacity:0;

        transform:translateY(-8px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}



/* Valid */

.input-group.valid i{

    background:linear-gradient(135deg,#2ECC71,#27AE60);

    color:#fff;

}

/* Invalid */

.input-group.invalid i{

    background:linear-gradient(135deg,#C1121F,#E63946);

    color:#fff;

}




/*==================================
        POPUP OVERLAY
==================================*/

.popup-overlay{

    position:fixed;

    inset:0;

    display:none;

    justify-content:center;

    align-items:center;

    padding:20px;

    background:rgba(5,18,35,.82);

    backdrop-filter:blur(8px);

    z-index:99999;

}

/*==================================
          POPUP BOX
==================================*/

.popup-box{

    width:100%;

    max-width:520px;

    background:linear-gradient(
        160deg,
        #ffffff,
        #F8FBFF
    );

    border-radius:28px;

    padding:40px 35px;

    text-align:center;

    border:2px solid rgba(72,202,228,.25);

    box-shadow:
        0 25px 60px rgba(0,0,0,.35);

    animation:popup .4s ease;

    position:relative;

    overflow:hidden;

}

/* Gold Top Bar */

.popup-box::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:6px;

    background:linear-gradient(
        90deg,
        #FFD166,
        #48CAE4,
        #C1121F
    );

}

/*==================================
        SUCCESS ICON
==================================*/

.success-icon{

    width:95px;

    height:95px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:46px;

    color:#fff;

    background:linear-gradient(
        135deg,
        #28A745,
        #4CD964
    );

    box-shadow:
        0 15px 30px rgba(40,167,69,.35);

}

/*==================================
            TITLE
==================================*/

.popup-box h2{

    color:#0A3D62;

    font-size:30px;

    margin-bottom:15px;

}

.popup-box p{

    color:#555;

    line-height:1.8;

}

/*==================================
          WARNING
==================================*/

.popup-warning{

    margin:25px 0;

    padding:18px;

    border-radius:16px;

    background:#FFF9EB;

    border-left:6px solid #FFD166;

    color:#7A5A00;

    font-weight:600;

    text-align:left;

}

/*==================================
        BOOKING CODE
==================================*/

.booking-code-box{

    margin:25px 0;

    padding:25px;

    border-radius:18px;

    background:#EEF8FF;

    border:2px dashed #1E81B0;

}

.booking-code-box h3{

    margin-top:12px;

    color:#0A3D62;

    font-size:26px;

    letter-spacing:3px;

    font-weight:700;

}

/*==================================
            BUTTONS
==================================*/

#copyCode,
#closePopup{

    width:100%;

    padding:16px;

    margin-top:15px;

    border:none;

    border-radius:50px;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}

/* Copy Button */

#copyCode{

    background:linear-gradient(
        135deg,
        #0A3D62,
        #1E81B0
    );

    color:#fff;

    box-shadow:
        0 12px 25px rgba(30,129,176,.30);

}

#copyCode:hover{

    transform:translateY(-3px);

    box-shadow:
        0 18px 35px rgba(30,129,176,.40);

}

/* Close Button */

#closePopup{

    background:linear-gradient(
        135deg,
        #C1121F,
        #E63946
    );

    color:#fff;

    box-shadow:
        0 12px 25px rgba(193,18,31,.30);

}

#closePopup:hover{

    transform:translateY(-3px);

    box-shadow:
        0 18px 35px rgba(193,18,31,.40);

}

/*==================================
        POPUP ANIMATION
==================================*/

@keyframes popup{

    from{

        opacity:0;

        transform:
            scale(.8)
            translateY(30px);

    }

    to{

        opacity:1;

        transform:
            scale(1)
            translateY(0);

    }

}

/*==================================
            MOBILE
==================================*/

@media(max-width:768px){

    .popup-box{

        padding:30px 22px;

        border-radius:22px;

    }

    .success-icon{

        width:80px;

        height:80px;

        font-size:38px;

    }

    .popup-box h2{

        font-size:24px;

    }

    .booking-code-box h3{

        font-size:20px;

        letter-spacing:2px;

        word-break:break-word;

    }

}



    .input-group{

    position:relative;

    margin:35px 0 25px;

}

/* Floating Icon */

.input-group i{

    position:absolute;

    top:-42px;

    left:25px;

    width:40px;

    height:40px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:linear-gradient(135deg,#0A3D62,#1E81B0);

    color:#fff;

    font-size:18px;

    border:3px solid #fff;

    box-shadow:
        0 10px 25px rgba(30,129,176,.35);

    transition:.35s ease;

    z-index:10;

}

/* Input */

.input-group input,
.input-group select,
.input-group textarea{

    width:100%;

    padding:24px 20px 18px 20px;

    border:2px solid rgba(72,202,228,.30);

    border-radius:18px;

    background:#fff;

}

/* Focus */

.input-group:focus-within i{

    transform:
        translateY(-4px)
        scale(1.15);

    background:linear-gradient(
        135deg,
        #FFD166,
        #F4B400
    );

    color:#0A3D62;

    box-shadow:
        0 0 18px rgba(255,209,102,.45),
        0 15px 30px rgba(0,0,0,.20);

}

/* =========================================
   VALID
========================================= */

.input-group.valid input,
.input-group.valid select,
.input-group.valid textarea{

    border-color:#1cc88a;

    box-shadow:
        0 0 0 4px rgba(28,200,138,.15);

}

.input-group.valid .input-icon{

    background:linear-gradient(135deg,#1cc88a,#10b981);

}

/* =========================================
   INVALID
========================================= */

.input-group.invalid input,
.input-group.invalid select,
.input-group.invalid textarea{

    border-color:#e74c3c;

    box-shadow:
        0 0 0 4px rgba(231,76,60,.15);

}

.input-group.invalid .input-icon{

    background:linear-gradient(135deg,#e74c3c,#ff6b6b);

}

/* Green Tick */

.input-group.valid .status-icon{

    opacity:1;

    transform:translateY(-50%) scale(1);

    color:#1cc88a;

}

/* Red Cross */

.input-group.invalid .status-icon{

    opacity:1;

    transform:translateY(-50%) scale(1);

    color:#e74c3c;

}


/*=======================
Remove scrollbar from chrome and more mobile
===========================*/
@media (max-width:768px){

    html,
    body{

        overflow-y:auto;
        overflow-x:hidden;

        /* Firefox */
        scrollbar-width:none;

        /* Internet Explorer */
        -ms-overflow-style:none;

        /* Smooth touch scrolling */
        -webkit-overflow-scrolling:touch;
    }

    /* Chrome, Edge, Safari */
    html::-webkit-scrollbar,
    body::-webkit-scrollbar{

        display:none;

    }

}

/*
=============================
TABLETS TO
=============================
*/

@media (max-width:992px){
    html,
    body{
        overflow-y:auto;
        overflow-x:hidden;
        scrollbar-width:none;
        -ms-overflow-style:none;
        -webkit-overflow-scrolling:touch;
    }

    html::-webkit-scrollbar,
    body::-webkit-scrollbar{
        display:none;
    }
}



/*whatsapp code for floating whatsapp*/
 /* Floating WhatsApp Button */
.whatsapp-float{

    position:fixed;

    right:20px;
    bottom:158px;

    width:60px;
    height:60px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:#25D366;

    border:3px solid rgba(255,255,255,.95);

    box-shadow:
        0 8px 22px rgba(0,0,0,.25),
        0 0 0 4px rgba(37,211,102,.15);

    transition:.35s ease;

    z-index:9999;

}

.whatsapp-float:hover{

    transform:
        translateY(-4px)
        scale(1.08);

    box-shadow:
        0 12px 30px rgba(0,0,0,.3),
        0 0 20px rgba(37,211,102,.45);

}
.whatsapp-float img {
  width: 35px;  /* icon size inside button */
  height: 35px;
}

.whatsapp-badge {
  position: absolute;
  top: 5px;
  right: 5px;
  background: red;
  color: white;
  font-size: 14px;
  font-weight: bold;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 18px;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}


/* ================================
   WhatsApp Hover Popup
================================ */

.whatsapp-popup{

    position:absolute;

    right:75px;

    bottom:0;

    width:250px;

    background:#fff;

    border-radius:15px;

    padding:14px 16px;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

    opacity:0;

    visibility:hidden;

    transform:translateX(15px);

    transition:.35s;

    font-family:'Poppins',sans-serif;

}

.whatsapp-float:hover .whatsapp-popup{

    opacity:1;

    visibility:visible;

    transform:translateX(0);

}

.popup-header{

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:600;

    color:#333;

    margin-bottom:8px;

}

.popup-message{

    font-size:13px;

    color:#666;

    line-height:1.4;

}

/* ================================
   Status Dot
================================ */

.status-dot{

    width:12px;

    height:12px;

    border-radius:50%;

}

/* ONLINE */

.status-dot.online{

    background:#00d26a;

    box-shadow:
        0 0 6px #00d26a,
        0 0 12px #00d26a,
        0 0 20px #00d26a;

    animation:onlinePulse 1.5s infinite;

}

/* OFFLINE */

.status-dot.offline{

    background:#ff3b30;

    box-shadow:
        0 0 6px #ff3b30,
        0 0 12px #ff3b30,
        0 0 20px #ff3b30;

    animation:offlinePulse 1.5s infinite;

}

@keyframes onlinePulse{

    0%{transform:scale(1);}
    50%{transform:scale(1.35);}
    100%{transform:scale(1);}

}

@keyframes offlinePulse{

    0%{transform:scale(1);}
    50%{transform:scale(1.35);}
    100%{transform:scale(1);}

}

/* Mobile */
@media (max-width:768px){

    .whatsapp-float{

        bottom:120px;
        right:15px;

        width:58px;
        height:58px;

    }

    .whatsapp-float img{

        width:32px;
        height:32px;

    }

    .whatsapp-popup{

        right:0;

        bottom:72px;

        width:220px;

        max-width:80vw;

        transform:translateY(15px);

    }

    .whatsapp-popup.show{

        opacity:1;
        visibility:visible;
        transform:translateY(0);

    }

}


/* ============================
   Back To Top
============================ */

#backToTop{

    position:fixed;

    right:20px;
    bottom:30px;

    width:60px;
    height:60px;

    border:none;

    background:transparent;

    cursor:pointer;

    display:none;

    justify-content:center;
    align-items:center;

    z-index:9999;

}

/* Show */

#backToTop.show{

    display:flex;

}

/* Blue Circle */

.arrow{

    position:absolute;

    width:54px;
    height:54px;

    border-radius:50%;

    background:linear-gradient(135deg,#0A3D62,#1E81B0);

    display:flex;

    justify-content:center;
    align-items:center;

    color:#fff;

    font-size:28px;

    font-weight:bold;

    box-shadow:
        0 0 15px rgba(30,129,176,.45);

    transition:.35s;

}

/* Hover */

#backToTop:hover .arrow{

    background:linear-gradient(135deg,#FFD166,#F4B400);

    color:#0A3D62;

    transform:scale(1.1);

}

/* Ring */

.progress-ring{

    position:absolute;

    transform:rotate(-90deg);

}

.progress-ring-bg{

    fill:none;

    stroke:#d7edf6;

    stroke-width:4;

}

.progress-ring-fill{

    fill:none;

    stroke:#F4B400;

    stroke-width:4;

    stroke-linecap:round;

    stroke-dasharray:188.5;

    stroke-dashoffset:188.5;

    transition:.15s linear;

}

/* Floating Animation */

@keyframes float{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-6px);

    }

}

#backToTop{

    animation:float 3s ease-in-out infinite;

}

/* Mobile */

@media(max-width:768px){

    #backToTop{

        width:50px;
        height:50px;

        right:15px;
        bottom:18px;

    }

}

