/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    width:100%;
    display:block;
}

/* ==========================
   CONTAINER
========================== */

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* ==========================
   COLORS
========================== */

:root{

--primary:#f58220;

--secondary:#0d2340;

--white:#fff;

--dark:#111;

--light:#f6f6f6;

}

/* ==========================
   TOP BAR
========================== */

.top-bar{

background:var(--secondary);

color:white;

padding:12px 0;

font-size:14px;

}

.top-bar .container{

display:flex;

justify-content:space-between;

align-items:center;

}

.top-bar .left span{

color:var(--primary);

font-weight:600;

}

.top-bar .right{

display:flex;

gap:20px;

align-items:center;

}

.top-bar .right a{

color:white;

transition:.3s;

}

.top-bar .right a:hover{

color:var(--primary);

}

/* ==========================
   NAVBAR
========================== */

header{

background:white;

position:sticky;

top:0;

z-index:999;

box-shadow:0 3px 15px rgba(0,0,0,.08);

}

nav{

display:flex;

justify-content:space-between;

align-items:center;

height:90px;

}

.logo h1{
    font-size:48px;
    font-weight:800;
    color:#0b2345;
    margin:0;
    line-height:1;
}

.logo h1 span{
    color:#ff7a00;
}

.logo-tagline{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin-top:6px;
}

.logo-tagline p{
    margin:0;
    font-size:15px;
    letter-spacing:5px;
    color:#777;
    text-transform:uppercase;
}

.logo-tagline .line{
    width:55px;
    height:3px;
    background:#ff7a00;
    border-radius:10px;
}

nav ul{

display:flex;

gap:35px;

}

nav ul li a{

font-weight:600;

color:#222;

transition:.3s;

}

nav ul li a:hover{

color:var(--primary);

}

.book-btn{

background:var(--primary);

padding:14px 28px;

border-radius:8px;

font-weight:600;

color:white;

transition:.3s;

}

.book-btn:hover{

background:#e76d07;

}

/* ==========================
   HERO
========================== */

