/* ===== GLOBAL PAGE LAYOUT ===== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    width:100%;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}


 /* ==== HEADER START==== */



/* Default (Top pe) */
.plinfo-header-wrapper {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.3s ease;
}

/* Scroll hone ke baad */
.plinfo-header-wrapper.scrolled {
  background: #ffffff;
}

/* Default text*/
.plinfo-nav a {
  color: #000000;
  transition: color 0.3s ease;
}

/* Scroll ke baad text black */
.plinfo-header-wrapper.scrolled .plinfo-nav a {
  color: #000000;
  border-color: #000;
}

/* CTA button bhi adjust */
.plinfo-header-wrapper.scrolled .plinfo-contact-btn {
  color: #000;
  border-color: #000;
}


/* Header inner */
.plinfo-header {
  max-width: 1620px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;
}

.plinfo-left {
  display: flex;
  align-items: center;
  gap: 50px;
}

.plinfo-logo img {
  height: 46px;
}

/* Dono logos same position pe */
.plinfo-logo {
  position: relative;
}

.plinfo-logo img {
  height: 46px;
  transition: opacity 0.3s ease;
}

/* Default: light logo visible */
.logo-dark {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

/* Scroll ke baad swap */
.plinfo-header-wrapper.scrolled .logo-light {
  opacity: 0;
}

.plinfo-header-wrapper.scrolled .logo-dark {
  opacity: 1;
}

/* Desktop Nav */
.plinfo-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.plinfo-nav > div {
  position: relative;
}

.plinfo-nav a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
}

.plinfo-nav a i {
  margin-left: 5px;
}

.plinfo-nav a:hover {
  color: #fd4621;
}

/* Dropdown Menu */
.plinfo-dropdown {
  display: none;
  position: absolute;
  top: 30px;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  min-width: 220px;
  z-index: 999;
}

.plinfo-dropdown::before {
  content: '';
  display: block;
  height: 4px;
  background-color: #ebebeb   ;
  width: 100%;
}

.plinfo-dropdown a {
  display: block;
  padding: 10px 12px;
  color: #333;
  font-size: 14px;
}

.plinfo-dropdown a:hover {
  background-color: #f0f0f0;
}

.plinfo-nav > div:hover .plinfo-dropdown,
.plinfo-nav > div:focus-within .plinfo-dropdown {
  display: block;
}

/* CTA Button */
.plinfo-contact-btn {
  background-color:  #ffffff;
  color: #fd4621;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.5s ease;
}

@media (max-width: 768px){
  .plinfo-contact-btn{
    display: none;
  }
}

.plinfo-contact-btn:hover {
   color: #000000;
   border: 1px solid #000000;
   
}

.plinfo-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #aba7a7;
    margin-right: 10px;
}

.plinfo-menu-toggle i,
.plinfo-close-toggle i {
  transition: transform 0.3s ease, color 0.3s ease;
}

.plinfo-menu-toggle:hover i,
.plinfo-close-toggle:hover i {
  transform: scale(1.1) rotate(5deg);
  color: #ffffff ;
}

/* Mobile Menu */
.plinfo-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 280px;
  background: #f9f9f9;
  color: #1f1f1f;
  box-shadow: -2px 0 15px rgba(0, 0, 0, 0.1);
  padding: 80px 20px 20px;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.plinfo-mobile-menu.active {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: auto;
}

.plinfo-mobile-menu::-webkit-scrollbar {
  width: 6px;
}
.plinfo-mobile-menu::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
}

.plinfo-mobile-menu .plinfo-logo {
  text-align: center;
  margin-bottom: 10px;
}

.plinfo-mobile-menu hr {   
  border: 0.5px solid #bbb;
  margin: 3px 0;
}

.plinfo-mobile-menu a,
.plinfo-mobile-menu button {
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: #131313;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 2px 0;
  transition: color 0.3s ease;
}

.plinfo-mobile-menu a:hover,
.plinfo-mobile-menu button:hover {
  color: #5c5c5c;
}

.plinfo-mobile-menu .mobile-dropdown {
  display: none;
  flex-direction: column;
  font-size: 14px;
  font-weight: 500;
  padding-left: 15px;
  gap: 5px;
  animation: fadeInDown 0.5s ease-in-out;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.plinfo-mobile-menu .plinfo-email {
  font-size: 14px;
  color: #131313;
  display: flex;
  align-items: center;
  gap: 5px;
}

.plinfo-mobile-menu .plinfo-email i {
  color: #5c5c5c;
}

.plinfo-mobile-menu .social-icons {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  margin-top: 10px;
}

.plinfo-mobile-menu .social-icons a {
  color: #141414;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.plinfo-mobile-menu .social-icons a:hover {
  color: #5c5c5c;
}

.plinfo-mobile-menu .plinfo-contact-btn {
  background: transparent;
  border: 1px solid #5c5c5c   ;
  color: #0f0f0f;
  text-align: center;
  padding: 10px 20px;
  border-radius: 5px;
  margin-top: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.plinfo-mobile-menu .plinfo-contact-btn:hover {
  background-color: #5c5c5c   ;
  color: #fff;
}

.plinfo-close-toggle {
  display: block;
  font-size: 20px;
  cursor: pointer;
  color: #fff;
  background-color: #5c5c5c   ;
  border-radius: 5px;
  padding: 4px 8px;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2100;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
}

.plinfo-close-toggle:hover {
  background-color: #fdfdfd;
  color: #5c5c5c   ;
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .plinfo-nav {
    display: none;
  }
  .plinfo-menu-toggle {
    display: block;
  }
  .plinfo-left {
    gap: 15px;
  }
  .plinfo-header {
    justify-content: space-between;
  }
  .plinfo-contact-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
  .plinfo-close-toggle {
    display: block;
  }
}


/* ==== HEADER END ==== */






/* ========= SLIDER SECTION START ========= */

/* SLIDER */
.eventpraction-slider{
    display:flex;
    width:100%;
    animation:eventpractionSlide 18s infinite;
}

/* SLIDE */
.eventpraction-slide{
    min-width:100%;
    height: 780px;
    position:relative;
    display:flex;
    align-items:center;
    padding:60px 8%;
    color:#fff;
    overflow:hidden;
}

/* IMAGE */
.eventpraction-bg{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    top:0;
    left:0;
    z-index:1;
    animation:eventZoom 18s infinite;
}

/* OVERLAY */
.eventpraction-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0.25));
    top:0;
    left:0;
    z-index:2;
}

/* CONTENT */
.eventpraction-content{
    position:relative;
    z-index:3;
    max-width:1200px;
    margin-left: 10px;
    margin-top:  200px;
    animation:eventContent 18s infinite;
}

/* TAG */
.eventpraction-tag{
    color:#f56f54;
    font-weight:600;
    letter-spacing:1px;
    font-size:18px;
}

/* TITLE */
.eventpraction-content h1{
    font-size: 68px;
    line-height:1.2;
    margin:20px 0;
    font-weight:600px;
}

/* TEXT */
.eventpraction-content p{
    margin-bottom:35px;
    opacity:0.9;
    font-size:16px;
    line-height:1.6;
}

/* BUTTON WRAPPER */
.eventpraction-buttons{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

/* BUTTON BASE */
.eventpraction-btn{
    padding:12px 26px;
    text-decoration:none;
    border-radius:40px;
    font-weight:600;
    font-size:14px;
    letter-spacing:0.5px;
    transition:all 0.3s ease;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    white-space:nowrap;
}

/* PRIMARY */
.eventpraction-btn.primary{
    background: #ffff;
    color:#fd4621;
}

/* OUTLINE */
.eventpraction-btn.outline{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(8px);
    border:1px solid rgba(255,255,255,0.3);
    color:#fff;
}

/* HOVER */
.eventpraction-btn.primary:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(253,70,33,0.5);
}

.eventpraction-btn.outline:hover{
    background:#fd4621;
    border-color:#fd4621;
    transform:translateY(-3px);
}

/* SLIDER */
@keyframes eventpractionSlide{
    0%,25%{transform:translateX(0);}
    30%,55%{transform:translateX(-100%);}
    60%,85%{transform:translateX(-200%);}
    100%{transform:translateX(0);}
}

/* ZOOM */
@keyframes eventZoom{
    0%{transform:scale(1);}
    50%{transform:scale(1.12);}
    100%{transform:scale(1);}
}

/* CONTENT ANIMATION */
@keyframes eventContent{
    0%{opacity:0; transform:translateY(40px);}
    10%,25%{opacity:1; transform:translateY(0);}
    30%{opacity:0;}

    35%{opacity:0; transform:translateY(40px);}
    45%,55%{opacity:1; transform:translateY(0);}
    60%{opacity:0;}

    65%{opacity:0; transform:translateY(40px);}
    75%,85%{opacity:1; transform:translateY(0);}
    90%{opacity:0;}
}

/* ================= MOBILE ================= */
@media(max-width:768px){

    .eventpraction-slide{
        height: 520px;
        padding:40px 5%;
    }

    .eventpraction-content h1{
        font-size: 28px;
    }

    .eventpraction-content p{
        font-size:13px;
        margin-bottom:20px;
    }

    /* 🔥 INLINE BUTTONS (FIXED) */
    .eventpraction-buttons{
        flex-direction:row;
        gap:10px;
    }

    .eventpraction-btn{
        padding:10px 18px;
        font-size:13px;
        border-radius:30px;
    }


}



/* ========= SLIDER SECTION END ========= */



