/*=====================================
Google Fonts
======================================*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*=====================================
Variables
======================================*/
:root{
    --primary:#1F103D;
    --secondary:#EB9819;
    --white:#ffffff;
    --text:#d9d9d9;
    --transition:.4s ease;
}

/*=====================================
Reset
======================================*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:var(--primary);
    color:var(--white);
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
    margin:0;
    padding:0;
}

img{
    max-width:100%;
    display:block;
}

/*=====================================
Loader
======================================*/

.loader{
    position:fixed;
    inset:0;
    background:#1F103D;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:999999;
}

.loader-circle{
    width:70px;
    height:70px;
    border-radius:50%;
    border:6px solid rgba(255,255,255,.2);
    border-top-color:var(--secondary);
    animation:spin 1s linear infinite;
}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}

/*=====================================
Navbar
======================================*/
.navbar {
    padding: 22px 0;
    transition: .4s;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(31, 16, 61, .88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .25);
    padding: 5px 0;
}

.navbar-brand img {
    height: 100px;
    transition: .3s;
}

.navbar.scrolled .navbar-brand img {
    height: 95px;
}

.navbar-toggler {
    border: 0;
    box-shadow: none !important;
}

.navbar-toggler i {
    color: #fff;
    font-size: 28px;
}

.navbar .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin-left: 18px;
    position: relative;
    transition: .3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #EB9819 !important;
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #EB9819;
    transition: .3s;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 100%;
}

/* Hide Bootstrap Default Dropdown Caret Arrow */
.navbar .dropdown-toggle::after {
    display: none !important;
}

.dropdown-arrow-icon {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.navbar .dropdown:hover .dropdown-arrow-icon,
.navbar .dropdown.show .dropdown-arrow-icon {
    transform: rotate(180deg);
    color: #EB9819;
}

/*=====================================
Dropdown Menu Styling
======================================*/
.navbar .dropdown-menu {
    background: rgba(31, 16, 61, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(235, 152, 25, 0.2);
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    min-width: 180px;
}

.navbar .dropdown-item {
    color: #ffffff;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background-color: #EB9819;
    color: #ffffff;
    transform: translateX(4px);
}

/* Desktop Hover Trigger & Smooth Animation */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 10px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: all 0.3s ease-in-out;
    }
}

/* Mobile Dropdown Styling */
@media (max-width: 991.98px) {
    .navbar .dropdown-menu {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 8px;
        margin-left: 0;
        box-shadow: none;
    }

    .navbar .dropdown-item {
        padding: 8px 14px;
    }

    .navbar .dropdown-item:hover {
        transform: none;
    }
}

/*=====================================
Buttons Styling
======================================*/
.theme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    background: #EB9819;
    border-radius: 60px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: .35s;
    /* margin-top: 50px !important; */
    margin-left: 10px;
}

.theme-btn-2 {
    margin-top: 50px !important;
}


.theme-btn:hover {
    background: #fff;
    color: #1f103d;
    transform: translateY(-4px);
}

.border-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    border: 2px solid #EB9819;
    border-radius: 60px;
    margin-left: 15px;
    color: #fff;
    text-decoration: none;
    transition: .35s;
}

.border-btn:hover {
    background: #EB9819;
    color: #fff;
    transform: translateY(-4px);
}

/* =====================================
   Hero Section Styling
   ====================================== */
.hero-section {
    min-height: 100vh;
    padding-top: 140px; /* Crucial: Prevents navbar overlap */
    padding-bottom: 80px;
    position: relative;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 16, 61, 0.826) 0%, rgba(15, 8, 30, 0.85) 50%, rgba(31, 16, 61, 0.766) 100%);
    z-index: 1;
}

/* Hero Typography */
.text-accent {
    color: var(--secondary);
}

.theme-badge {
    background-color: var(--secondary);
    color: #ffffff;
}