.hero{
    position: relative;
    height: 95vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Background Video */
.hero-video{
    position: absolute;
     inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Dark Overlay */
.overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 2;
}

.hero-content{
    position: relative;
    z-index: 3;
    color: white;
}

.hero-left{
    width:650px;
}

.hero-left h4{
    font-size:18px;
    letter-spacing:3px;
    color:#ffcf75;
    margin-bottom:20px;
}

.hero-left h1{
    font-size:72px;
    line-height:82px;
    font-weight:800;
    margin-bottom:20px;
}

.hero-left h1 span{
    color:var(--primary);
}

.hero-left p{
    font-size:18px;
    line-height:34px;
    margin-bottom:35px;
    width:90%;
}

/* ==========================
   HERO BUTTONS
========================== */

.hero-buttons{

display:flex;

gap:20px;

}

.btn-orange{

background:var(--primary);

padding:16px 36px;

border-radius:8px;

color:white;

font-weight:600;

transition:.3s;

}

.btn-orange:hover{

background:#dd6b08;

}

.btn-dark{

background:white;

color:#222;

padding:16px 36px;

border-radius:8px;

font-weight:600;

transition:.3s;

}

.btn-dark:hover{

background:#eee;

}
/* ==========================
   BOOKING SECTION
========================== */

.booking{
    padding:80px 0;
    background:#f8f9fb;
}

.booking-box{
    background:#fff;
    padding:50px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.booking-title{
    text-align:center;
    margin-bottom:40px;
}

.booking-title h2{
    font-size:38px;
    color:var(--secondary);
    margin-bottom:10px;
}

.booking-title p{
    color:#666;
}

.booking form{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.input-box{
    display:flex;
    flex-direction:column;
}

.input-box label{
    font-weight:600;
    margin-bottom:10px;
    color:#333;
}

.input-box input,
.input-box select{

    height:55px;
    border:1px solid #ddd;
    border-radius:8px;
    padding:0 15px;
    font-size:16px;
    outline:none;

}

.booking button{

    height:55px;
    margin-top:32px;
    border:none;
    background:var(--primary);
    color:#fff;
    border-radius:8px;
    font-size:17px;
    cursor:pointer;
    transition:.3s;

}

.booking button:hover{

background:#dc6a08;

}

/* ==========================
   SECTION TITLE
========================== */

.section-title{

text-align:center;

margin-bottom:60px;

}

.section-title h2{

font-size:45px;

color:var(--secondary);

margin-bottom:15px;

}

.section-title p{

color:#666;

font-size:18px;

}

/* ==========================
   WHY CHOOSE US
========================== */

.why-us{

padding:100px 0;

background:#fff;

}

.why-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.why-card{

background:#fff;

padding:40px 30px;

text-align:center;

border-radius:15px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.4s;

}

.why-card:hover{

transform:translateY(-12px);

}

.why-card i{

font-size:55px;

color:var(--primary);

margin-bottom:20px;

}

.why-card h3{

margin-bottom:15px;

font-size:24px;

color:var(--secondary);

}

.why-card p{

line-height:28px;

color:#666;

}

/* ==========================
   OUR FLEET
========================== */

.fleet{

padding:100px 0;

background:#f8f9fb;

}

.fleet-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

}

.fleet-card{

background:white;

border-radius:15px;

overflow:hidden;

box-shadow:0 12px 30px rgba(0,0,0,.08);

transition:.4s;

}

.fleet-card:hover{

transform:translateY(-10px);

}

.fleet-card img{

height:260px;

object-fit:cover;

}

.fleet-content{

padding:25px;

}

.fleet-content h3{

font-size:26px;

color:var(--secondary);

margin-bottom:10px;

}

.fleet-content p{

color:#666;

margin-bottom:20px;

}

.fleet-content a{

display:inline-block;

background:var(--primary);

padding:12px 24px;

border-radius:8px;

color:white;

font-weight:600;

transition:.3s;

}

.fleet-content a:hover{

background:#d86807;

}
/* ==========================
   DESTINATIONS
========================== */

.destinations{
    padding:100px 0;
    background:#fff;
}

.destination-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.destination-card{
    position:relative;
    overflow:hidden;
    border-radius:15px;
    cursor:pointer;
}

.destination-card img{
    height:320px;
    object-fit:cover;
    transition:.5s;
}

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

.destination-card h3{
    position:absolute;
    left:20px;
    bottom:20px;
    color:#fff;
    font-size:28px;
    font-weight:700;
    text-shadow:0 5px 15px rgba(0,0,0,.5);
}

/* ==========================
   GALLERY
========================== */

.gallery{
    padding:100px 0;
    background:#f8f9fb;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.gallery-grid img{
    height:260px;
    object-fit:cover;
    border-radius:12px;
    transition:.4s;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

/* ==========================
   TESTIMONIALS
========================== */

.testimonials{
    padding:100px 0;
    background:#fff;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.testimonial-card img{
    width:90px;
    height:90px;
    border-radius:50%;
    margin:auto;
    margin-bottom:20px;
    object-fit:cover;
}

.testimonial-card h3{
    color:var(--secondary);
    margin-bottom:5px;
}

.testimonial-card h5{
    color:var(--primary);
    margin-bottom:15px;
}

.testimonial-card p{
    line-height:28px;
    color:#666;
}

/* ==========================
   CONTACT
========================== */

.contact{
    padding:100px 0;
    background:#f8f9fb;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.contact-info h2{
    font-size:42px;
    color:var(--secondary);
    margin-bottom:20px;
}

.contact-info p{
    color:#666;
    line-height:30px;
    margin-bottom:15px;
}

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:8px;
    outline:none;
    font-size:16px;
}

.contact-form textarea{
    height:160px;
    resize:none;
}

.contact-form button{
    width:100%;
    background:var(--primary);
    color:#fff;
    border:none;
    padding:16px;
    border-radius:8px;
    cursor:pointer;
    font-size:18px;
}

/* ==========================
   FOOTER
========================== */

footer{
    background:#0d2340;
    color:#fff;
    padding:80px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
}

.footer-grid h2,
.footer-grid h3{
    margin-bottom:20px;
}

.footer-grid p,
.footer-grid li{
    color:#d7d7d7;
    line-height:30px;
}

.footer-grid ul{
    padding:0;
}

.footer-grid li{
    list-style:none;
    margin-bottom:10px;
}

.footer-grid a{
    color:#d7d7d7;
}

.footer-grid a:hover{
    color:var(--primary);
}

footer hr{
    margin:40px 0 20px;
    border:none;
    border-top:1px solid rgba(255,255,255,.15);
}

.copyright{
    text-align:center;
    color:#bbb;
}

/* ==========================
   FLOATING BUTTONS
========================== */

.whatsapp,
.call{
    position:fixed;
    right:25px;
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:26px;
    z-index:999;
}

.whatsapp{
    bottom:170px;
    background:#25D366;
}
.pay{
    position:fixed;
    right:25px;
    bottom:100px;
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:26px;
    background:#007bff;
    z-index:999;
    text-decoration:none;
}

.call{
    bottom:30px;
    background:#f58220;
}

/* ==========================
   SCROLL TO TOP
========================== */

#topBtn{
    position:fixed;
    left:25px;
    bottom:30px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:var(--secondary);
    color:#fff;
    font-size:20px;
    cursor:pointer;
}
/* =========================================
   RESPONSIVE DESIGN
========================================= */

/* Laptop */
@media (max-width:1200px){

.container{
    width:95%;
}

.hero-left h1{
    font-size:60px;
    line-height:70px;
}

nav ul{
    gap:20px;
}

}


/* Tablet */

@media (max-width:992px){

.top-bar .container{
    flex-direction:column;
    gap:10px;
    text-align:center;
}

nav{
    flex-direction:column;
    height:auto;
    padding:20px 0;
}

nav ul{
    flex-wrap:wrap;
    justify-content:center;
    margin:20px 0;
}

.hero{
    height:80vh;
}

.hero-left{
    width:100%;
    text-align:center;
}

.hero-left h1{
    font-size:50px;
    line-height:60px;
}

.hero-left p{
    width:100%;
}

.hero-buttons{
    justify-content:center;
}

.booking form{
    grid-template-columns:repeat(2,1fr);
}

.why-grid,
.fleet-grid,
.destination-grid,
.gallery-grid,
.testimonial-grid{
    grid-template-columns:repeat(2,1fr);
}

.contact-wrapper{
    grid-template-columns:1fr;
}

.footer-grid{
    grid-template-columns:repeat(2,1fr);
}

}


/* Mobile */

@media (max-width:768px){

.hero{
    height:70vh;
}

.hero-left h4{
    font-size:14px;
}

.hero-left h1{
    font-size:38px;
    line-height:48px;
}

.hero-left p{
    font-size:16px;
    line-height:28px;
}

.hero-buttons{
    flex-direction:column;
}

.btn-orange,
.btn-dark{
    text-align:center;
}

.booking-box{
    padding:25px;
}

.booking form{
    grid-template-columns:1fr;
}

.section-title h2{
    font-size:32px;
}

.why-grid,
.fleet-grid,
.destination-grid,
.gallery-grid,
.testimonial-grid,
.footer-grid{
    grid-template-columns:1fr;
}

.destination-card img,
.gallery-grid img,
.fleet-card img{
    height:220px;
}

.contact-form{
    padding:25px;
}

.whatsapp,
.call{
    width:55px;
    height:55px;
    font-size:22px;
}
/* Founder Section */

.founder-box{
    flex-direction:column;
    text-align:center;
}

.founder-image img{
    width:250px;
    height:250px;
}
.founder-content{
    min-width:100%;
}

.founder-content h3{
    font-size:38px;
}

.founder-content h3::after{
    margin:18px auto 0;
}

.founder-features{
    grid-template-columns:1fr;
}

.feature-item{
    text-align:left;
}
}


/* Small Mobile */

@media (max-width:480px){

.logo h1{
    font-size:28px;
}

.logo p{
    font-size:11px;
}

.hero-left h1{
    font-size:30px;
    line-height:40px;
}

.hero-left p{
    font-size:15px;
}

.section-title h2{
    font-size:28px;
}

.booking-title h2{
    font-size:28px;
}

.contact-info h2{
    font-size:30px;
}

.book-btn{
    padding:12px 20px;
}
.founder{
    padding:70px 0;
}

.founder-box{
    padding:25px 20px;
}

.founder-image img{
    width:200px;
    height:200px;
}

.founder-content h2{
    font-size:16px;
}

.founder-content h3{
    font-size:30px;
}

.founder-content p{
    font-size:15px;
    line-height:1.7;
}

.feature-item{
    padding:15px;
}

.feature-item i{
    width:50px;
    height:50px;
    font-size:20px;
}

.feature-item h4{
    font-size:16px;
}

.feature-item span{
    font-size:13px;
}

}


/* =========================================
   SMOOTH ANIMATIONS
========================================= */

.fleet-card,
.why-card,
.destination-card,
.gallery-grid img,
.testimonial-card,
.contact-form{

transition:0.4s ease;

}

.fleet-card:hover,
.why-card:hover,
.destination-card:hover,
.gallery-grid img:hover,
.testimonial-card:hover,
.contact-form:hover{

transform:translateY(-8px);

box-shadow:0 20px 40px rgba(0,0,0,.15);

}


/* =========================================
   CUSTOM SCROLLBAR
========================================= */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#eee;

}