/* =========================================
ABOUT SECTION — CLEAN MINIMAL MODERN UI
Class : eventabouts1
========================================= */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --eventabouts1-dark:#111111;
    --eventabouts1-text:#666666;
    --eventabouts1-muted:#9a9a9a;
    --eventabouts1-border:rgba(0,0,0,0.08);
    --eventabouts1-accent:#fd4621;
    --eventabouts1-bg:#ffffff;
    --eventabouts1-white:#ffffff;
}

body{
    font-family: 'Poppins', sans-serif;
    background:#ffffff;
    color:var(--eventabouts1-dark);
}

/* =========================================
SECTION
========================================= */

.eventabouts1{
    width:100%;
    padding:120px 24px;
    background:var(--eventabouts1-bg);
    position:relative;
}

/* subtle background effect */

.eventabouts1::before{
    content:"";
    position:absolute;
    right:-200px;
    top:-200px;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(181,139,73,0.05);
}

/* =========================================
GRID
========================================= */

.eventabouts1__grid{
    max-width:1600px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:100px;
    align-items:center;
    position:relative;
    z-index:2;
}

/* =========================================
CONTENT
========================================= */

.eventabouts1__content{
    position:relative;
}

/* tag */

.eventabouts1__tag{
    display:inline-flex;
    align-items:center;
    gap:12px;
    margin-bottom:24px;

    font-size:11px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--eventabouts1-accent);
    font-weight:500;
}

.eventabouts1__tag::before{
    content:"";
    width:42px;
    height:1.5px;
    border-radius:20px;
    background:var(--eventabouts1-accent);
}

/* heading */

.eventabouts1__heading{
    font-size: 52px;
    line-height:1.2;
    letter-spacing:-3px;
    font-weight:600;
    color:var(--eventabouts1-dark);
    margin-bottom:26px;
    max-width:760px;
}

.eventabouts1__heading em{
    color:var(--eventabouts1-accent);
    font-style:normal;
    font-weight:400;
}

/* description */

.eventabouts1__desc{
    max-width:700px;
    font-size:15px;
    line-height:2;
    color:var(--eventabouts1-text);
    font-weight:400;
    margin-bottom:42px;
}

/* =========================================
STATS
========================================= */

.eventabouts1__stats{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:42px;
}

/* stat */

.eventabouts1__stat{
    flex:1;
    min-width:180px;
    padding:26px 28px;
    border:1px solid var(--eventabouts1-border);
    border-radius:22px;
    background:rgba(255,255,255,0.75);
    backdrop-filter:blur(10px);
    transition:.35s ease;
}

.eventabouts1__stat:hover{
    transform:translateY(-5px);
    border-color:rgba(181,139,73,0.25);
}

/* number */

.eventabouts1__stat-num{
    font-size:42px;
    line-height:1;
    letter-spacing:-2px;
    font-weight:500;
    color:var(--eventabouts1-dark);
    margin-bottom:10px;
}

.eventabouts1__stat-num span{
    color:var(--eventabouts1-accent);
}

/* label */

.eventabouts1__stat-label{
    font-size:12px;
    letter-spacing:1px;
    text-transform:uppercase;
    color:var(--eventabouts1-muted);
}

/* =========================================
FEATURES
========================================= */

.eventabouts1__features{
    list-style:none;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px 34px;
    margin-bottom:46px;
}

.eventabouts1__features li{
    position:relative;
    padding-left:18px;
    font-size:14px;
    color:#444444;
    line-height:1.7;
    font-weight:400;
}

/* dot */

.eventabouts1__features li::before{
    content:"";
    position:absolute;
    left:0;
    top:9px;
    width:6px;
    height:6px;
    border-radius:50%;
    background:var(--eventabouts1-accent);
}

/* =========================================
BUTTONS
========================================= */

.eventabouts1__ctas{
    display:flex;
    align-items:center;
    gap:16px;
    flex-wrap:wrap;
}

/* btn */

.eventabouts1__btn{
    height:54px;
    padding:0 28px;
    border-radius:16px;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    font-weight:500;
    transition:.35s ease;
}

/* primary */

.eventabouts1__btn--primary{
    background:#111111;
    color:#ffffff;
    border:1px solid #111111;
}

.eventabouts1__btn--primary:hover{
    transform:translateY(-3px);
    background:#000000;
}

/* ghost */

.eventabouts1__btn--ghost{
    border:1px solid var(--eventabouts1-border);
    color:#111111;
    background:#ffffff;
}

.eventabouts1__btn--ghost:hover{
    border-color:var(--eventabouts1-accent);
    color:var(--eventabouts1-accent);
    transform:translateY(-3px);
}

/* =========================================
IMAGE SIDE
========================================= */

.eventabouts1__image-wrap{
    position:relative;
}

/* image */

.eventabouts1__img-main{
    width:100%;
    height:620px;
    object-fit:cover;
    display:block;
    border-radius:0px;
}

/* overlay */

.eventabouts1__image-wrap::after{
    content:"";
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,0.22) 0%,
        rgba(255,255,255,0.05) 35%,
        transparent 36%
    );
}

/* floating glass card */

.eventabouts1__badge{
    position:absolute;
    left:-40px;
    bottom:40px;

    background:rgba(255,255,255,0.8);
    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,0.4);

    border-radius:26px;

    padding:24px 26px;

    display:flex;
    align-items:center;
    gap:18px;
}

/* icon */

.eventabouts1__badge-dot{
    width:62px;
    height:62px;
    border-radius:18px;
    background:rgba(181,139,73,0.1);

    display:flex;
    align-items:center;
    justify-content:center;
}

/* svg */

.eventabouts1__badge-dot svg{
    width:26px;
    height:26px;
    fill:var(--eventabouts1-accent);
}

/* text */

.eventabouts1__badge-text strong{
    display:block;
    font-size:30px;
    line-height:1;
    margin-bottom:8px;
    color:#111111;
    font-weight:500;
    letter-spacing:-1px;
}

.eventabouts1__badge-text span{
    font-size:12px;
    letter-spacing:1px;
    text-transform:uppercase;
    color:var(--eventabouts1-muted);
}

/* =========================================
TABLET
========================================= */

@media(max-width:1200px){

    .eventabouts1__grid{
        gap:70px;
    }

    .eventabouts1__heading{
        font-size:54px;
    }

    .eventabouts1__img-main{
        height:640px;
    }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:991px){

    .eventabouts1{
        padding:90px 20px;
    }

    .eventabouts1__grid{
        grid-template-columns:1fr;
        gap:60px;
    }

    .eventabouts1__image-wrap{
        order:-1;
    }

    .eventabouts1__img-main{
        height:520px;
    }

    .eventabouts1__badge{
        left:20px;
        bottom:20px;
    }

}

@media(max-width:768px){

    .eventabouts1{
        padding:70px 18px;
    }

    .eventabouts1__heading{
        font-size:38px;
        line-height:1.12;
        letter-spacing:-1.5px;
        margin-bottom:20px;
    }

    .eventabouts1__desc{
        font-size:13px;
        line-height:1.9;
    }

    .eventabouts1__features{
        grid-template-columns:1fr;
        gap:14px;
    }

    .eventabouts1__stats{
        gap:14px;
    }

    .eventabouts1__stat{
        min-width:140px;
        padding:20px;
    }

    .eventabouts1__stat-num{
        font-size:34px;
    }

    .eventabouts1__img-main{
        height:420px;
    }

    .eventabouts1__badge{
        padding:18px 20px;
        border-radius:18px;
    }

}

@media(max-width:480px){

    .eventabouts1{
        padding:60px 16px;
    }

    .eventabouts1__heading{
        font-size:30px;
        letter-spacing:-1px;
    }

    .eventabouts1__stats{
        flex-direction:column;
    }

    .eventabouts1__stat{
        width:100%;
    }

    .eventabouts1__ctas{
        flex-direction:column;
        align-items:stretch;
    }

    .eventabouts1__btn{
        width:100%;
    }

    .eventabouts1__img-main{
        height:320px;
    }

    .eventabouts1__badge{
        display:none;
    }

}

/* =========================================
END
========================================= */









/* =========================
HERO SECTION START
========================= */

.eventhero111-section{
    position:relative;
    width:100%;
    overflow:hidden;
}

/* =========================
SWIPER
========================= */

.eventHeroSwiper{
    width:100%;
    height: 800px;
}

/* =========================
SLIDE
========================= */

.eventHeroSwiper .swiper-slide{
    position:relative;
    overflow:hidden;
}

/* =========================
PICTURE
========================= */

.swiper-slide picture{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    display:block;
}

/* =========================
BACKGROUND IMAGE
========================= */

.eventhero-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
    transition:transform 6s ease;
}

/* ACTIVE ZOOM EFFECT */

.swiper-slide-active .eventhero-bg{
    transform:scale(1.08);
}

/* =========================
OVERLAY
========================= */

.eventhero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to right,
        rgba(0, 0, 0, 0.34),
        rgba(0,0,0,0.35)
    );
    z-index:2;
}

/* =========================
CONTENT
========================= */

.eventhero-content{
    position:absolute;
    left: 9%;
    bottom:120px;
    z-index:3;
    max-width:700px;
    color:#fff;
}