.text-glow {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.x-small {
    font-size: 0.75rem;
}

.letter-spacing {
    letter-spacing: 1.5px;
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

/* Search Form Styling */
.form-select, .form-control {
    color: #ffffff !important;
}

.option-dark {
    background-color: var(--primary);
    color: #ffffff;
}

.form-control::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

.theme-btn-search {
    background: var(--secondary);
    border: none;
    color: #ffffff;
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.theme-btn-search:hover {
    transform: translateY(-2px);
    background: #d6830f;
    color: #ffffff;
}

/* Right Column Mockup Screen & Floating Elements */
.mockup-frame {
    background-color: rgba(20, 10, 40, 0.8);
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
    transition: transform 0.5s ease;
}

.mockup-frame:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-dot {
    width: 10px;
    height: 10px;
}

.mockup-img {
    height: 380px;
}

.mockup-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(to top, rgba(15, 8, 30, 0.9) 0%, rgba(0,0,0,0.1) 60%);
}

/* Floating Cards Layout */
.floating-card {
    position: absolute;
    width: 160px;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.arch-card {
    top: -30px;
    left: -30px;
    border-top-left-radius: 80px !important;
    border-top-right-radius: 80px !important;
}

.arch-card-right {
    bottom: -20px;
    right: -20px;
    animation-delay: -3s;
    border-top-left-radius: 80px !important;
    border-top-right-radius: 80px !important;
}

.circle-card {
    bottom: 40px;
    left: -40px;
    width: 100px;
    height: 100px;
    border-radius: 50% !important;
    animation-delay: -1.5s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-img {
    height: 110px;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 70px !important;
    border-top-right-radius: 70px !important;
}

.float-img-circle {
    width: 84px;
    height: 84px;
    object-fit: cover;
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* Media Queries */
@media (max-width: 991.98px) {
    .floating-card {
        display: none;
    }

    .mockup-frame {
        transform: none;
        margin-top: 1rem;
    }

    .hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
    }
}

@media (max-width: 575.98px) {
    .display-3 {
        font-size: 2.1rem;
    }

    .glass-card {
        padding: 1.25rem !important;
    }
}





























/*=====================================
Partners
======================================*/

.partners{

padding:110px 0;

background:#fff;

position:relative;

overflow:hidden;

}

.section-title span{

color:#EB9819;

font-weight:600;

text-transform:uppercase;

letter-spacing:2px;

}

.section-title h2{

font-size:46px;

font-family:Poppins,sans-serif;

font-weight:700;

margin-top:15px;

margin-bottom:70px;

color:#1F103D;

}

.logo-slider{

overflow:hidden;

position:relative;

}

.logo-track{

display:flex;

width:max-content;

animation:logos 30s linear infinite;

align-items:center;

}

.logo-track img{

height:60px;

margin:0 55px;

filter:grayscale(100%);

opacity:.7;

transition:.4s;

}

/* .logo-track .travel-img {
    height: 70px;
} */

.logo-track img:hover{

filter:none;

opacity:1;

transform:scale(1.08);

}

@keyframes logos{

0%{

transform:translateX(0);

}

100%{

transform:translateX(-50%);

}

}



/*=====================================
About
======================================*/

.section-space{

padding:120px 0;

}

.about{

background:#f8f8fb;

position:relative;

overflow:hidden;

}

.about-image{

position:relative;

}

.about-image img{

width:100%;

height:650px;

object-fit:cover;

border-radius:35px;

box-shadow:0 30px 60px rgba(0,0,0,.15);

}

.experience-card{

position:absolute;

right:-30px;

bottom:40px;

background:#1F103D;

padding:30px;

border-radius:20px;

text-align:center;

color:#fff;

box-shadow:0 20px 40px rgba(0,0,0,.25);

}

.experience-card h2{

font-size:60px;

font-weight:800;

color:#EB9819;

margin:0;

}

.experience-card span{

font-size:16px;

}

.section-tag{

display:inline-block;

padding:10px 22px;

background:#EB9819;

color:#fff;

border-radius:50px;

font-weight:600;

/* margin-bottom:25px; */

}

.section-heading{

font-size:50px;

font-weight:800;

font-family:Poppins,sans-serif;

color:#1F103D;

line-height:1.2;

margin-bottom:25px;

}

.section-text{

font-size:18px;

line-height:28px;

color:#666;

/* margin-bottom:35px; */

}

.feature-list{

display:grid;

grid-template-columns:1fr 1fr;

gap:18px;
margin-top: -20px;

}

.feature-item{

display:flex;

align-items:center;

gap:15px;

padding:18px;

background:#fff;

border-radius:15px;

transition:.4s;

}

.feature-item:hover{

transform:translateY(-8px);

box-shadow:0 20px 40px rgba(0,0,0,.1);

}

.feature-item i{

font-size:22px;

color:#EB9819;

}

.feature-item span{

font-weight:600;

color:#1F103D;

}


/*=====================================
WHY CHOOSE US
======================================*/

.why-us{

background:#1F103D;

padding:120px 0;

position:relative;

overflow:hidden;

}

.why-us::before{

content:"";

position:absolute;

width:500px;

height:500px;

background:#EB9819;

opacity:.12;

filter:blur(150px);

right:-150px;

top:-150px;

border-radius:50%;

}

.why-image{

position:relative;

}

.why-image img{

width:100%;

height:650px;

object-fit:cover;

border-radius:30px;

box-shadow:0 30px 70px rgba(0,0,0,.35);

}

.floating-box{

position:absolute;

bottom:30px;

left:30px;

background:#fff;

padding:25px;

border-radius:20px;

text-align:center;

box-shadow:0 20px 50px rgba(0,0,0,.2);

}

.floating-box i{

font-size:40px;

color:#EB9819;

margin-bottom:10px;

}

.floating-box h4{

font-size:34px;

font-weight:700;

margin-bottom:5px;

color:#1F103D;

}

.floating-box span{

color:#666;

font-size:15px;

}

.why-list{

/* margin-top:40px; */

display:flex;

flex-direction:column;

gap:20px;

/* margin-left: -80px; */

}

.why-item{
opacity: 1 !important;
display:flex;

/* align-items:flex-start; */

gap:20px;

padding:15px;

background:rgba(255,255,255,.08);

border-radius:18px;

backdrop-filter:blur(12px);

transition:.4s;

}

.why-item:hover{

/* transform:translateX(12px); */

background:#EB9819;

}

.why-item:hover i,

.why-item:hover h5,

.why-item:hover p{

color:#fff;

}

.why-icon{

width:65px;

height:65px;

background:#fff;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

flex-shrink:0;

}

.why-icon i{

font-size:24px;

color:#EB9819;

transition:.4s;

}

.why-list .why-item:hover  .why-icon i{
    color: black !important;
}

.why-item h5{

color:#fff;

font-weight:700;

margin-bottom:8px;

}

.why-item p{

color:#d8d8d8;

margin:0;

line-height:28px;

}





/*=================================================
CINEMATIC DESTINATION
=================================================*/

.cinematic-destination{

    position:relative;
    height:220vh;
    background:#ffffff;
    overflow:hidden;

}

.pin-wrapper{

    position:sticky;
    top:0;

    width:100%;
    height:110vh;

    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;

    overflow:visible;

}

/*=========================
Heading
=========================*/

.destination-heading{

    position:absolute;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    text-align:center;

    width:min(900px,90%);

    z-index:20;

}

.heading-tag{

    display:inline-block;

    padding:12px 28px;

    border-radius:50px;

    background:#EB9819;

    color:#fff;

    font-weight:600;

    letter-spacing:2px;

    margin-bottom:25px;

}

.heading-title{

    font-size:clamp(60px,6vw,130px);

    line-height:.95;

    color:#1F103D;

    font-weight:800;

    margin-bottom:25px;

    font-family:Poppins,sans-serif;

    transform-origin:center center;

    will-change:transform;

}

.heading-title span{

    display:block;

    color:#EB9819;

}

.destination-heading p{

    max-width:650px;

    margin:auto;

    color:#666;

    font-size:20px;

    line-height:34px;

}

/*=========================
Cards
=========================*/

.destination-cards{

    position:absolute;

    inset:0;

    display:grid;

    grid-template-columns:repeat(12,1fr);

    grid-template-rows:repeat(12,1fr);

    gap:22px;

    width:min(1400px,92%);

    height:100%;

    margin:auto;

    opacity:0;

    pointer-events:none;

    padding:40px 0;

    border: 2px solid ;
    margin-top: 150px;

}

.destination-card{

    position:relative;

    overflow:hidden;

    border-radius:28px;

    transition:.5s;

    box-shadow:0 30px 70px rgba(0,0,0,.18);

    transform:translateY(120px);

    opacity:0;

}

.destination-card img{

    width:100%;
    height:100%;
    object-fit:cover;

    transition:1s;

}

.destination-card:hover img{

    transform:scale(1.12);

}

.card-content{

    position:absolute;

    inset:0;

    display:flex;

    justify-content:flex-end;

    flex-direction:column;

    padding:35px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.20),
        transparent
    );

}

.card-content span{

    color:#EB9819;

    font-weight:600;

    letter-spacing:1px;

}

.card-content h3{

    color:#fff;

    font-size:34px;

    margin:12px 0;

    font-family:Poppins;

}

.card-content a{

    color:#fff;

    font-weight:600;

}

.card-content a:hover{

    color:#EB9819;

}

/*=========================
Grid
=========================*/

.card-1{

    grid-column:1/6;
    grid-row:2/12;

}

.card-2{

    grid-column:6/9;
    grid-row:1/6;

}

.card-3{

    grid-column:9/13;
    grid-row:1/6;

}

.card-4{

    grid-column:6/13;
    grid-row:6/12;

}

/*=========================
Hover
=========================*/

.destination-card:hover{

    transform:translateY(-10px);

    box-shadow:0 40px 80px rgba(0,0,0,.22);

}

/*=========================
Glow
=========================*/

.cinematic-destination::before{

content:"";

position:absolute;

width:550px;

height:550px;

background:#EB9819;

filter:blur(180px);

opacity:.10;

top:-220px;

right:-200px;

border-radius:50%;

}

.cinematic-destination::after{

content:"";

position:absolute;

width:450px;

height:450px;

background:#1F103D;

filter:blur(200px);

opacity:.05;

bottom:-220px;

left:-180px;

border-radius:50%;

}





/*=========================================
PREMIUM TOUR PACKAGES
==========================================*/
.premium-packages {
    padding: 120px 0;
    background: #f7f8fc;
    position: relative;
    overflow: visible;
    margin-top: -600px;
}

.premium-packages .section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 70px;
}

.premium-packages .section-title {
    font-size: 58px;
    color: #1F103D;
    margin: 20px 0;
    line-height: 1.2;
    font-weight: 700;
}

.premium-packages .section-description {
    color: #666;
    line-height: 30px;
    font-size: 18px;
}

/*=========================
GRID
=========================*/
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    height: auto;
    overflow: visible;
}

