/*==================================================
  Kalapani Holidays
  Premium Travel Website
  Version 1.0
==================================================*/


/*==========================
  Google Font
==========================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*==========================
  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;

    line-height:1.6;

}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

ul{
    list-style:none;
    margin:0;
    padding:0;
}


/*==========================
  Colors
==========================*/

:root{

    --primary:#11B8FF;

    --secondary:#0A6FFF;

    --dark:#06192E;

    --white:#ffffff;

    --text:#3b3b3b;

    --shadow:0 15px 40px rgba(0,0,0,.15);

}


/*==========================
  Navbar
==========================*/

.kh-navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    padding:18px 0;

    transition:.35s ease;

    background:rgba(4,18,36,.18);

    backdrop-filter:blur(12px);

    -webkit-backdrop-filter:blur(12px);

}

.kh-navbar.scrolled{

    background:rgba(5,22,43,.95);

    padding:12px 0;

    box-shadow:0 10px 35px rgba(0,0,0,.18);

}


/*==========================
  Logo
==========================*/

.navbar-brand{

    display:flex;

    align-items:center;

    margin-right:40px;

}

/*==========================
  Logo
==========================*/

.navbar-brand{

    display:flex;

    align-items:center;

    margin-right:20px;

    padding:0;

}

.logo{

    height:75px;

    width:auto;

    max-width:320px;

    object-fit:contain;

    transition:all .3s ease;

}

.kh-navbar.scrolled .logo{

    height:65px;

}

/*==========================
  Navigation
==========================*/

.navbar-nav{

    gap:14px;

}

.nav-link{

    color:#fff !important;

    font-size:15px;

    font-weight:600;

    position:relative;

    transition:.3s;

    padding:12px 6px !important;

}

.nav-link:hover{

    color:var(--primary) !important;

}

.nav-link.active{

    color:var(--primary) !important;

}

.nav-link::after{

    content:"";

    position:absolute;

    bottom:4px;

    left:0;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;

}

.nav-link:hover::after{

    width:100%;

}

.nav-link.active::after{

    width:100%;

}


/*==========================
  Right Buttons
==========================*/

.navbar-buttons{

    display:flex;

    gap:12px;

    align-items:center;

}

.btn-call{

    color:#fff;

    border:2px solid rgba(255,255,255,.7);

    border-radius:50px;

    padding:12px 24px;

    font-weight:600;

    transition:.3s;

}

.btn-call:hover{

    background:#fff;

    color:#000;

}

.btn-whatsapp{

    background:#25D366;

    color:#fff;

    border-radius:50px;

    padding:12px 24px;

    font-weight:600;

    transition:.3s;

}

.btn-whatsapp:hover{

    background:#1fb758;

    color:#fff;

}

.btn-call i,
.btn-whatsapp i{

    margin-right:8px;

}


/*==========================
  Bootstrap Mobile Button
==========================*/

.navbar-toggler{

    border:none;

}

.navbar-toggler:focus{

    box-shadow:none;

}

.navbar-toggler-icon{

    filter:invert(1);

}

/*==================================================
 HERO SECTION
==================================================*/

.hero-section{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:url("../images/hero/hero.jpg") center center/cover no-repeat;

}

.hero-overlay{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:linear-gradient(
        90deg,
        rgba(5,22,43,.78) 0%,
        rgba(5,22,43,.58) 45%,
        rgba(5,22,43,.38) 100%
    );

}

.hero-section .container{

    position:relative;

    z-index:2;

}

.hero-tag{

    display:inline-block;

    padding:12px 24px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    border-radius:50px;

    color:#fff;

    font-size:14px;

    font-weight:600;

    margin-bottom:25px;

}

.hero-title{

    color:#fff;

    font-size:64px;

    font-weight:800;

    line-height:1.1;

    margin-bottom:25px;

}

.hero-title span{

    color:var(--primary);

}

.hero-description{

    color:#fff;

    font-size:20px;

    max-width:650px;

    margin-bottom:40px;

    opacity:.95;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.hero-buttons .btn{

    padding:16px 34px;

    border-radius:50px;

    font-size:17px;

    font-weight:600;

}

.hero-buttons .btn-primary{

    background:linear-gradient(135deg,#16c8ff,#0a6fff);

    border:none;

}

.hero-buttons .btn-outline-light{

    border:2px solid #fff;

}


/*==================================================
 QUICK ENQUIRY FORM
==================================================*/

.hero-form{

    background:#fff;

    border-radius:25px;

    padding:35px;

    box-shadow:0 20px 60px rgba(0,0,0,.20);

}

.hero-form h3{

    font-size:40px;

    font-weight:700;

    margin-bottom:8px;

}

.hero-form p{

    color:#666;

    margin-bottom:25px;

}

.hero-form .form-control,
.hero-form .form-select{

    height:56px;

    border-radius:14px;

    border:1px solid #dfe6ef;

    margin-bottom:18px;

}

.hero-form .btn{

    height:58px;

    border-radius:14px;

    font-size:18px;

    font-weight:700;

    background:linear-gradient(135deg,#16c8ff,#0a6fff);

    border:none;

}

.hero-form .btn:hover{

    transform:translateY(-2px);

}


/*==================================================
 SECTION SPACING
==================================================*/

section{

    padding:100px 0;

}
/* ==============================
   PREMIUM ENQUIRY CARD
============================== */

.enquiry-card{
    border-radius:24px;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(12px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
    transition:.35s ease;
}

.enquiry-card:hover{
    transform:translateY(-6px);
    box-shadow:0 35px 80px rgba(0,0,0,.18);
}

.enquiry-card h3{
    font-weight:700;
    color:#0d6efd;
}

.enquiry-card p{
    font-size:15px;
}

/* Form Labels */

.enquiry-card .form-label{
    font-weight:600;
    color:#333;
    margin-bottom:6px;
}

/* Inputs */

.enquiry-card .form-control,
.enquiry-card .form-select{

    height:52px;
    border-radius:14px;
    border:1px solid #d9d9d9;
    transition:.3s;

}

.enquiry-card textarea{

    border-radius:14px;
    resize:none;

}

.enquiry-card .form-control:focus,
.enquiry-card .form-select:focus{

    border-color:#0d6efd;
    box-shadow:0 0 0 .2rem rgba(13,110,253,.15);

}

/* Button */

.enquiry-card .btn{

    height:56px;
    border-radius:16px;
    font-size:18px;
    font-weight:600;
    transition:.3s;

}

.enquiry-card .btn:hover{

    transform:translateY(-2px);

}

/* Trust Text */

.enquiry-card small{

    font-size:13px;

}

/* Mobile */

@media(max-width:991px){

.enquiry-card{

margin-top:40px;

}

}
/* ===== Hero Layout ===== */

.hero-section{

    min-height:100vh;
    display:flex;
    align-items:center;
    padding:120px 0 80px;

}

.hero-title{

    font-size:68px;
    line-height:1.05;
    font-weight:800;

}

.hero-description{

    max-width:620px;
    font-size:22px;
    line-height:1.7;
    opacity:.95;

}

.hero-buttons{

    margin-top:35px;

}

.hero-buttons .btn{

    height:58px;
    border-radius:50px;
    padding:0 35px;
    font-weight:600;

}