.eventhero-subtitle{
    display:inline-block;
    margin-bottom:18px;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.eventhero-content h1{
    font-size:68px;
    line-height:1.15;
    margin-bottom:22px;
    font-weight:700;
}

.eventhero-content p{
    font-size:16px;
    line-height:1.8;
    opacity:0.95;
    font-family: 'Poppins', sans-serif;
}

/* =========================
PAGINATION
========================= */

.swiper-pagination-bullet{
    width:12px;
    height:12px;
    background:#fff;
    opacity:.5;
}

.swiper-pagination-bullet-active{
    background:#fd5c3c;
    opacity:1;
}

/* =========================
TABLET
========================= */

@media(max-width:991px){

    .eventHeroSwiper{
        height:520px;
    }

    .eventhero-content h1{
        font-size:48px;
    }

}

@media(max-width:768px){

    .eventHeroSwiper{
        height:460px;
        min-height:auto;
    }

    .eventhero-content{
        left:24px;
        right:24px;
        bottom:50px;
    }

    .eventhero-content h1{
        font-size:30px;
        line-height:1.2;
    }

    .eventhero-content p{
        font-size:14px;
        line-height:1.6;
    }

}

/* =========================
SMALL MOBILE
========================= */

@media(max-width:480px){

    .eventHeroSwiper{
        min-height:620px;
    }

    .eventhero-content h1{
        font-size:28px;
    }

    .eventhero-content p{
        font-size:14px;
    }

}


/* =========================
Main slider end
========================= */



/* ========= About us 2 Start  ========= */
/* ===== Section ===== */

.omaboutus-section{
padding:80px 20px;
background:#f5e9dd;
font-family: 'Poppins', sans-serif;
}

.omaboutus-container{
max-width:1600px;
margin:auto;
}

/* ===== Top ===== */

.omaboutus-top{
display:flex;
justify-content:space-between;
align-items:flex-start;
gap:60px;
flex-wrap:wrap;
margin-bottom:50px;
}

.omaboutus-heading{
flex:1;
min-width:300px;
}

.omaboutus-heading h2{
font-size:52px;
font-weight:700;
line-height:1.15;
letter-spacing:-1.5px;
color:#111;
margin:0;
}

.omaboutus-heading span{
color:#fd4621;
}

.omaboutus-desc{
max-width:420px;
}

.omaboutus-desc p{
font-size:16px;
line-height:1.9;
color:#4b4b4b;
margin:0;
}

/* ===== Image ===== */

.omaboutus-imagebox{
width:100%;
overflow:hidden;
margin-bottom:45px;
}

.omaboutus-imagebox img{
width:100%;
height:520px;
object-fit:cover;
display:block;
}

/* ===== Bottom ===== */

.omaboutus-bottom{
display:flex;
justify-content:space-between;
align-items:center;
gap:30px;
flex-wrap:wrap;
}

.omaboutus-text{
flex:1;
min-width:280px;
}

.omaboutus-text h3{
font-size:26px;
font-weight:500;
line-height:1.6;
color:#1f1f1f;
margin:0;
max-width:900px;
}

/* ===== Single Minimal Badge ===== */

.omaboutus-badge{
padding:12px 22px;
background: transparent;
border:2px solid #fd4621;
font-size:14px;
font-weight:500;
color:#111;
border-radius:100px;
white-space:nowrap;
}

/* ===== Responsive ===== */

@media(max-width:992px){

.omaboutus-heading h2{
font-size:40px;
}

.omaboutus-imagebox img{
height:400px;
}

}

@media(max-width:768px){

.omaboutus-section{
padding:55px 16px;
}

.omaboutus-top{
gap:28px;
margin-bottom:35px;
}

.omaboutus-heading h2{
font-size:30px;
line-height:1.3;
letter-spacing:-0.5px;
}

.omaboutus-desc p{
font-size:15px;
line-height:1.8;
}

.omaboutus-imagebox{
margin-bottom:30px;
}

.omaboutus-imagebox img{
height:260px;
}

.omaboutus-bottom{
gap:20px;
}

.omaboutus-text h3{
font-size:20px;
line-height:1.6;
}

.omaboutus-badge{
width:100%;
text-align:center;
padding:14px 18px;
font-size:13px;
white-space:normal;
border-radius:14px;
}

}

@media(max-width:480px){

.omaboutus-heading h2{
font-size:26px;
}

.omaboutus-text h3{
font-size:18px;
}

}

/* ========= About us 2 end  ========= */


/* ========= OUR TEAM START ========= */

/* Section */
.bunditeam-section {
    padding: 60px 20px;
    background: transparent;
}

/* Container */
.bunditeam-container {
    max-width: 1600px;
    margin: auto;
}

/* Heading */
.bunditeam-heading {
    text-align: center;
    margin-bottom: 50px;
}

.bunditeam-heading h2 {
    font-size: 36px;
    font-weight: 600px;
    margin-bottom: 10px;
}

.bunditeam-heading p {
    color: #777;
    font-size: 16px;
}

/* Grid */
.bunditeam-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Card */
.bunditeam-card {
    background: transparent;
    border-radius: 0px;
    overflow: hidden;
    text-align: center;
    transition: 0.3s ease;
}

/* Hover Effect */
.bunditeam-card:hover {
    transform: translateY(-8px);
}

/* Image */
.bunditeam-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

/* Content */
.bunditeam-content {
    padding: 20px;
}

.bunditeam-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.bunditeam-content span {
    font-size: 14px;
    color: #888;
}

/* Responsive */
@media (max-width: 992px) {
    .bunditeam-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bunditeam-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

}

@media (max-width: 480px) {
    .bunditeam-heading h2 {
        font-size: 28px;
    }
}

/* ========= OUR TEAM END ========= */



/* ========= DESTINATION START ========= */

.eventexpvison {
    width: 100%;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

/* TOP DARK SECTION */
.eventexpvison-top {
    background: #0b0b0b;
    padding: 100px 20px 140px;
    color: #fff;
}

/* CONTAINER */
.eventexpvison-container {
    max-width: 1600px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT */
.eventexpvison-left {
    flex: 1;
}

.eventexpvison-sub {
    color: #ccc;
    font-size: 14px;
}

.eventexpvison-left h2 {
    font-size: 42px;
    margin-top: 15px;
    line-height: 1.3;
}

.eventexpvison-left h2 span {
    color: #fd4621;
}

/* RIGHT */
.eventexpvison-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.eventexpvison-right p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
}

/* FLOATING BOX */
.eventexpvison-box {
    max-width: 1400px;
    margin: -80px auto 0;
    background: #f5f5f5;
    display: flex;
    gap: 40px;
    padding: 50px;
    border-radius: 0px;
}

/* ITEM */
.eventexpvison-item {
    flex: 1;
    text-align: left;
}

/* ICON */
.eventexpvison-icon {
    width: 70px;
    height: 70px;
    background: #eaeaea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.eventexpvison-icon img {
    width: 35px;
}

/* TITLE */
.eventexpvison-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* TEXT */
.eventexpvison-item p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* DIVIDER LINE */
.eventexpvison-item:first-child {
    border-right: 1px solid #ddd;
    padding-right: 20px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .eventexpvison-container {
        flex-direction: column;
    }

    .eventexpvison-box {
        flex-direction: column;
        margin-top: -60px;
        padding: 30px;
    }

    .eventexpvison-item:first-child {
        border-right: none;
        border-bottom: 1px solid #ddd;
        padding-bottom: 20px;
    }
}

@media (max-width: 576px) {

    .eventexpvison-left h2 {
        font-size: 28px;
    }

    .eventexpvison-top {
        padding: 70px 15px 120px;
    }

    .eventexpvison-box {
        padding: 20px;
    }
}

/* ========= DESTINATION END ========= */



/* ========= dESTINATION START ========= */


* { box-sizing: border-box; margin: 0; padding: 0; }
 
.ds {
    padding: 60px 20px;
    background: #fff;
    font-family: 'Poppins', sans-serif;
}
 
.dc {
    max-width: 1580px;
    margin: auto;
}
 
/* ── HEADER ── */
.dh {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}
 
.dh-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
 
.dh-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #D85A30;
    text-transform: uppercase;
}
 
.dh-tag::before {
    content: '';
    width: 28px;
    height: 2px;
    background: #D85A30;
    display: inline-block;
    border-radius: 2px;
}
 
.dh h2 {
    font-size: 34px;
    font-weight: 600;
    color: #111;
    line-height: 1.2;
}
 
.dh h2 span {
    color: #D85A30;
}
 
.dh-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid #ddd;
    color: #111;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    background: #fff;
    transition: all 0.3s;
}
 
.dh-btn:hover {
    background: #D85A30;
    color: #fff;
    border-color: #D85A30;
}
 
.dh-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s;
}
 
.dh-btn:hover svg {
    transform: translateX(3px);
}
 
/* ── CARD ── */
.card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 460px;
    cursor: pointer;
}
 
.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}
 
.card:hover img {
    transform: scale(1.07);
}
 
.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.0) 40%, rgba(0,0,0,0.75) 100%);
}
 
/* ── TOP BAR ── */
.card-top {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
 
.card-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 500;
}
 
.card-badge-dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
}
 
.card-tag {
    background: rgba(216,90,48,0.85);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 5px 11px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
 
.card-arrow {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}
 
.card:hover .card-arrow {
    background: #D85A30;
    border-color: #D85A30;
    transform: scale(1.1);
}
 
.card-arrow svg {
    width: 14px;
    height: 14px;
}
 
/* ── BOTTOM CONTENT ── */
.card-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 18px;
}
 
.card-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}
 