/*=========================
CARD
=========================*/
.tour-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    transition: .45s;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 720px;
}

.tour-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,.18);
}

/*=========================
IMAGE (FIXED FOR 100% VISIBILITY)
=========================*/
.tour-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; 
    height: auto; 
    overflow: hidden;
    background: #fff; 
}

.tour-image img {
    width: 100%;
    height: 100%;
    /* FIX: Prevents flyer details, phone numbers, and text from being cropped out */
    object-fit: contain; 
    transition: 1s;
}

.tour-card:hover img {
    transform: scale(1.05); 
}

/*=========================
BADGE
=========================*/
.tour-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #EB9819;
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
}

.orange {
    background: #ff7a00;
}

.blue {
    background: #1F103D;
}

/*=========================
CONTENT
=========================*/
.tour-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tour-rating {
    color: #f6b300;
    font-size: 15px;
    margin-bottom: 15px;
}

.tour-rating span {
    color: #777;
    margin-left: 6px;
}

.tour-content h3 {
    color: #1F103D;
    font-size: 28px;
    margin-bottom: 15px;
}

.tour-content p {
    color: #666;
    line-height: 28px;
    margin-bottom: 25px;
}

/*=========================
INFO
=========================*/
.tour-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.tour-info li {
    color: #555;
    font-size: 15px;
}