::-webkit-scrollbar-thumb{

background:#f58220;

border-radius:10px;

}

::-webkit-scrollbar-thumb:hover{

background:#d86a08;

}


/* =========================================
   SELECTION COLOR
========================================= */

::selection{

background:#f58220;

color:white;

}


/* =========================================
   IMAGE ZOOM
========================================= */

img{

transition:.4s;

}

img:hover{

transform:scale(1.02);

}


/* =========================================
   END OF STYLE.CSS
========================================= */

header.sticky{
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    transition:.4s;
}

#topBtn{
    display:none;
}
/* ================= PAYMENT PAGE ================= */

body{
    background:#f4f7fb;
    font-family:Arial, Helvetica, sans-serif;
}

.payment-box{
    width:420px;
    max-width:95%;
    margin:50px auto;
    background:#fff;
    padding:30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.payment-box h2{
    color:#0d2b52;
    margin-bottom:20px;
}

.qr-code{
    width:220px;
    display:block;
    margin:20px auto;
    border-radius:15px;
}

.upi-id{
    font-size:20px;
    font-weight:bold;
    color:#0d2b52;
    margin:15px 0;
}

.pay-btn,
.whatsapp-btn{
    width:100%;
    padding:15px;
    border:none;
    border-radius:10px;
    color:#fff;
    font-size:18px;
    cursor:pointer;
    margin-top:15px;
}

.pay-btn{
    background:#0d2b52;
}

.whatsapp-btn{
    background:#25D366;
}

.note{
    margin-top:20px;
    color:#666;
}
.modal{
    display:none;
    position:fixed;
    z-index:9999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.6);
}