.card-meta span {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
}
 
.card-meta-dot {
    width: 3px;
    height: 3px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
}
 
.card h3 {
    font-size: 19px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 6px;
}
 
.card p {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
}
 
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.2);
}
 
.card-price-label {
    font-size: 10px;
    color: rgba(255,255,255,0.6);
    display: block;
}
 
.card-price-val {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}
 
.card-price-val span {
    font-size: 10px;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
}
 
.card-stars {
    display: flex;
    gap: 2px;
}
 
.star {
    width: 12px;
    height: 12px;
}
 
/* ── PAGINATION ── */
.swiper-pagination {
    margin-top: 24px;
    position: relative !important;
    bottom: auto !important;
}
 
.swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
    width: 6px;
    height: 6px;
}
 
.swiper-pagination-bullet-active {
    background: #D85A30;
    width: 20px;
    border-radius: 3px;
}
 
/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .dh h2 { font-size: 24px; }
    .card { height: 340px; }
    .card h3 { font-size: 16px; }
}



/* ========= DESTINATION END ========= */















/* ===========================
   LUXURY SERVICES SECTION
=========================== */

.service-section{
    padding:90px 0;
    background:#ffffff;
    overflow:hidden;
}

.service-section .container{
    max-width:1600px;
    margin:auto;
    padding:0 20px;
}

/* HEADER */

.service-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    margin-bottom:50px;
    gap:20px;
}

.service-tag{
    display:inline-block;
    color:#fd4621;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:15px;
}

.service-header h2{
    font-size:40px;
    line-height:1.1;
    color:#1c1c1c;
    font-weight:600;
}

.service-header h2 span{
    color:#fd4621;
}

.service-btn{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    background:#fff;
    color:#111;
    padding:12px 24px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.service-btn:hover{
    background:#fd4621;
    color:#fff;
}

/* GRID */

.service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* CARD */

.service-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

/* IMAGE */

.service-image{
    position:relative;
    height:330px;
    overflow:hidden;
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.8s;
}

.service-card:hover img{
    transform:scale(1.08);
}

/* NUMBER */

.service-number{
    position:absolute;
    top:20px;
    left:20px;
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,.18);
    backdrop-filter:blur(10px);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-weight:600;
    font-size:14px;
}

/* ICON */

.service-icon{
    position:absolute;
    top:20px;
    right:20px;
    width:60px;
    height:60px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(0,0,0,.10);
}

.service-icon i{
    color:#fd4621;
    font-size:22px;
}

/* CONTENT */

.service-content{
    background:#fff;
    padding:30px;
    position:relative;
    margin-top:-20px;
    border-radius:30px 30px 0 0;
    z-index:2;
}

.mini-line{
    width:40px;
    height:3px;
    background:#fd4621;
    display:block;
    margin-bottom:18px;
    border-radius:30px;
}

.service-content h3{
    font-size:26px;
    line-height:1.2;
    color:#222;
    margin-bottom:15px;
    font-weight:700;
}

.service-content p{
    color:#666;
    line-height:1.9;
    font-size:15px;
    margin-bottom:25px;
}

.service-link{
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#fd4621;
    font-weight:600;
    transition:.3s;
}

.service-link i{
    transition:.3s;
}

.service-link:hover i{
    transform:translateX(5px);
}

/* TABLET */

@media(max-width:1200px){

    .service-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .service-header h2{
        font-size:42px;
    }
}

/* MOBILE */

@media(max-width:768px){

    .service-grid{
        grid-template-columns:1fr;
    }

    .service-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .service-header h2{
        font-size:34px;
    }

    .service-image{
        height:280px;
    }

    .service-content h3{
        font-size:24px;
    }
}

/* ==== BLOG SECTION END==== */




/* ==== BLOG SECTION START==== */

.travel-blog-section{
width:100%;
background:#ffffff;
padding:40px 16px;
display:flex;
justify-content:center;
font-family: 'Poppins', sans-serif;
box-sizing:border-box;
}

.travel-blog-container{
width:100%;
max-width:1500px;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:26px;
box-sizing:border-box;
}

/* Card */

.travel-blog-card{
background:#ffffff;
border-radius:14px;
overflow:hidden;
text-decoration:none;
color:#111;
display:block;
height:100%;
}


/* Image */

.travel-blog-img{
position:relative;
overflow:hidden;
}

.travel-blog-img img{
width:100%;
height:220px;
object-fit:cover;
transition:0.4s;
display:block;
}

.travel-blog-card:hover .travel-blog-img img{
transform:scale(1.06);
}

/* Category */

.travel-blog-category{
position:absolute;
top:14px;
left:14px;
background:#fff;
padding:6px 14px;
font-size:12px;
font-weight:600;
border-radius:30px;
box-shadow:0 6px 15px rgba(0,0,0,0.1);
}

/* Content */

.travel-blog-content{
padding:22px;
}

/* Meta */

.travel-blog-meta{
font-size:13px;
color:#777;
display:flex;
gap:14px;
margin-bottom:12px;
flex-wrap:wrap;
}

.travel-blog-meta i{
margin-right:4px;
}

/* Title */

.travel-blog-title{
font-size:18px;
font-weight:600;
line-height:1.45;
margin-bottom:10px;
}

/* Description */

.travel-blog-desc{
font-size:14px;
color:#666;
line-height:1.6;
margin-bottom:14px;
}

/* Read */

.travel-blog-read{
font-size:14px;
font-weight:600;
color:#111;
}

.travel-blog-read i{
margin-left:6px;
font-size:13px;
}


/* ===== Laptop ===== */

@media (max-width:1200px){

.travel-blog-container{
grid-template-columns:repeat(3,1fr);
}

}


/* ===== Tablet ===== */

@media (max-width:900px){

.travel-blog-container{
grid-template-columns:repeat(2,1fr);
gap:22px;
}

}


/* ===== Mobile ===== */

@media (max-width:600px){

.travel-blog-section{
padding:50px 16px;
}

.travel-blog-container{
grid-template-columns:1fr;
gap:20px;
}

.travel-blog-img img{
height:200px;
}

.travel-blog-content{
padding:18px;
}

.travel-blog-title{
font-size:17px;
}

.travel-blog-desc{
font-size:13.5px;
}

}

/* ==== BLOG SECTION END ==== */




/* ==== BLOG DETAILS START ==== */
body{
font-family: 'Poppins', sans-serif;
background:#ffffff;
color:#1a1a1a;
}

/* CONTAINER */

.container{
max-width:1500px;
margin:auto;
padding:60px 35px;
}

/* BREADCRUMB */

.breadcrumb{
font-size:14px;
margin-bottom:35px;
margin-top: 10px;
color:#777;
}

.breadcrumb a{
text-decoration:none;
color:#555;
}

.breadcrumb a:hover{
color:#000;
}

/* GRID LAYOUT */

.blog-layout{
display:grid;
grid-template-columns:2.3fr 1fr;
gap:60px;
align-items:start;
}

/* BLOG CARD */

.blog-card{
background:#ffffff;
border-radius:12px;
overflow:hidden;
}

/* BLOG IMAGE */

.blog-image img{
width:100%;
height:500px;
object-fit:cover;
border-radius:12px;
}

/* BLOG CONTENT */

.blog-content{
padding:40px 10px;
max-width:850px;
}

/* TITLE */

.blog-title{
font-size:42px;
font-weight:700;
line-height:1.25;
margin-bottom:15px;
letter-spacing:-0.3px;
}

/* META */

.blog-meta{
font-size:14px;
color:#777;
margin-bottom:30px;
display:flex;
gap:20px;
flex-wrap:wrap;
}

/* BLOG TEXT */

.blog-desc p{
margin-bottom:20px;
font-size:19px;
color:#333;
max-width:780px;
}

/* SHARE */

.share{
margin-top:40px;
padding-top:25px;
border-top:1px solid #e8e3d8;
display:flex;
align-items:center;
gap:12px;
}

.share span{
font-weight:600;
margin-right:10px;
font-size:14px;
}

.share a{
width:40px;
height:40px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
text-decoration:none;
font-size:14px;
transition:0.2s;
}

.share a:hover{
transform:scale(1.1);
}