.tour-info i {
    color: #EB9819;
    margin-right: 8px;
}

/*=========================
FOOTER/BUTTON AREA
=========================*/
.tour-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.tour-footer span {
    font-size: 13px;
    color: #888;
    display: block;
}

.tour-footer h4 {
    color: #ff7a00;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.tour-btn {
    background: #1F103D;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.tour-btn:hover {
    background: #ff7a00;
    color: #fff;
}

/*==========================================================================
  RESPONSIVE BREAKPOINTS (FIXING IMAGE CROPPING & OVERLAP BETWEEN 1200px - 1024px)
========================================================================== */
@media (max-width: 1200px) {
    .premium-packages {
        /* Prevents the section from pushing up too far and clipping the tops of cards under the header */
        margin-top: -380px; 
    }
}

@media (max-width: 1199px) {
    .premium-packages .section-title {
        font-size: 46px;
    }
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .premium-packages {
        margin-top: -280px;
    }
    .tour-image img {
        object-fit: contain; /* Double-ensures 100% full flyer visibility at exact 1024px width */
    }
}

@media (max-width: 768px) {
    .premium-packages {
        padding: 80px 0;
        margin-top: 0; /* Resets negative margin entirely for clean mobile stack flow */
    }
    .premium-packages .section-title {
        font-size: 36px;
    }
    .package-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .tour-card {
        min-height: auto;
    }
}