.modal-content{
    background:#fff;
    width:90%;
    max-width:700px;
    margin:60px auto;
    padding:30px;
    border-radius:15px;
    position:relative;
}

.close{
    position:absolute;
    right:20px;
    top:15px;
    font-size:32px;
    cursor:pointer;
}

.modal ul{
    line-height:2;
}
/* ==========================
   Founder Section
========================== */

.founder{
    padding:120px 0;
    background:linear-gradient(135deg,#fdf8f3 0%,#eef5ff 45%,#ffffff 100%);
    position:relative;
    overflow:hidden;
}

.founder::before{
    content:"";
    position:absolute;
    width:550px;
    height:550px;
    background:rgba(245,130,32,.10);
    border-radius:50%;
    top:-260px;
    left:-220px;
    filter:blur(60px);
}

.founder::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(13,43,82,.08);
    border-radius:50%;
    bottom:-240px;
    right:-220px;
    filter:blur(60px);
}
/* =============================
   Travel Background
============================= */

.founder-bg{

position:absolute;
inset:0;
pointer-events:none;
z-index:1;

}

/* Left Road */

.founder-bg .road-left{

position:absolute;

left:-170px;
top:-120px;

width:430px;
height:900px;

border:14px solid rgba(13,43,82,.08);

border-radius:250px;

transform:rotate(-18deg);

}

/* Right Road */

.founder-bg .road-right{

position:absolute;

right:-170px;
top:-40px;

width:430px;
height:900px;

border:14px solid rgba(13,43,82,.08);

border-radius:250px;

transform:rotate(18deg);

}

/* White Divider */