.fb{background:#7f7f7f;}
.tw{background:#7f7f7f;}
.wa{background:#7f7f7f;}
.li{background:#7f7f7f;}

/* COMMENTS */

.comments{
margin-top:70px;
}

.comments h3{
font-size:24px;
margin-bottom:35px;
}

/* COMMENT */

.comment{
display:flex;
gap:15px;
margin-bottom:25px;
padding-bottom:25px;
border-bottom:1px solid #e8e3d8;
}

.avatar{
width:46px;
height:46px;
border-radius:50%;
background:#111;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-size:15px;
font-weight:600;
}

.comment-body h4{
font-size:15px;
}

.comment-body span{
font-size:12px;
color:#777;
}

.comment-body p{
margin-top:7px;
font-size:15px;
color:#444;
}

/* COMMENT FORM */

.comment-form{
margin-top:45px;
}

.comment-form h3{
margin-bottom:20px;
}

.form-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:15px;
margin-bottom:15px;
}

.comment-form input,
.comment-form textarea{
width:100%;
padding:14px;
border:1px solid #ddd;
border-radius:8px;
background:#fff;
font-size:14px;
outline:none;
}

.comment-form textarea{
height:150px;
resize:none;
margin-bottom:15px;
}

.comment-form button{
background:#111;
color:#fff;
border:none;
padding:14px 28px;
border-radius:8px;
cursor:pointer;
font-size:14px;
transition:0.25s;
}

.comment-form button:hover{
background:#333;
}

/* SIDEBAR */

.sidebar{
display:flex;
flex-direction:column;
gap:35px;
}

/* SIDEBAR BOX */

.sidebar-box{
background:#ffffff;
padding:25px;
border-radius:10px;
border:1px solid #ece7dd;
}

/* SIDEBAR TITLE */

.sidebar-title{
font-size:18px;
font-weight:600;
margin-bottom:18px;
}

/* SEARCH */

.search-box{
display:flex;
}

.search-box input{
flex:1;
padding:12px;
border:1px solid #ddd;
border-radius:8px 0 0 8px;
background:#fff;
}

.search-box button{
background:#111;
color:#fff;
border:none;
padding:12px 16px;
border-radius:0 8px 8px 0;
cursor:pointer;
}

/* NEWSLETTER */

.newsletter input{
width:100%;
padding:12px;
border:1px solid #ddd;
border-radius:8px;
margin-bottom:10px;
background:#fff;
}

.newsletter button{
width:100%;
background:#111;
color:#fff;
border:none;
padding:12px;
border-radius:8px;
cursor:pointer;
}

/* LATEST POSTS */

.latest-post{
display:flex;
gap:12px;
margin-bottom:15px;
align-items:center;
cursor:pointer;
}

.latest-post img{
width:70px;
height:70px;
border-radius:8px;
object-fit:cover;
}

.latest-post span{
font-size:14px;
font-weight:500;
color:#333;
transition:0.2s;
}

.latest-post:hover span{
color:#000;
}

/* CATEGORY */

.category a{
display:block;
padding:10px 0;
text-decoration:none;
color:#555;
border-bottom:1px solid #ece7dd;
font-size:14px;
}

.category a:hover{
color:#000;
padding-left:5px;
}

/* TABLET */

@media(max-width:1100px){

.blog-layout{
grid-template-columns:1fr;
gap:40px;
}

.blog-image img{
height:360px;
}

}

/* MOBILE */

@media(max-width:700px){

.container{
padding:35px 20px;
}

.blog-title{
font-size:30px;
}

.blog-desc p{
font-size:17px;
}

.blog-image img{
height:240px;
}

.blog-content{
padding:25px 5px;
}

.form-grid{
grid-template-columns:1fr;
}

.sidebar-box{
padding:22px;
}

}


/* ==== BLOG DETAILS END ==== */



/* ==== BADCRUMS START ==== */

.omtravelsbadcrums1{
width:100%;
background:#ffffff;
padding:22px 0;
margin-top:1px;
}

/* TOP LINE */

.omtravelsbadcrums1-topline{
width:100%;
height:0.6px;
background:#000;
margin-bottom:20px;
}

/* CONTAINER */

.omtravelsbadcrums1-container{
max-width:1600px;
margin:auto;
padding:0 15px;
}

/* BREADCRUMB */

.omtravelsbadcrums1-path{
font-size:14px;
color:#444;
font-weight:500;
display:flex;
align-items:center;
flex-wrap:wrap;
}

/* LINKS */

.omtravelsbadcrums1-path a{
color:#111;
text-decoration:none;
transition:0.3s;
}

.omtravelsbadcrums1-path a:hover{
text-decoration:underline;
}

/* SEPARATOR */

.omtravelsbadcrums1-path span{
margin:0 8px;
color:#888;
}

/* H1 */

.omtravelsbadcrums1-path h1{
font-size:14px;
font-weight:600;
margin:0;
color:#666;
}

/* MOBILE */

@media (max-width:768px){

.omtravelsbadcrums1{
padding:18px 0;
}

.omtravelsbadcrums1-container{
padding:0 12px;
}

.omtravelsbadcrums1-path{
font-size:13px;
line-height:1.6;
}

.omtravelsbadcrums1-path h1{
font-size:13px;
}

}

/* ==== BADCRUMS END ==== */

/* ==== BADCRUMS 2 ==== */
.eventhbanner1 {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* BACKGROUND IMAGE */
.eventhbanner1__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 1;
}

/* DARK OVERLAY */
.eventhbanner1__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.3)
    );
    z-index: 2;
}

/* CONTENT */
.eventhbanner1__content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    padding: 140px;
    max-width: 1200px;
}

/* TITLE */
.eventhbanner1__title {
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 1px;
    margin-top: 40px;
}

/* SUBTITLE */
.eventhbanner1__subtitle {
    font-size: 20px;
    opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .eventhbanner1 {
        height: 500px;
        max-width: 1200px;
    }

    .eventhbanner1__title {
        font-size: 26px;
    }

    .eventhbanner1__subtitle {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .eventhbanner1 {
        height: 420px;
         max-width: 1200px;
    }

    .eventhbanner1__title {
         font-size: 26px;
         
    }

    .eventhbanner1__subtitle {
        font-size: 16px;
    }
}


/* ==== BA max-width: 1000px;DCRUMS END ==== */




*{
box-sizing:border-box;
margin:0;
padding:0;
}

body{
overflow-x:hidden;
}

/* SECTION */

.omcontactus{
width:100%;
padding:80px 20px;
background:#ffffff;
}

/* CONTAINER */

.omcontactus-container{
max-width:1400px;
margin:auto;
display:flex;
justify-content:center;
}

/* FORM BOX */

.omcontactus-box{
width:100%;
max-width:1000px;
}

/* TITLE */

.omcontactus-title{
text-align:center;
font-size:36px;
margin-bottom:40px;
}

/* FORM */

.omcontactus-form input,
.omcontactus-form textarea{
width:100%;
padding:15px;
border:1.5px solid #000;
margin-bottom:18px;
background:transparent;
outline:none;
font-size:15px;
}

/* ROW */

.omcontactus-row{
display:flex;
gap:20px;
}

.omcontactus-row input{
flex:1;
}

/* TEXTAREA */

.omcontactus-form textarea{
height:140px;
resize:none;
}

/* BUTTON */

.omcontactus-form button{
width:100%;
padding:16px;
background:#000;
color:#fff;
border:none;
font-size:16px;
cursor:pointer;
transition:0.3s;
}

.omcontactus-form button:hover{
background:#222;
}

/* BOTTOM */

.omcontactus-bottom{
text-align:center;
margin-top:35px;
}

.omcontactus-email{
font-size:16px;
margin-bottom:20px;
}

.omcontactus-email i{
margin-right:8px;
}

/* SOCIAL */

.omcontactus-social{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.omcontactus-social a{
width:42px;
height:42px;
border:1px solid #000;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
color:#000;
transition:.3s;
}

.omcontactus-social a:hover{
background:#000;
color:#fff;
}

/* TABLET */

@media(max-width:992px){

.omcontactus-box{
max-width:90%;
}

.omcontactus-title{
font-size:30px;
}

}

/* MOBILE */

@media(max-width:768px){

.omcontactus{
padding:60px 15px;
}

.omcontactus-box{
max-width:100%;
}

.omcontactus-row{
flex-direction:column;
gap:0;
}

.omcontactus-title{
font-size:26px;
}

}

/* SMALL MOBILE */

@media(max-width:480px){

.omcontactus-title{
font-size:24px;
}

.omcontactus-form input,
.omcontactus-form textarea{
padding:13px;
font-size:14px;
}

.omcontactus-form button{
padding:14px;
font-size:15px;
}

}




/* NEWSLATTER FOOTER START */

.footernewslatter-section {
    background: #ffffff;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.footernewslatter-container {
    max-width: 1500px;
    width: 100%;
    text-align: center;
}

.footernewslatter-subtitle {
    display: block;
    font-size: 14px;
    color: #777;
    margin-bottom: 8px;
}

.footernewslatter-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

.footernewslatter-desc {
    max-width: 600px;
    margin: auto;
    font-size: 15px;
    color: #666;
    margin-bottom: 35px;
}


/* FORM */

.footernewslatter-form {
    max-width: 520px;
    margin: auto;
    display: flex;
    align-items: center;
    background: #ffffff40;
    border: 1px solid #ddd;
    border-radius: 35px;
    padding: 8px;
    gap: 10px;
    backdrop-filter: blur(4px);
}


/* INPUT */

.footernewslatter-form input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 14px 18px;
    font-size: 14px;
    color: #111;
}


/* BUTTON */

.footernewslatter-form button {
    background: black;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: .3s;
    white-space: nowrap;
}

.footernewslatter-form button:hover {
    background: #333;
}


/* NOTE */

.footernewslatter-note {
    margin-top: 15px;
    font-size: 12px;
    color: #777;
}


/* MOBILE */

@media (max-width:600px) {

    .footernewslatter-title {
        font-size: 26px;
    }

    .footernewslatter-form {
        max-width: 95%;
        padding: 6px;
    }

    .footernewslatter-form input {
        padding: 12px 14px;
        font-size: 13px;
    }

    .footernewslatter-form button {
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 25px;
    }

}



/* NEWSLATTER FOOTER START */









/* =========================
PLAN YOUR JOURNEY FORM START
========================= */

.eventexpjurneys1-section{
    width: 100%;
    margin-top: -70px;
    position: relative;
    z-index: 50;
    padding: 0 24px;
}

/* MAIN BOX */

.eventexpjurneys1-container{
    max-width: 1300px;
    margin: auto;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 32px;
    padding: 38px;
}

/* =========================
TOP CONTENT
========================= */

.eventexpjurneys1-top{
    text-align: center;
    margin-bottom: 26px;
}

.eventexpjurneys1-top span{
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff5e3a;
    margin-bottom: 10px;
}

.eventexpjurneys1-top h2{
    font-size: 52px;
    line-height: 1;
    font-weight: 800;
    color: #111;
    margin: 0;
    letter-spacing: -2px;
}

/* =========================
FORM
========================= */

.eventexpjurneys1-form{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr 1fr auto;
    gap: 14px;
    align-items: center;
}

/* FIELD */

.eventexpjurneys1-field{
    width: 100%;
}

.eventexpjurneys1-field input,
.eventexpjurneys1-field select{
    width: 100%;
    height: 50px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #fafafa;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 500;
    color: #111;
    outline: none;
    transition: all 0.3s ease;
}

.eventexpjurneys1-field input::placeholder{
    color: #888;
}

.eventexpjurneys1-field input:focus,
.eventexpjurneys1-field select:focus{
    border-color: #111;
    background: #fff;
}

.eventexpjurneys1-field select{
    appearance: none;
    cursor: pointer;
}

/* =========================
BUTTON
========================= */

.eventexpjurneys1-btnwrap{
    display: flex;
    align-items: center;
    justify-content: center;
}

.eventexpjurneys1-btn{
    height: 50px;
    padding: 0 34px;
    border: none;
    border-radius: 30px;
    background: #ff5e3a;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
}

.eventexpjurneys1-btn:hover{
    border: 1px solid #111;
    background: transparent;
    color: #111;
    transform: translateY(-2px);
}

/* =========================
LAPTOP
========================= */

@media(max-width:1200px){

    .eventexpjurneys1-form{
        grid-template-columns: repeat(2,1fr);
    }

    .eventexpjurneys1-btnwrap{
        grid-column: span 2;
        justify-content: center;
        margin-top: 6px;
    }

}

/* =========================
TABLET
========================= */

@media(max-width:991px){

    .eventexpjurneys1-section{
        padding: 0 14px;
        margin-top: -45px;
    }

    .eventexpjurneys1-container{
        padding: 28px 22px;
        border-radius: 24px;
    }

    .eventexpjurneys1-top{
        margin-bottom: 22px;
    }

    .eventexpjurneys1-top h2{
        font-size: 40px;
        letter-spacing: -1px;
    }

    .eventexpjurneys1-form{
        grid-template-columns: repeat(2,1fr);
        gap: 12px;
    }

    .eventexpjurneys1-field input,
    .eventexpjurneys1-field select{
        height: 56px;
    }

    .eventexpjurneys1-btnwrap{
        grid-column: span 2;
    }

}

/* =========================
MOBILE
========================= */

@media(max-width:600px){

    .eventexpjurneys1-section{
        padding: 0 10px;
        margin-top: -35px;
    }

    .eventexpjurneys1-container{
        padding: 18px 14px;
        border-radius: 20px;
    }

    .eventexpjurneys1-top{
        margin-bottom: 18px;
    }

    .eventexpjurneys1-top span{
        font-size: 9px;
        letter-spacing: 1.5px;
        margin-bottom: 6px;
    }

    .eventexpjurneys1-top h2{
        font-size: 28px;
        line-height: 1.15;
    }

    /* TWO FIELDS PER ROW */

    .eventexpjurneys1-form{
        grid-template-columns: repeat(2,1fr);
        gap: 10px;
    }

    .eventexpjurneys1-field input,
    .eventexpjurneys1-field select{
        height: 48px;
        border-radius: 12px;
        padding: 0 12px;
        font-size: 11px;
    }

    .eventexpjurneys1-btnwrap{
        grid-column: span 2;
        margin-top: 4px;
    }

    .eventexpjurneys1-btn{
        width: 100%;
        height: 50px;
        border-radius: 30px;
        font-size: 13px;
    }

}


/* =========================
PLAN YOUR JOURNEY FORM END
========================= */





/* =========================
EVENT EXP COUNTER SECTION START
========================= */

.eventexpcounter-section{
    width: 100%;
    position: relative;
    z-index: 20;
    margin-top: -55px;
    margin-bottom: 70px;
    padding: 0 20px;
}

.eventexpcounter-container{
    max-width: 1400px;
    margin: auto;
    background: #ffffff;
    border: 1px solid rgba(15,15,15,0.06);
    border-radius: 24px;
    padding: 20px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

/* subtle top line */

.eventexpcounter-container::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,94,58,0.35),
        transparent
    );
}