@media (max-width: 425px) {
    .premium-packages .section-title {
        font-size: 28px;
    }
    .tour-content {
        padding: 20px;
    }
    .tour-info {
        grid-template-columns: 1fr;
    }
}

/*=========================
FOOTER
=========================*/

.tour-footer{

    margin-top:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    border-top:1px solid #eee;

    padding-top:25px;

}

.tour-footer span{

    color:#888;

    font-size:14px;

}

.tour-footer h4{

    color:#1F103D;

    font-size:22px;

    margin-top:6px;

}

.tour-btn{

    background:#EB9819;

    color:#fff;

    text-decoration:none;

    padding:14px 28px;

    border-radius:50px;

    transition:.4s;

    font-weight:600;

}

.tour-btn:hover{

    background:#1F103D;

    color:#fff;

}

/*==========================
SMOOTH CARD EFFECT
==========================*/

.tour-card{

transform-style:preserve-3d;

will-change:transform;

}

/*==========================
IMAGE
==========================*/

.tour-image img{

transition:1s cubic-bezier(.2,.6,.2,1);

}

/*==========================
BUTTON
==========================*/

.tour-btn{

display:inline-flex;

align-items:center;

justify-content:center;

gap:10px;

}

.tour-btn::after{

content:"→";

transition:.3s;

}

.tour-btn:hover::after{

transform:translateX(6px);

}

/*==========================
BADGE
==========================*/

.tour-badge{

box-shadow:0 10px 25px rgba(235,152,25,.35);

}





/*=========================================
BOOKING PROCESS
==========================================*/