.road-left::after,
.road-right::after{

content:"";

position:absolute;

left:50%;

top:0;

width:6px;

height:100%;

transform:translateX(-50%);

background:
repeating-linear-gradient(

to bottom,

rgba(255,255,255,.9) 0 22px,

transparent 22px 45px

);

}

/* Location Pins */

.pin{

position:absolute;

width:26px;
height:26px;

background:#ff7a00;

border-radius:50%;

box-shadow:0 0 25px rgba(255,122,0,.35);

}

.pin::after{

content:"";

position:absolute;

left:50%;

bottom:-8px;

width:10px;
height:10px;

background:#ff7a00;

transform:translateX(-50%) rotate(45deg);

}

.pin1{

top:180px;
left:100px;

}

.pin2{

bottom:180px;
left:260px;

}

.pin3{

top:170px;
right:220px;

}

.pin4{

bottom:130px;
right:100px;

}

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

.founder-box{
    max-width:1180px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
    flex-wrap:wrap;

    background:rgba(255,255,255,.78);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    padding:60px;
    border-radius:32px;

    border:1px solid rgba(255,255,255,.6);

    box-shadow:
        0 20px 60px rgba(13,43,82,.08),
        0 8px 25px rgba(0,0,0,.05);
}

.founder-image{
    flex:1;
    min-width:300px;
    text-align:center;
}

.founder-image img{
    width:360px;
    height:360px;
    max-width:100%;
    border-radius:50%;
    object-fit:cover;

    border:10px solid #fff;

    box-shadow:
        0 25px 60px rgba(0,0,0,.18);

    transition:.4s ease;
}

.founder-image img:hover{
    transform:scale(1.03);
}

.founder-content{
    flex:1.4;
    min-width:320px;
}

.founder-content h2{
    color:#ff7a00;
    font-size:20px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.founder-content h3{
    font-size:54px;
    color:#0d2b52;
    line-height:1.2;
    margin-bottom:18px;
    position:relative;
}

.founder-content h3::after{
    content:"";
    display:block;
    width:90px;
    height:4px;
    background:#ff7a00;
    border-radius:50px;
    margin-top:18px;
}

.founder-content p{
    font-size:19px;
    line-height:1.9;
    color:#555;
    margin-bottom:18px;
}
/* ==========================
   Founder Features
========================== */

.founder-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:35px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:15px;
    background:#fff;
    padding:18px 20px;
    border-radius:18px;
    border:1px solid rgba(0,0,0,.05);
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:.35s ease;
}

.feature-item:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.feature-item i{
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:linear-gradient(135deg,#ff7a00,#ffb347);
    color:#fff;
    font-size:24px;
    flex-shrink:0;
}

.feature-item h4{
    margin:0;
    color:#0d2b52;
    font-size:18px;
    font-weight:700;
}

.feature-item span{
    color:#777;
    font-size:15px;
}
/* ==========================================
   Founder Responsive
========================================== */

@media (max-width:768px){

    .founder{
        padding:60px 15px;
    }

    .founder-box{
        flex-direction:column;
        padding:30px 20px;
        gap:30px;
        border-radius:20px;
    }

    .founder-image{
        min-width:100%;
    }

    .founder-image img{
        width:220px;
        height:220px;
        border-width:6px;
    }

    .founder-content{
        min-width:100%;
        text-align:center;
    }

    .founder-content h2{
        font-size:18px;
    }

    .founder-content h3{
        font-size:36px;
    }

    .founder-content h3::after{
        margin:15px auto 0;
    }

    .founder-content p{
        font-size:16px;
        line-height:1.7;
    }

    .founder-features{
        grid-template-columns:1fr;
    }

    .feature-item{
        padding:15px;
    }

    .back-home-btn{
    position:absolute;
    top:40px;
    left:50px;
    z-index:999;

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:14px 28px;

    background:#ff7a00;
    color:white;

    border-radius:8px;

    font-size:16px;
    font-weight:600;

    text-decoration:none;

    box-shadow:0 8px 20px rgba(0,0,0,.15);

    transition:.3s;
}

.back-home-btn:hover{
    transform:translateY(-3px);
    background:#e66f00;
}


@media(max-width:600px){

.back-home-btn{
    top:20px;
    left:20px;

    padding:12px 20px;
    font-size:14px;
}

}

}