/* counter box */

.eventexpcounter-box{
    flex: 1;
    min-width: 0;
    text-align: center;
    padding: 28px 18px;
    position: relative;
    transition: all 0.3s ease;
}

/* vertical divider */

.eventexpcounter-box:not(:last-child)::after{
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(0,0,0,0.08);
}

/* hover */

.eventexpcounter-box:hover{
    background: rgba(0,0,0,0.015);
}

/* counter number */

.eventexpcounter-box h3{
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    margin: 0 0 10px;
    color: #111111;
    letter-spacing: -2px;
}

/* plus and percent */

.eventexpcounter-box h3 span{
    color: #ff5e3a;
    font-weight: 600;
}

/* text */

.eventexpcounter-box p{
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #777777;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* =========================
TABLET
========================= */

@media(max-width:991px){

    .eventexpcounter-section{
        margin-top: -40px;
    }

    .eventexpcounter-container{
        padding: 14px 5px;
        border-radius: 20px;
    }

    .eventexpcounter-box{
        padding: 22px 10px;
    }

    .eventexpcounter-box h3{
        font-size: 32px;
    }

    .eventexpcounter-box p{
        font-size: 12px;
    }

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

    .eventexpcounter-section{
        padding: 0 12px;
        margin-top: -30px;
    }

    .eventexpcounter-container{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 0;
        padding: 8px;
        border-radius: 18px;
    }

    .eventexpcounter-box{
        padding: 24px 10px;
    }

    /* remove desktop divider */

    .eventexpcounter-box::after{
        display: none;
    }

    /* mobile dividers */

    .eventexpcounter-box:nth-child(1),
    .eventexpcounter-box:nth-child(2){
        border-bottom: 1px solid rgba(0,0,0,0.07);
    }

    .eventexpcounter-box:nth-child(1),
    .eventexpcounter-box:nth-child(3){
        border-right: 1px solid rgba(0,0,0,0.07);
    }

    .eventexpcounter-box h3{
        font-size: 28px;
        margin-bottom: 8px;
    }

    .eventexpcounter-box p{
        font-size: 11px;
        line-height: 1.5;
        letter-spacing: 0.4px;
    }

}

/* =========================
SMALL MOBILE
========================= */

@media(max-width:480px){

    .eventexpcounter-box{
        padding: 20px 8px;
    }

    .eventexpcounter-box h3{
        font-size: 24px;
    }

    .eventexpcounter-box p{
        font-size: 10px;
    }

}

/* =========================
EVENT EXP COUNTER SECTION END
========================= */






/* =========================================
FNQ SECTION START
========================================= */

.eventfnq1{
    width:100%;
    padding:120px 24px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.eventfnq1-container{
    max-width:1600px;
    margin:auto;
    display:grid;
    grid-template-columns:1.05fr .85fr;
    gap:90px;
    align-items:center;
}

/* =========================================
LEFT
========================================= */

.eventfnq1-top{
    margin-bottom:50px;
}

.eventfnq1-tag{
    display:inline-block;
    font-size:11px;
    font-weight:500;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#b58b49;
    margin-bottom:22px;
}

.eventfnq1-top h2{
    font-size:62px;
    line-height:1.08;
    font-weight:500;
    color: #111111;
    letter-spacing:-3px;
    margin-bottom:24px;
    max-width:760px;
}

.eventfnq1-top h2 span{
    color: #fd4621;
    font-weight:400;
}

.eventfnq1-top p{
    max-width:650px;
    font-size:15px;
    line-height:2;
    color:#666666;
    font-weight:400;
}

/* =========================================
FAQ
========================================= */

.eventfnq1-faq{
    width:100%;
}

.eventfnq1-item{
    border-bottom:1px solid rgba(0,0,0,0.08);
    padding:0;
}

/* button */

.eventfnq1-question{
    width:100%;
    background:none;
    border:none;
    outline:none;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:28px 0;
    text-align:left;
}

/* text */

.eventfnq1-question span{
    font-size:24px;
    line-height:1.5;
    color: #111111;
    font-weight:500;
    letter-spacing:-0.5px;
    transition:.3s ease;
}

/* plus icon */

.eventfnq1-icon{
    position:relative;
    min-width:18px;
    width:18px;
    height:18px;
}

.eventfnq1-icon::before,
.eventfnq1-icon::after{
    content:"";
    position:absolute;
    background:#111111;
    transition:.35s ease;
    border-radius:10px;
}

.eventfnq1-icon::before{
    width:18px;
    height:1.5px;
    top:50%;
    left:0;
    transform:translateY(-50%);
}

.eventfnq1-icon::after{
    width:1.5px;
    height:18px;
    left:50%;
    top:0;
    transform:translateX(-50%);
}

/* active */

.eventfnq1-item.active .eventfnq1-icon::after{
    opacity:0;
    transform:translateX(-50%) rotate(90deg);
}

.eventfnq1-item.active .eventfnq1-question span{
    color: #fd4621;
}

/* answer */

.eventfnq1-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .45s ease;
}

.eventfnq1-answer p{
    padding:0 0 28px;
    max-width:620px;
    font-size:14px;
    line-height:2;
    color: #666666;
    font-weight:400;
}

/* =========================================
RIGHT IMAGE
========================================= */

.eventfnq1-right{
    width:100%;
}

.eventfnq1-image{
    position:relative;
    width:100%;
    height:620px;
    border-radius:0px;
    overflow:hidden;
}

.eventfnq1-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* glass overlay */

.eventfnq1-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,0.22) 0%,
        rgba(255,255,255,0.06) 34%,
        transparent 35%
    );
    backdrop-filter:blur(1px);
}