.booking-process{

    padding:120px 0;
    background:linear-gradient(180deg,#ffffff,#f8f9fc);
    position:relative;
    overflow:hidden;

}

/*=========================
TIMELINE
=========================*/

.booking-timeline{

    position:relative;
    margin-top:80px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.booking-process .section-title{
    color:#1F103D;
}

.booking-process .section-description{

    color:#666;

}

.booking-process .section-tag{

    background:#EB9819;

    color:#fff;

}

.timeline-line{

    position:absolute;
    top:60px;
    left:8%;
    width:84%;
    height:4px;
    background:#ddd;
    border-radius:20px;
    z-index:1;
}

.timeline-progress{

    width:0%;
    height:100%;
    background:#EB9819;
    border-radius:20px;

}

.timeline-line::after{

    content:"";
    position:absolute;
    left:0;
    top:0;
    width:0%;
    height:100%;
    background:#EB9819;
    border-radius:20px;

}

/*=========================
PLANE
=========================*/

.timeline-plane{

    position:absolute;
    top:38px;
    left:0;
    width:48px;
    height:48px;

    background:#EB9819;
    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:10;

    box-shadow:0 10px 25px rgba(235,152,25,.35);

}

/*=========================
STEP CARD
=========================*/

.booking-step{

    position:relative;
    z-index:2;

    background:#fff;

    padding:35px 28px;

    border-radius:25px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.45s;

}

.booking-step:hover{

    transform:translateY(-15px);

    box-shadow:0 30px 60px rgba(0,0,0,.18);

}

/*=========================
ICON
=========================*/

.step-icon{

    width:90px;
    height:90px;

    margin:auto;

    background:#1F103D;

    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:34px;

    margin-bottom:25px;

    transition:.4s;

}

.booking-step:hover .step-icon{

    background:#EB9819;

    transform:rotate(12deg) scale(1.08);

}

/*=========================
TEXT
=========================*/

.booking-step h3{

    color:#1F103D;
    font-size:26px;
    margin-bottom:18px;

}

.booking-step p{

    color:#666;
    line-height:28px;
    font-size:16px;

}

/*=========================
STEP NUMBER
=========================*/

.booking-step::before{

    content:attr(data-step);

    position:absolute;

    top:-18px;
    right:-18px;

    width:45px;
    height:45px;

    background:#EB9819;
    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:bold;

    box-shadow:0 8px 20px rgba(235,152,25,.3);

}

.step-icon{

    width:90px;
    height:90px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#1F103D;
    color:#fff;

    border-radius:50%;

    font-size:34px;

    margin:0 auto 25px;

}

.step-icon i{

    display:block;

    color:#fff;

    font-size:34px;

}















/*=========================================
TESTIMONIALS
=========================================*/

.testimonials{

    padding:120px 0;

    background:#F7F8FC;

    position:relative;

    overflow:hidden;

}

.testimonials .container{

    max-width:1400px;

    margin:auto;

}

.testimonials .section-header{

    text-align:center;

    margin-bottom:70px;

}

.testimonials .section-title{

    color:#1F103D;

}

.testimonials .section-description{

    color:#666;

    max-width:700px;

    margin:20px auto 0;

}

/*=========================================
SLIDER
=========================================*/

.testimonial-slider{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

}

.testimonial-wrapper{

    width:100%;

    overflow:hidden;

    position:relative;

}

.testimonial-track{

    display:flex;

    align-items:stretch;

    gap:25px;

    /* will-change:transform; */
    width:max-content;

}

/*=========================================
CARD
=========================================*/

.testimonial-card{

    /* flex:0 0 calc(33.333% - 17px); */
    flex:0 0 420px;

    transition:.55s;

    transform:scale(.88);

    opacity:.45;

}

.testimonial-card.active{

    transform:scale(1);

    opacity:1;

}

/*=========================================
CARD INNER
=========================================*/

.testimonial-inner{

    background:#fff;

    border-radius:28px;

    padding:40px;

    height:100%;

    min-height:420px;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

    position:relative;

    box-shadow:0 20px 55px rgba(0,0,0,.08);

    transition:.45s;

}

.testimonial-card.active .testimonial-inner{

    border:2px solid #EB9819;

    box-shadow:0 35px 80px rgba(0,0,0,.16);

}

/*=========================================
QUOTE ICON
=========================================*/

.quote-icon{

    width:65px;
    height:65px;

    border-radius:50%;

    background:#EB9819;

    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:24px;

    margin-bottom:25px;

    box-shadow:0 15px 35px rgba(235,152,25,.35);

    transition:.45s;

}

.testimonial-card.active .quote-icon{

    transform:rotate(-10deg) scale(1.1);

}

/*=========================================
STARS
=========================================*/

.stars{

    display:flex;

    gap:6px;

    margin-bottom:22px;

}

.stars i{

    color:#FFC107;

    font-size:18px;

}

/*=========================================
REVIEW
=========================================*/

.review{

    color:#666;

    font-size:16px;

    line-height:31px;

    margin-bottom:35px;

    flex:1;

}

/*=========================================
CLIENT
=========================================*/

.client{

    display:flex;

    align-items:center;

    gap:18px;

    padding-top:20px;

    border-top:1px solid rgba(0,0,0,.08);

}

.client img{

    width:72px;

    height:72px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid #EB9819;

    flex-shrink:0;

}

.client-info{

    flex:1;

}

.client-info h4{

    color:#1F103D;

    font-size:20px;

    margin-bottom:6px;

}

.client-info span{

    color:#777;

    font-size:15px;

}

/*=========================================
ARROWS
=========================================*/

.slider-btn{

    width:60px;

    height:60px;

    border:none;

    border-radius:50%;

    background:#1F103D;

    color:#fff;

    cursor:pointer;

    font-size:18px;

    transition:.35s;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

}

.slider-btn:hover{

    background:#EB9819;

    transform:scale(1.08);

}

.prev{

    margin-right:25px;

}

.next{

    margin-left:25px;

}

/*=========================================
DOTS
=========================================*/

.slider-dots{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    margin-top:50px;

}

.slider-dots span{

    width:12px;

    height:12px;

    border-radius:50%;

    background:#d2d2d2;

    cursor:pointer;

    transition:.35s;

}

.slider-dots span.active{

    width:38px;

    border-radius:30px;

    background:#EB9819;

}

/*=========================================
HOVER EFFECT
=========================================*/

.testimonial-inner:hover{

    transform:translateY(-12px);

    box-shadow:0 35px 70px rgba(0,0,0,.16);

}

.testimonial-card.active .testimonial-inner:hover{

    transform:translateY(-12px) scale(1.02);

}





/* NEW */
.slider-section{
    padding:80px 30px;  
    position: relative;
    overflow: hidden; 
}

.slider{
    position:relative;
    width:100%;
    max-width:1400px;
    margin:auto;
    overflow:hidden;
}

.slider-track{
    position:relative;
    height:650px;
}

.slide{
    position:absolute;
    top:0;
    width:32%;
    transition:all .6s ease;
    opacity:.6;
}

.slide.left{
    left:0;
    transform:scale(.85);
    z-index:1;
}

.slide.center{
    left:34%;
    transform:scale(1);
    opacity:1;
    z-index:3;
}

.slide.right{
    right:0;
    transform:scale(.85);
    z-index:1;
}

.slide.hidden{
    opacity:0;
    pointer-events:none;
    z-index:0;
}

.slider{
    touch-action: pan-y;
    user-select: none;
}

.slide img{
    pointer-events: none;
}

@media only screen and (max-width: 1200px){
    .slider-section{
        margin-top: 0px;
    }
}
@media only screen and (max-width: 767px){
    .slider-section .heading h1{
        font-size: 42px;
    }
}
@media(max-width:991px){
    .slider-track{
        height:450px;
    }
    .slide{
        width:42%;
    }
    .slide.center{
        left:29%;
    }
}
@media(max-width:768px){
    .slider-track{
        height:420px;
    }
    .slide{
        width:80%;
    }
    .slide.left{
        left:-55%;
    }
    .slide.center{
        left:10%;
        transform:scale(1);
    }
    .slide.right{
        right:-55%;
    }
}
@media only screen and (max-width: 376px){
    
    .slide.right, .slide.left, .slide.center {
        width: 90%;
        margin-left: -12px;
    }
}

/* <!-- SLIDER-1-----------------ENDS---------------HERE --> */






/*=========================================
FOOTER
=========================================*/

.footer{

    position:relative;
    background:linear-gradient(135deg,#1F103D 0%,#2b1856 100%);
    padding:100px 0 30px;
    color:#fff;
    overflow:hidden;

}

/*=========================
TOP SHAPE
=========================*/

.footer::before{

    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#EB9819,#FFD56A,#EB9819);

}

.footer-shape{

    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(235,152,25,.08);

    top:-220px;
    right:-150px;

    filter:blur(30px);

}

/*=========================
GRID
=========================*/

.footer-grid{

    display:grid;
    grid-template-columns:1.3fr 1fr 1fr 1.3fr;
    gap:50px;
    margin-bottom:60px;

}

/*=========================
LOGO
=========================*/

.footer-logo img{

    width:180px;
    margin-bottom:25px;
    transition:.4s;

}

.footer-logo img:hover{

    transform:scale(1.06);

}

.footer-text{

    color:#ddd;
    line-height:32px;
    font-size:16px;
    margin-bottom:30px;

}

/*=========================
HEADING
=========================*/

.footer-col h3{

    color:#EB9819;
    font-size:30px;
    margin-bottom:25px;

}

/*=========================
LINKS
=========================*/

.footer-col ul{

    list-style:none;
    padding:0;

}

.footer-col ul li{

    margin-bottom:16px;

}

.footer-col ul li a{

    color:#fff;
    text-decoration:none;
    transition:.35s;
    position:relative;

}

.footer-col ul li a:hover{

    color:#EB9819;
    padding-left:10px;

}

/*=========================
CONTACT
=========================*/

.footer-contact li{

    display:flex;
    align-items:flex-start;
    gap:15px;

}

.footer-contact i{

    color:#EB9819;
    font-size:20px;
    margin-top:5px;
    min-width:20px;

}

.footer-contact span,
.footer-contact a{

    color:#fff;
    line-height:30px;
    text-decoration:none;

}

/*=========================
SOCIAL
=========================*/

.footer-social{

    display:flex;
    gap:15px;

}

.footer-social a{

    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#fff;

    transition:.35s;

    font-size:18px;

}

.footer-social a:hover{

    background:#EB9819;

    transform:translateY(-8px) rotate(8deg);

}

/*=========================
BOTTOM
=========================*/

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.12);

    padding-top:25px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;

    flex-wrap:wrap;

}

.footer-bottom p{

    margin:0;
    color:#ddd;

}

.footer-bottom a{

    color:#EB9819;
    text-decoration:none;
    font-weight:600;

}

/*=========================
WHATSAPP
=========================*/

.whatsapp-btn{

    position:fixed;

    right:30px;
    bottom:30px;

    width:65px;
    height:65px;

    border-radius:50%;

    background:#25D366;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:32px;

    text-decoration:none;

    box-shadow:0 15px 35px rgba(37,211,102,.35);

    z-index:9999;

    transition:.35s;

    animation:whatsappPulse 2s infinite;

}

.whatsapp-btn:hover{

    transform:scale(1.12);

}

@keyframes whatsappPulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.08);

}

100%{

transform:scale(1);

}

}