/* =========================================
HOVER
========================================= */

.eventfnq1-item:hover .eventfnq1-question span{
    transform:translateX(6px);
}

/* =========================================
TABLET
========================================= */

@media(max-width:1200px){

    .eventfnq1-container{
        grid-template-columns:1fr;
        gap:60px;
    }

    .eventfnq1-image{
        height:600px;
    }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:768px){

    .eventfnq1{
        padding:80px 18px;
    }

    .eventfnq1-top{
        margin-bottom:35px;
    }

    .eventfnq1-top h2{
        font-size:38px;
        line-height:1.15;
        letter-spacing:-1.5px;
    }

    .eventfnq1-top p{
        font-size:13px;
        line-height:1.9;
    }

    .eventfnq1-question{
        padding:22px 0;
    }

    .eventfnq1-question span{
        font-size:17px;
        line-height:1.6;
    }

    .eventfnq1-answer p{
        font-size:13px;
        line-height:1.9;
    }

    .eventfnq1-image{
        height:420px;
    }

}


/* =========================================
FNQ SECTION END
========================================= */





/* =========================
TRAVEL EVENT CARDS
ULTRA MINIMAL PREMIUM
========================= */

.travelevent1-section{
    width:100%;
    padding: 50px 10px;
    background:#ffffff;
}

.travelevent1-container{
    max-width:1600px;
    margin:auto;
    margin-top: 30px;
}

/* =========================
GRID
========================= */

.travelevent1-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

/* =========================
CARD
========================= */

.travelevent1-card{
    position:relative;
    background:#ffffff;
    border:1px solid rgba(0,0,0,0.07);
    border-radius:18px;
    overflow:hidden;
    transition:.28s ease;
}

/* top line */

.travelevent1-accent{
    width:100%;
    height:2px;
    background:#ff5a2c;
    opacity:.9;
}

/* hover */

.travelevent1-card:hover{
    border-color:rgba(255,90,44,0.22);
    transform:translateY(-4px);
}

/* =========================
CONTENT
========================= */

.travelevent1-content{
    padding:24px;
}

/* =========================
TAG
========================= */

.travelevent1-tag{
    display:inline-block;
    font-size:10px;
    font-weight:600;
    letter-spacing:1.6px;
    text-transform:uppercase;
    color:#ff5a2c;
    margin-bottom:12px;
}

/* =========================
TITLE
========================= */

.travelevent1-content h3{
    font-size:20px;
    line-height:1.45;
    font-weight:600;
    color:#111111;
    margin-bottom:12px;
    letter-spacing:-0.3px;
}

/* =========================
DESC
========================= */

.travelevent1-content p{
    font-size:13px;
    line-height:1.8;
    color:#666666;
    margin-bottom:18px;
}

/* =========================
FEATURES
========================= */

.travelevent1-features{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:20px;
}

.travelevent1-features span{
    font-size:10px;
    font-weight:500;
    color:#444444;
    padding:7px 12px;
    border-radius:30px;
    background:#f8f8f8;
    border:1px solid rgba(0,0,0,0.05);
}

/* =========================
BOTTOM
========================= */

.travelevent1-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding-top:16px;
    border-top:1px solid rgba(0,0,0,0.06);
}

/* text */

.travelevent1-bottom span{
    font-size:11px;
    color:#888888;
    line-height:1.5;
}

/* button */

.travelevent1-bottom a{
    text-decoration:none;
    font-size:12px;
    font-weight:600;
    color:#111111;
    transition:.25s ease;
    white-space:nowrap;
}

.travelevent1-bottom a:hover{
    color:#ff5a2c;
}

/* =========================
TABLET
========================= */

@media(max-width:1100px){

    .travelevent1-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

    .travelevent1-section{
        padding:70px 16px;
    }

    .travelevent1-grid{
        grid-template-columns:1fr;
        gap:16px;
    }

    .travelevent1-content{
        padding:20px;
    }

    .travelevent1-content h3{
        font-size:18px;
        margin-bottom:10px;
    }

    .travelevent1-content p{
        font-size:12px;
        line-height:1.7;
        margin-bottom:16px;
    }

    .travelevent1-features{
        margin-bottom:18px;
    }

    .travelevent1-features span{
        font-size:9px;
        padding:6px 10px;
    }

    .travelevent1-bottom{
        gap:10px;
    }

    .travelevent1-bottom span{
        font-size:10px;
    }

    .travelevent1-bottom a{
        font-size:11px;
    }

}

/* =========================
SMALL MOBILE
========================= */

@media(max-width:480px){

    .travelevent1-content{
        padding:18px;
    }

    .travelevent1-content h3{
        font-size:17px;
    }

}










/* =========================
GLOBAL
========================= */

.eventexpmini{
    width:100%;
    padding:90px 24px;
    background:#fff;
    font-family: 'Poppins', sans-serif;
}

.eventexpmini-container{
    max-width:1600px;
    margin:auto;
}

/* =========================
GRID
========================= */

.eventexpmini-grid{
    display:grid;
    grid-template-columns:1.1fr 1fr 1fr 1fr;
    gap:18px;
    align-items:stretch;
}

/* =========================
LEFT INFO
========================= */

.eventexpmini-info{
    background:#111;
    border-radius:24px;
    padding:34px;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.eventexpmini-tag{
    font-size:11px;
    letter-spacing:1.5px;
    text-transform:uppercase;
    color:#ff7a4d;
    margin-bottom:18px;
    font-weight:600;
}

.eventexpmini-info h2{
    font-size:34px;
    line-height:1.2;
    margin-bottom:18px;
    font-weight:600;
    letter-spacing:-1px;
}

.eventexpmini-info p{
    font-size:13px;
    line-height:1.9;
    color:rgba(255,255,255,0.7);
    margin-bottom:28px;
}

.eventexpmini-info-btn{
    width:max-content;
    height:46px;
    padding:0 22px;
    background:#fff;
    color:#111;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:13px;
    font-weight:500;
    transition:.3s ease;
}

.eventexpmini-info-btn:hover{
    transform:translateY(-2px);
}

/* =========================
CARDS
========================= */

.eventexpmini-card{
    position:relative;
    background:#fff;
    border:1px solid rgba(0,0,0,0.07);
    border-radius:24px;
    padding:30px;
    transition:.3s ease;
}

.eventexpmini-card:hover{
    transform:translateY(-5px);
    border-color:rgba(255,90,44,0.2);
}

.eventexpmini-card.active{
    border-color:rgba(255,90,44,0.3);
    background:linear-gradient(
        180deg,
        rgba(255,90,44,0.03),
        #fff
    );
}

/* badge */

.eventexpmini-badge{
    position:absolute;
    top:16px;
    right:16px;
    background:#ff5a2c;
    color:#fff;
    font-size:9px;
    padding:7px 10px;
    border-radius:30px;
    letter-spacing:1px;
    text-transform:uppercase;
    font-weight:600;
}

/* label */

.eventexpmini-label{
    display:inline-block;
    font-size:10px;
    letter-spacing:1.5px;
    text-transform:uppercase;
    color:#ff5a2c;
    margin-bottom:14px;
    font-weight:600;
}

/* title */

.eventexpmini-card h3{
    font-size:22px;
    line-height:1.3;
    margin-bottom:18px;
    color:#111;
    font-weight:600;
}

/* price */

.eventexpmini-price{
    font-size:42px;
    font-weight:700;
    line-height:1;
    letter-spacing:-2px;
    color:#111;
    margin-bottom:24px;
}

.eventexpmini-price span{
    font-size:13px;
    color:#777;
    font-weight:500;
    letter-spacing:0;
}

/* list */

.eventexpmini-card ul{
    list-style:none;
    padding:0;
    margin:0 0 28px;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.eventexpmini-card ul li{
    position:relative;
    padding-left:18px;
    font-size:13px;
    color:#555;
}

.eventexpmini-card ul li::before{
    content:"";
    position:absolute;
    left:0;
    top:8px;
    width:5px;
    height:5px;
    border-radius:50%;
    background:#ff5a2c;
}

/* button */

.eventexpmini-btn{
    width:100%;
    height:48px;
    border:1px solid rgba(0,0,0,0.08);
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#111;
    font-size:13px;
    font-weight:500;
    transition:.3s ease;
}

.eventexpmini-btn:hover{
    border-color:#ff5a2c;
    color:#ff5a2c;
}

.eventexpmini-btn.dark{
    background:#111;
    color:#fff;
    border:none;
}

.eventexpmini-btn.dark:hover{
    background:#000;
}

/* =========================
TABLET
========================= */

@media(max-width:1200px){

    .eventexpmini-grid{
        grid-template-columns:1fr 1fr;
    }

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

    .eventexpmini{
        padding:70px 16px;
    }

    .eventexpmini-grid{
        grid-template-columns:1fr;
    }

    .eventexpmini-info,
    .eventexpmini-card{
        padding:24px;
    }

    .eventexpmini-info h2{
        font-size:28px;
    }

    .eventexpmini-card h3{
        font-size:20px;
    }

    .eventexpmini-price{
        font-size:34px;
    }

}






/* ==========================================
EVENT EXPEDITION - PREMIUM GLASS BOOKING FORM
========================================== */

.ee-booking-section{
    width:100%;
    position:relative;
    z-index:50;
    margin-top:-70px;
    padding:0 20px;
}

/* Glow Effect */

.ee-booking-section::before{
    content:"";
    position:absolute;
    left:50%;
    top:50%;

    width:600px;
    height:250px;

    transform:translate(-50%,-50%);

    background:
    radial-gradient(
        rgba(254,109,44,.18),
        transparent 70%
    );

    filter:blur(60px);
    z-index:-1;
}

/* Main Card */

.ee-booking-wrap{

    max-width:1350px;
    margin:auto;

    position:relative;
    overflow:hidden;

    padding:18px;

    border-radius:30px;

    background:
    rgba(255,255,255,.18);

    backdrop-filter:
    blur(30px)
    saturate(180%);

    -webkit-backdrop-filter:
    blur(30px)
    saturate(180%);

    border:
    1px solid rgba(255,255,255,.45);

    box-shadow:
    0 8px 32px rgba(31,38,135,.12),
    inset 0 1px 1px rgba(255,255,255,.45);
}

/* Top Glass Shine */

.ee-booking-wrap::before{

    content:"";

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.25),
        rgba(255,255,255,.05)
    );

    pointer-events:none;
}

/* Form Grid */

.ee-booking-form{

    display:grid;

    grid-template-columns:
    1fr
    1fr
    1.2fr
    1fr
    auto;

    gap:14px;

    align-items:center;
}

/* ==========================
FIELDS
========================== */

.ee-field{
    position:relative;
}

/* Icon */

.ee-field i{

    position:absolute;

    left:11px;
    top:50%;

    transform:translateY(-50%);

    width:30px;
    height:30px;

    border-radius:10px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    rgba(255,255,255,.55);

    backdrop-filter:blur(12px);

    border:
    1px solid rgba(255,255,255,.5);

    color:#fe6d2c;

    font-size:13px;

    z-index:5;
}

/* Inputs */

.ee-field input,
.ee-field select{

    width:100%;
    height:50px;

    border-radius:30px;

    border:
    1px solid rgba(255,255,255,.4);

    background:
    rgba(255,255,255,.28);

    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    padding-left:52px;
    padding-right:18px;

    font-size:14px;
    font-weight:500;

    color:#222;

    outline:none;

    transition:.35s ease;
}

.ee-field input::placeholder{
    color:#777;
}

/* Hover */

.ee-field input:hover,
.ee-field select:hover{

    background:
    rgba(255,255,255,.42);

    border-color:
    rgba(255,255,255,.65);
}

/* Focus */

.ee-field input:focus,
.ee-field select:focus{

    background:
    rgba(255,255,255,.55);

    border-color:#fe6d2c;

    box-shadow:
    0 0 0 4px rgba(254,109,44,.10);
}

.ee-field select{
    appearance:none;
    cursor:pointer;
}

/* Select Arrow */

.ee-field:has(select)::after{

    content:"\f078";

    font-family: 'Poppins', sans-serif;
    font-weight:900;

    position:absolute;

    right:18px;
    top:50%;

    transform:translateY(-50%);

    color:#888;

    font-size:11px;

    pointer-events:none;
}

/* ==========================
BUTTON
========================== */

.ee-btn{

    height: 50px;

    padding:0 28px;

    border:none;

    border-radius: 30px;

    background: #fd4621;
    color:#fff;

    font-size:14px;
    font-weight:600;

    letter-spacing:.2px;

    cursor:pointer;

    transition:.35s;

    white-space:nowrap;

    box-shadow:
    0 10px 25px rgba(254,109,44,.35);
}

.ee-btn:hover{

    transform:
    translateY(-3px);

    box-shadow:
    0 15px 35px rgba(254,109,44,.45);
}

/* ==========================
LAPTOP
========================== */

@media(max-width:1100px){

    .ee-booking-form{
        grid-template-columns:
        repeat(2,1fr);
    }

    .ee-btn{
        width:100%;
        grid-column:span 2;
    }
}

/* ==========================
TABLET
========================== */

@media(max-width:768px){

    .ee-booking-section{
        margin-top:-40px;
        padding:0 14px;
    }

    .ee-booking-wrap{
        padding:15px;
        border-radius:24px;
    }

    .ee-booking-form{
        grid-template-columns:1fr;
        gap:12px;
    }

    .ee-field input,
    .ee-field select{
        height:50px;
        border-radius: 20px;
        font-size:14px;
    }

    .ee-btn{
        width:100%;
        height:50px;
        border-radius: 20px;
    }
}

/* ==========================
MOBILE PERFECT UI
========================== */

@media(max-width:768px){

    .ee-booking-section{
        margin-top:-35px;
        padding:0 12px;
    }

    .ee-booking-wrap{
        padding:12px;
        border-radius:22px;
    }

    .ee-booking-form{

        display:grid;

        grid-template-columns:
        repeat(2,minmax(0,1fr));

        gap:10px;
    }

    .ee-field{
        width:100%;
        min-width:0;
    }

    .ee-field input,
    .ee-field select{

        width:100%;
        height:48px;

        border-radius:14px;

        padding-left:42px;
        padding-right:12px;

        font-size:13px;

        min-width:0;
    }

    .ee-field i{

        width:24px;
        height:24px;

        left:10px;

        font-size:11px;

        border-radius:8px;
    }

    /* button full width */

    .ee-btn{

        grid-column:1 / -1;

        width:100%;

        height:50px;

        border-radius:14px;

        font-size:14px;

        margin-top:2px;
    }
}


/* ==========================================
EVENT EXPEDITION - PREMIUM GLASS BOOKING FORM END
========================================== */







/* =========================
  SLIDER PREMIUM FEATURES SECTION START
========================= */

.ib-features-section{
    width:100%;
    padding: 40px 14px;
    background:transparent;
}

/* WRAPPER */

.ib-features-wrap{
    max-width:1600px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    background:#fff;

    border:1px solid #f4f2f1;
    border-radius:24px;

    overflow:hidden;
}

/* CARD */

.ib-feature-card{
    position:relative;

    padding:34px 28px;

    transition:all .28s ease;

    background:#fff;
}

/* DIVIDER */

.ib-feature-card:not(:last-child)::after{
    content:"";
    position:absolute;

    top:50%;
    right:0;

    width:1px;
    height:60%;

    transform:translateY(-50%);

    background: #ffffff;
}

/* HOVER */

.ib-feature-card:hover{
    background: #fcfcff;
}

/* INNER */

.ib-feature-top{
    display:flex;
    align-items:flex-start;
    gap:18px;
}

/* ICON */

.ib-feature-icon{
    width:58px;
    height:58px;

    min-width:58px;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
        180deg,
        rgba(231, 130, 62, 0.1),
        rgba(231, 96, 62, 0.04)
    );

    border:1px solid rgba(231, 115, 62, 0.08);
}

/* ICON IMAGE */

.ib-feature-icon img{
    width:26px;
    height:26px;
    object-fit:contain;
}

/* CONTENT */

.ib-feature-content h3{
    font-size:18px;
    font-weight:700;

    line-height:1.35;

    color:#111827;

    margin:0 0 8px;
}

/* TEXT */

.ib-feature-content p{
    font-size:14px;
    line-height:1.75;

    color: #6b7280;

    margin:0;

    max-width:260px;
    font-family: 'Poppins', sans-serif;
}

/* =========================
   TABLET
========================= */

@media(max-width:1100px){

    .ib-features-wrap{
        grid-template-columns:repeat(2,1fr);
    }

    .ib-feature-card:nth-child(2)::after{
        display:none;
    }

    .ib-feature-card:nth-child(1),
    .ib-feature-card:nth-child(2){
        border-bottom:1px solid #f1f1f4;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .ib-features-section{
        padding:16px 10px;
    }

    .ib-features-wrap{
        grid-template-columns:repeat(2,1fr);
        border-radius:18px;
    }

    .ib-feature-card{
        padding:18px 14px;
    }

    .ib-feature-top{
        flex-direction:column;
        gap:12px;
    }

    .ib-feature-icon{
        width:46px;
        height:46px;
        min-width:46px;

        border-radius:14px;
    }

    .ib-feature-icon img{
        width:20px;
        height:20px;
    }

    .ib-feature-content h3{
        font-size:14px;
        margin-bottom:5px;
    }

    .ib-feature-content p{
        font-size:11px;
        line-height:1.6;
    }

    .ib-feature-card::after{
        display:none;
    }

    .ib-feature-card:nth-child(1),
    .ib-feature-card:nth-child(2){
        border-bottom:1px solid #f1f1f4;
    }

    .ib-feature-card:nth-child(odd){
        border-right:1px solid #f1f1f4;
    }

}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:430px){

    .ib-feature-card{
        padding:16px 12px;
    }

    .ib-feature-content h3{
        font-size:13px;
    }

    .ib-feature-content p{
        font-size:10.5px;
    }

}


/* =========================
  SLIDER PREMIUM FEATURES SECTION END
========================= */