* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    background: #ffffff;
    
}


/* ==== HEADER START==== */
body.no-scroll {
  overflow: hidden;
}

/* Header wrapper */
.plinfo-header-wrapper {
  width: 100%;
  position: fixed;
  top: 0;  
  left: 0;
  z-index: 1000;
  background: #ffffff;
}

/* Header inner */
.plinfo-header {
  max-width: 1650px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
}

.plinfo-left {
  display: flex;
  align-items: center;
  gap: 450px;
}

.plinfo-logo img {
  height: 40px;
}

/* Desktop Nav */
.plinfo-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.plinfo-nav > div {
  position: relative;
}

.plinfo-nav a {
  text-decoration: none;
  color: #0a2043;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
}

.plinfo-nav a i {
  margin-left: 5px;
}

.plinfo-nav a:hover {
  color: #388570  ;
}

/* 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: #388570  ;
  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: #ce973f;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.5s ease;
}

.plinfo-contact-btn:hover {
  background-color: #1F2937;
}

/* Toggle Menu Icon */
.plinfo-menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: #1F2937;
}

.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: #388570  ;
}

/* 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: #388570  ;
}

.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: #388570  ;
}

.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: #388570  ;
}

.plinfo-mobile-menu .plinfo-contact-btn {
  background: transparent;
  border: 1px solid #388570  ;
  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: #388570  ;
  color: #fff;
}

.plinfo-close-toggle {
  display: block;
  font-size: 20px;
  cursor: pointer;
  color: #fff;
  background-color: #388570  ;
  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: #388570  ;
  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;
  }
}


/* ====  Top header menu ==== */
.webzardtophader {
  background: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  border-top: 1px solid #388570;    /* ✅ Light top border */
  border-bottom: 1px solid #388570; /* ✅ Light bottom border */
}
.webzardtophader .container {
  max-width: 1630px;
  margin: 0 auto;
  padding: 6px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.webzardtophader .left {
  display: flex;
}
.webzardtophader .left a {
  text-decoration: none;
}
.webzardtophader .menu-item {
  margin-right: 10px;
  color: #000;
  font-weight: 500;
}
.webzardtophader .right a {
  margin-left: 15px;
  color: #5c5d5f;
  text-decoration: none;
}
.webzardtophader .left a:hover .menu-item {
  text-decoration: underline;
}
/* 🔽 Mobile Responsive */
@media (max-width: 768px) {
  .webzardtophader .container {
    flex-direction: column;
    align-items: stretch;
    padding: 4px 8px;
  }
  .webzardtophader .right {
    display: none;
  }

  .webzardtophader .left {
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: transparent;
    border-radius: 4px;
    padding: 4px 6px;
  }

  .webzardtophader .menu-item {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
  }
}


/* ==== HEADER END ==== */





/* =========================
HERO SECTION START
========================= */

.eventhero111-section{
    position:relative;
    width:100%;
    overflow:hidden;
}

/* =========================
SWIPER
========================= */

.eventHeroSwiper{
    width:100%;
    height: 720px;
}

/* =========================
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 */

/* =========================
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:8%;
    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
========================= */




/* BUSINESS SEGMENT START */

*{
    margin:20px;
    padding:0;
    box-sizing:border-box;
}

.business-segments{
    padding:100px 20px;
    background:#ffffff;
}

.business-segments .container{
    max-width:1600px;
    margin:auto;
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading .sub-title{
    display:block;
    font-size:14px;
    font-weight:700;
    color:#388570;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:12px;
}

.section-heading h2{
    font-size:42px;
    font-weight:600;
    line-height:1.2;
    color:#0d2d52;
}

.segments-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    background:#fff;
    border:1px solid #e7e7e7;
    border-radius:20px;
    overflow:hidden;
}

.segment-card{
    display:flex;
    align-items:flex-start;
    gap:24px;
    padding:45px;
    transition:all .35s ease;
}

.segment-card:not(:last-child){
    border-right:1px solid #e7e7e7;
}

.segment-card:hover{
    background:#fafcfd;
}

.segment-icon{
    flex-shrink:0;
}

.segment-icon img{
    width:75px;
    height:75px;
    object-fit:contain;
}

.segment-content h3{
    font-size:24px;
    font-weight:700;
    color:#0d2d52;
    margin-bottom:14px;
}

.segment-content p{
    font-size:15px;
    line-height:1.9;
    color:#66788a;
    margin-bottom:22px;
}

.learn-more{
    display:inline-flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    color:#388570;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.learn-more i{
    font-size:13px;
    transition:.3s;
}

.learn-more:hover{
    color:#0d2d52;
}

.learn-more:hover i{
    transform:translateX(5px);
}

@media(max-width:991px){

    .segments-grid{
        grid-template-columns:1fr;
    }

    .segment-card:not(:last-child){
        border-right:none;
        border-bottom:1px solid #eef2f5;
    }

    .section-heading h2{
        font-size:34px;
    }
}

@media(max-width:576px){

    .business-segments{
        padding:70px 15px;
    }

    .segment-card{
        flex-direction:column;
        padding:30px;
    }

    .section-heading h2{
        font-size:28px;
    }

    .segment-content h3{
        font-size:22px;
    }

    .segment-icon img{
        width:65px;
        height:65px;
    }
}

/* BUSINESS SEGMENT END */


/* CATEGORY SECTION START */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.product-categories{
    padding:80px 20px;
    background:transparent;
}

.product-categories .container{
    max-width:1620px;
    margin:auto;
}

/* Section Heading */

.section-title{
    text-align:center;
    max-width:900px;
    margin:0 auto 70px;
}

.section-title span{
    display:inline-block;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#388570;
    position:relative;
    margin-bottom:18px;
}

.section-title h2{
    font-size:42px;
    font-weight:800;
    line-height:1.1;
    color:#0a2f4e;
    margin-bottom:20px;
}

.section-title p{
    font-size:16px;
    line-height:1.8;
    color:#64748b;
}

/* Grid - 2 Cards Per Row */

.categories-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

/* Card */

.category-card{
    position:relative;
    height:500px;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 15px 50px rgba(0,0,0,.08);
    transition:.4s ease;
}



.card-bg{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.8s ease;
}


/* Overlay */

.card-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(0,0,0,.05) 0%,
        rgba(0,0,0,.15) 40%,
        rgba(0,0,0,.85) 100%
    );
}

/* Content */

.card-content{
    position:absolute;
    left:40px;
    right:40px;
    bottom:40px;
    z-index:2;
}

.card-icon{
    width:90px;
    height:90px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(12px);
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.25);
    margin-bottom:25px;
}

.card-icon img{
    width:45px;
    height:45px;
    object-fit:contain;
}

.card-content h3{
    font-size:36px;
    line-height:1.1;
    font-weight:600;
    color:#fff;
    margin-bottom:20px;
}

.card-content h3 span{
    display:block;
    color:#f2b544;
}

.card-content p{
    color:rgba(255,255,255,.90);
    font-size:17px;
    line-height:1.8;
    margin-bottom:30px;
    max-width:450px;
}

.category-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    padding:14px 22px;
    border-radius:60px;
    background:#388570;
    color:#fff;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.category-btn:hover{
    background:#fff;
    color:#0a2f4e;
}

.category-btn i{
    transition:.3s;
}


/* Tablet */

@media(max-width:1024px){

    .categories-grid{
        grid-template-columns:1fr;
    }

    .category-card{
        height:450px;
    }

    .section-title h2{
        font-size:38px;
    }

    .card-content h3{
        font-size:32px;
    }

}

/* Mobile */

@media(max-width:768px){

    .product-categories{
        padding:60px 15px;
    }

    .section-title{
        margin-bottom:50px;
    }

    .section-title h2{
        font-size:32px;
    }

    .section-title p{
        font-size:15px;
    }

    .category-card{
        height:380px;
        border-radius:22px;
    }

    .card-content{
        left:25px;
        right:25px;
        bottom:25px;
    }

    .card-content h3{
        font-size:28px;
    }

    .card-content p{
        font-size:14px;
        margin-bottom:20px;
    }

    .card-icon{
        width:70px;
        height:70px;
        margin-bottom:18px;
    }

    .card-icon img{
        width:35px;
        height:35px;
    }

}

/* CATEGORY SECTION END */


/* PRODUCTS SECTION START */

.products-section{
    padding:100px 20px;
    background: transparent;
    font-family:'Inter',sans-serif;
}

.products-section .container{
    max-width:1600px;
    margin:auto;
}

.section-title{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
}

.title-icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#eef7f2;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}

.title-icon:before,
.title-icon:after{
    content:"";
    position:absolute;
    width:180px;
    height:1px;
    background:#dfe9e5;
    top:50%;
}

.title-icon:before{
    right:100%;
    margin-right:25px;
}

.title-icon:after{
    left:100%;
    margin-left:25px;
}

.title-icon i{
    color:#0b6a58;
    font-size:28px;
}

.section-title h2{
    font-size: 42px;
    font-weight: 700;
    color:#005847;
    margin-bottom:15px;
}

.section-title p{
    color:#667085;
    font-size:16px;
    line-height:1.8;
}

/* Cards */

.products-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap: 10px;
}

.product-card{
    background: transparent;
    border-radius: 0px;
    overflow:hidden;
    border:1px solid #e9e9e9;
    transition:.4s ease;
}


.product-image{
    height:320px;
    overflow:hidden;
    background:#f3f7f6;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.product-card:hover img{
    transform:scale(1.05);
}

.product-content{
    padding:28px;
}

.card-line{
    display:block;
    width:45px;
    height:3px;
    background:#46a85a;
    border-radius:20px;
    margin-bottom:18px;
}

.product-content h3{
    font-size: 24px;
    font-weight:700;
    color:#111827;
    margin-bottom:15px;
}

.product-bottom{
    display:flex;
    justify-content:space-between;
    gap:20px;
    align-items:flex-end;
}

.product-bottom p{
    font-size:15px;
    color:#667085;
    line-height:1.8;
    flex:1;
}

.product-btn{
    width:54px;
    height:54px;
    min-width:54px;
    border-radius:50%;
    border:2px solid #cfe4d6;
    color:#005847;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.3s;
}

.product-btn:hover{
    background:#005847;
    color:#fff;
    border-color:#005847;
}

/* Tablet */

@media(max-width:1200px){

    .products-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-title h2{
        font-size:48px;
    }
}

/* Mobile */

@media(max-width:768px){

    .products-section{
        padding:70px 15px;
    }

    .products-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .section-title h2{
        font-size:36px;
    }

    .section-title p{
        font-size:15px;
    }

    .title-icon{
        width:55px;
        height:55px;
    }

    .title-icon:before,
    .title-icon:after{
        width:70px;
    }

    .product-image{
        height:240px;
    }

    .product-content h3{
        font-size:24px;
    }

    .product-bottom p{
        font-size:13px;
    }

    .product-btn{
        width:46px;
        height:46px;
        min-width:46px;
    }
}

/* PRODUCTS SECTION END */




/* STAT SECTION START */

.stats-section{
    padding:40px 20px;
    font-family:'Inter',sans-serif;
}

.stats-section .container{
    max-width:1600px;
    margin:auto;
}

.stats-grid{
    background:linear-gradient(135deg, #c8984d, #c8984d);
    border-radius:24px;
    padding:25px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.stat-card{
    display:flex;
    align-items:center;
    gap:18px;
    padding:22px;
    border-radius:18px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    transition:.35s;
}

.stat-card:hover{
    transform:translateY(-5px);
    background:rgba(255,255,255,.08);
}

.stat-icon{
    width:70px;
    height:70px;
    min-width:70px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.15);
    background:rgba(255,255,255,.05);
    display:flex;
    align-items:center;
    justify-content:center;
}

.stat-icon img{
    width:34px;
    height:34px;
    object-fit:contain;
    filter:brightness(0) invert(1);
}

.stat-content h3{
    color: #f7f7f7;
    font-size:36px;
    font-weight:800;
    line-height:1;
    margin-bottom:8px;
}

.stat-content h4{
    color:#fff;
    font-size:18px;
    font-weight:600;
    margin-bottom:5px;
}

.stat-content p{
    color:rgba(255,255,255,.75);
    font-size:14px;
    line-height:1.5;
}

/* Tablet */
@media(max-width:1200px){

    .stats-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

/* Mobile */
@media(max-width:768px){

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
        padding:15px;
        gap:15px;
    }

    .stat-card{
        flex-direction:column;
        text-align:center;
        padding:20px 15px;
    }

    .stat-content h3{
        font-size:28px;
    }

    .stat-content h4{
        font-size:16px;
    }
}

/* Small Mobile */
@media(max-width:480px){

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .stat-icon{
        width:60px;
        height:60px;
        min-width:60px;
    }

    .stat-icon img{
        width:28px;
        height:28px;
    }

    .stat-content h3{
        font-size:24px;
    }

    .stat-content h4{
        font-size:14px;
    }

    .stat-content p{
        font-size:12px;
    }
}


/* STAT SECTION END */



/* FAQ SECTION START */

.faq-section{
    padding:90px 0;
    background:#fafcfb;
    font-family:'Inter',sans-serif;
}

.faq-container{
    max-width:1600px;
    margin:auto;
    padding:0 20px;
}

/* Heading */

.section-title{
    text-align:center;
    max-width:850px;
    margin:0 auto 55px;
}

.section-title span{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-size:13px;
    font-weight:600;
    color:#388570;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:14px;
}

.section-title span::before{
    content:"";
    width:35px;
    height:2px;
    background:#388570;
    border-radius:10px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    color:#0f172a;
    line-height:1.2;
    margin-bottom:15px;
}

.section-title p{
    font-size:16px;
    color:#64748b;
    line-height:1.8;
}

/* FAQ Grid */

.faq-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

/* FAQ Card */

.faq-item{
    background:#fff;
    border:1px solid #edf2f7;
    border-radius:16px;
    overflow:hidden;
    transition:.3s ease;
}

.faq-item:hover{
    border-color:#dbe8e2;
    box-shadow:0 8px 25px rgba(0,0,0,.04);
}

.faq-item.active{
    border-color:#388570;
}

/* Question */

.faq-question{
    width:100%;
    border:none;
    background:none;
    padding:24px 26px;
    text-align:left;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;

    font-size:17px;
    font-weight:600;
    color:#1e293b;
    transition:.3s;
}

.faq-question:hover{
    color:#388570;
}

/* Icon */

.faq-question i{
    width:34px;
    height:34px;
    min-width:34px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    background:#f3f8f5;
    color:#388570;
    font-size:12px;
    transition:.3s;
}

.faq-item.active .faq-question i{
    background:#388570;
    color:#fff;
    transform:rotate(180deg);
}

/* Answer */

.faq-answer{
    display:none;
    padding:0 26px 24px;
    color:#64748b;
    font-size:15px;
    line-height:1.9;
}

.faq-item.active .faq-answer{
    display:block;
}

/* Tablet */

@media(max-width:991px){

    .faq-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:38px;
    }
}

/* Mobile */

@media(max-width:768px){

    .faq-section{
        padding:70px 0;
    }

    .faq-container{
        padding:0 15px;
    }

    .section-title{
        margin-bottom:40px;
    }

    .section-title h2{
        font-size:30px;
    }

    .section-title p{
        font-size:14px;
    }

    .faq-question{
        padding:18px 20px;
        font-size:15px;
    }

    .faq-answer{
        padding:0 20px 18px;
        font-size:14px;
    }

    .faq-question i{
        width:28px;
        height:28px;
        min-width:28px;
        font-size:10px;
    }
}

/* FAQ SECTION END */


/* WHY CHOOSE US START */

.why-choose-us{
    padding:80px 20px;
    background:#fff;
    font-family:'Inter',sans-serif;
}

.why-choose-us .container{
    max-width:1600px;
    margin:auto;
}

.why-wrapper{
    display:grid;
    grid-template-columns:46% 54%;
    gap:60px;
    align-items:center;
}

.why-image{
    border-radius:24px;
    overflow:hidden;
}

.why-image img{
    width:100%;
    display:block;
    border-radius:24px;
}

/* Heading */

.section-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-size:12px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#d29a1b;
    margin-bottom:15px;
}

.section-tag::before{
    content:"";
    width:35px;
    height:2px;
    background:#d29a1b;
    border-radius:20px;
}

.why-content h2{
    font-size:46px;
    line-height:1.15;
    font-weight:700;
    color:#005847;
    margin-bottom:18px;
}

.why-content h2 span{
    color:#d29a1b;
}

.section-desc{
    font-size:15px;
    line-height:1.9;
    color:#667085;
    margin-bottom:28px;
    max-width:750px;
}

/* Features */

.feature-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

.feature-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:16px;
    border:1px solid #edf2f7;
    border-radius:12px;
    background:#fff;
    transition:.3s ease;
}

.feature-item:hover{
    border-color:#dfe9e4;
    box-shadow:0 8px 20px rgba(0,0,0,.04);
}

.feature-icon{
    width:22px;
    height:22px;
    min-width:22px;
    border-radius:50%;
    background:#005847;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top:2px;
}

.feature-icon i{
    font-size:9px;
}

.feature-text h4{
    font-size:14px;
    font-weight:600;
    color:#005847;
    margin-bottom:4px;
    line-height:1.4;
}

.feature-text p{
    font-size:12px;
    line-height:1.7;
    color:#667085;
    margin:0;
}

/* Tablet */

@media(max-width:1200px){

    .why-wrapper{
        grid-template-columns:1fr;
        gap:40px;
    }

    .why-content h2{
        font-size:40px;
    }
}

/* Mobile */

@media(max-width:768px){

    .why-choose-us{
        padding:60px 15px;
    }

    .why-wrapper{
        gap:30px;
    }

    .why-content h2{
        font-size:32px;
    }

    .section-desc{
        font-size:14px;
        margin-bottom:20px;
    }

    .feature-list{
        grid-template-columns:repeat(2,1fr);
        gap:10px;
    }

    .feature-item{
        padding:12px;
        border-radius:10px;
    }

    .feature-icon{
        width:18px;
        height:18px;
        min-width:18px;
    }

    .feature-icon i{
        font-size:8px;
    }

    .feature-text h4{
        font-size:12px;
    }

    .feature-text p{
        font-size:10px;
        line-height:1.5;
    }
}

/* Extra Small */

@media(max-width:480px){

    .why-content h2{
        font-size:28px;
    }

    .feature-list{
        gap:8px;
    }

    .feature-item{
        padding:10px;
    }

    .feature-text h4{
        font-size:11px;
    }

    .feature-text p{
        font-size:9px;
    }
}

/* WHY CHOOSE US END */





/* ========= DESTINATION START ========= */

.eventexpvison {
    width: 100%;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

/* TOP DARK SECTION */
.eventexpvison-top {
    background: #388570;
    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: #fcfcfc;
    font-size: 14px;
}

.eventexpvison-left h2 {
    font-size: 42px;
    margin-top: 15px;
    line-height: 1.3;
}

.eventexpvison-left h2 span {
    color: #e4e4e4;
}

/* RIGHT */
.eventexpvison-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.eventexpvison-right p {
    color: #f0f0f0;
    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: 120px;
}

/* 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 ========= */




.quality-assurance{
    padding:90px 20px;
    background: transparent;
    font-family:'Inter',sans-serif;
}

.quality-assurance .container{
    max-width:1600px;
    margin:auto;
}

.section-heading{
    max-width:850px;
    margin:0 auto 55px;
    text-align: center;
}

.sub-title{
    display:inline-block;
    font-size:13px;
    font-weight: 700;
    color:#d49a1d;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.section-heading h2{
    font-size:42px;
    font-weight: 700;
    line-height:1.1;
    color: #0a2f4e;
    margin-bottom:20px;
}

.section-heading h2 span{
    color:#d49a1d;
}

.section-heading p{
    font-size:16px;
    line-height:1.8;
    color:#5b6470;
}

.qa-grid{
    background:#fff;
    border:1px solid #e8edf2;
    border-radius:24px;
    overflow:hidden;
    display:grid;
    grid-template-columns:repeat(6,1fr);
}

.qa-card{
    padding:35px 22px;
    text-align:center;
    border-right:1px solid #edf2f7;
    transition:.3s;
}

.qa-card:last-child{
    border-right:none;
}

.qa-card:hover{
    background:#fafcfd;
}

.qa-icon{
    width:90px;
    height:90px;
    margin:0 auto 18px;
    border-radius:50%;
    background:#f4f8f7;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #dfe8e5;
}

.qa-icon img{
    width: 120px;
    height:120px;
    object-fit:contain;
}

.qa-card h3{
    font-size:18px;
    font-weight:700;
    line-height:1.4;
    color:#005847;
    margin-bottom:10px;
}

.qa-card p{
    font-size:13px;
    line-height:1.8;
    color:#667085;
}

/* Tablet */
@media(max-width:1200px){

    .qa-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .qa-card:nth-child(3){
        border-right:none;
    }

    .qa-card:nth-child(-n+3){
        border-bottom:1px solid #edf2f7;
    }

}

/* Mobile */
@media(max-width:768px){

    .quality-assurance{
        padding:70px 15px;
    }

    .section-heading h2{
        font-size:36px;
    }

    .qa-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .qa-card{
        padding:18px 10px;
    }

    .qa-icon{
        width:55px;
        height:55px;
        margin-bottom:10px;
    }

    .qa-icon img{
        width:65px;
        height:65px;
    }

    .qa-card h3{
        font-size:12px;
        margin-bottom:5px;
    }

    .qa-card p{
        font-size:10px;
        line-height:1.5;
    }
}





/* ==========================
   BREADCRUMB BANNER
========================== */

.breadcrumb-banner{
    position:relative;
    overflow:hidden;
    height:480px;
    display:flex;
    align-items:center;
}

.banner-img{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.mobile-banner{
    display:none;
}

/* Optional Overlay */

.banner-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.25);
    z-index:1;
}

.breadcrumb-banner .container{
    position:relative;
    z-index:2;
    width:100%;
    max-width:1620px;
    margin:auto;
    padding:0 0px;
}

.breadcrumb-content{
    max-width:1000px;
}

.breadcrumb-content h1{
    color:#fff;
    font-size:58px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:20px;
}

.breadcrumb-desc{
    color:#fff;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
    max-width:600px;
}

.breadcrumb-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 40px;
    border:2px solid #fff;
    background:transparent;
    border-radius: 30px;
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:all .3s ease;
}

.breadcrumb-btn:hover{
    background:#fff;
    color:#000;
}

/* ==========================
   TABLET
========================== */

@media(max-width:992px){

    .breadcrumb-banner{
        height:500px;
    }

    .breadcrumb-content h1{
        font-size:46px;
    }

}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .breadcrumb-banner{
        height:420px;
    }

    .desktop-banner{
        display:none;
    }

    .mobile-banner{
        display:block;
    }

    .breadcrumb-banner .container{
        padding:0 20px;
    }

    .breadcrumb-content{
        max-width:100%;
        text-align:center;
    }

    .breadcrumb-content h1{
        font-size:34px;
        margin-bottom:15px;
    }

    .breadcrumb-desc{
        font-size:15px;
        line-height:1.7;
        margin-bottom:25px;
    }

    .breadcrumb-btn{
        padding:12px 30px;
        font-size:15px;
    }

}










/*  ABOUT INTRO  */

.about-intro{
    padding:70px 20px;
    background:#fff;
    font-family:'Inter',sans-serif;
}

.about-intro .container{
    max-width:1600px;
    margin:auto;
}

.intro-content{
    max-width:1400px;
}

.section-tag{
    display:inline-flex;
    align-items:center;
    gap:12px;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#d39a1d;
    margin-bottom:18px;
}

.section-tag::before{
    content:"";
    width:45px;
    height:2px;
    background:#d39a1d;
    border-radius:20px;
}

.intro-content h1{
    font-size:54px;
    line-height:1.15;
    font-weight:700;
    color:#005847;
    margin-bottom:20px;
    letter-spacing:-1px;
}

.intro-content h1 span{
    color:#d39a1d;
}

.intro-content p{
    font-size:17px;
    line-height:1.9;
    color:#667085;
    max-width:1400px;
    margin:0;
}

/* Tablet */

@media(max-width:991px){

    .about-intro{
        padding:60px 20px;
    }

    .intro-content h1{
        font-size:42px;
    }

    .intro-content p{
        font-size:16px;
    }
}

/* Mobile */

@media(max-width:768px){

    .about-intro{
        padding:50px 15px;
    }

    .section-tag{
        font-size:11px;
        letter-spacing:1.5px;
        margin-bottom:14px;
    }

    .section-tag::before{
        width:30px;
    }

    .intro-content h1{
        font-size:30px;
        line-height:1.25;
        margin-bottom:15px;
    }

    .intro-content p{
        font-size:14px;
        line-height:1.8;
    }
}








/* ==========================
   FOOTER CTA START
========================== */

.footer-cta{
    position:relative;
    padding:90px 20px;
    overflow:hidden;
    font-family:'Inter',sans-serif;

    background:url('../images/banner/footer-banner.jpg') center center;
    background-size:cover;
    background-repeat:no-repeat;
}

.footer-cta .container{
    max-width:1600px;
    margin:auto;
}

/* Overlay */

.cta-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.25),
        rgba(255, 255, 255, 0.2)
    );
}

/* Content */

.footer-cta-content{
    position:relative;
    z-index:2;

    max-width:900px;
    margin:auto;
    text-align:center;
}

/* Tag */

.cta-tag{
    display:inline-flex;
    align-items:center;
    gap:12px;

    color:#006b59;
    font-size:12px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;

    margin-bottom:18px;
}

.cta-tag::before,
.cta-tag::after{
    content:"";
    width:45px;
    height:2px;
    border-radius:20px;
    background:#d59a1d;
}

/* Heading */

.footer-cta-content h2{
    font-size: 62px;
    line-height:1.1;
    font-weight: 700;
    color:#005847;
    margin-bottom:18px;
}

.footer-cta-content h2 span{
    display:block;
    color:#d59a1d;
}

/* Description */

.footer-cta-content p{
    max-width:700px;
    margin:auto;

    font-size:16px;
    line-height:1.9;
    color: #ebebeb;
}

/* Buttons */

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-top:35px;
}

.cta-btn{
    height:54px;
    min-width:220px;

    padding:0 28px;

    border-radius:60px;

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    text-decoration:none;
    font-size:14px;
    font-weight:600;

    transition:.3s ease;
}

/* Primary */

.primary-btn{
    background:#006b59;
    color:#fff;
    box-shadow:0 10px 25px rgba(0,107,89,.18);
}

.primary-btn:hover{
    background:#005847;
    transform:translateY(-3px);
}

/* WhatsApp */

.whatsapp-btn{
    background:#ffffff;
    color:#006b59;
    border:1px solid #d7e3de;
}

.whatsapp-btn:hover{
    background:#25D366;
    border-color:#25D366;
    color:#fff;
    transform:translateY(-3px);
}

/* Icons */

.cta-btn i{
    font-size:15px;
}

/* ==========================
   TABLET
========================== */

@media(max-width:992px){

    .footer-cta{
        padding:80px 20px;
    }

    .footer-cta-content h2{
        font-size:44px;
    }

    .footer-cta-content p{
        font-size:15px;
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .footer-cta{
        padding:60px 15px;
    }

    .cta-tag{
        font-size:10px;
        letter-spacing:2px;
    }

    .cta-tag::before,
    .cta-tag::after{
        width:22px;
    }

    .footer-cta-content h2{
        font-size:30px;
        margin-bottom:15px;
    }

    .footer-cta-content p{
        font-size:14px;
        line-height:1.8;
    }

    .cta-buttons{
        flex-direction:column;
        gap:12px;
        margin-top:25px;
    }

    .cta-btn{
        width:100%;
        min-width:100%;
        height:50px;
        font-size:13px;
    }
}

/* ==========================
   FOOTER CTA END
========================== */





/* ===========================
   FOOTER START
=========================== */

.main-footer{
    background:#ffffff;
    border-top:1px solid #dce6e3;
    border-radius:30px 30px 0 0;
    overflow:hidden;
    font-family:'Inter',sans-serif;
}

.footer-container{
    max-width:1600px;
    margin:auto;
    padding:65px 20px 40px;

    display:grid;
    grid-template-columns:1.8fr 1fr 1fr 1fr 1.2fr;
    gap:45px;
}

/* ===========================
   LOGO & ABOUT
=========================== */

.footer-logo{
    max-width:280px;
    margin-bottom:20px;
    display:block;
}

.footer-about p{
    font-size:14px;
    line-height:1.9;
    color:#667085;
    margin-bottom:25px;
}

/* ===========================
   FEATURE BOX
=========================== */

.footer-feature{
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:14px 0;
    border-bottom:1px solid #edf2f1;
}

.footer-feature:last-child{
    border-bottom:none;
}

.footer-feature i{
    width:42px;
    height:42px;
    min-width:42px;

    border-radius:12px;

    background:#edf6f1;
    color:#006b59;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:16px;
}

.footer-feature h6{
    font-size:14px;
    font-weight:700;
    color:#005847;
    margin-bottom:3px;
}

.footer-feature span{
    font-size:12px;
    color:#667085;
    line-height:1.6;
}

/* ===========================
   FOOTER TITLE
=========================== */

.footer-col h4{
    font-size:20px;
    font-weight:700;
    color:#005847;
    margin-bottom:28px;
    position:relative;
}

.footer-col h4::after{
    content:"";
    width:45px;
    height:3px;
    border-radius:20px;
    background:#0b7a43;

    position:absolute;
    left:0;
    bottom:-10px;
}

/* ===========================
   LINKS
=========================== */

.footer-col ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-col ul li{
    margin-bottom:13px;
}

.footer-col ul li a{
    color:#667085;
    text-decoration:none;
    font-size:14px;
    transition:.3s ease;

    display:inline-flex;
    align-items:center;
    gap:8px;
}

.footer-col ul li a::before{
    content:"›";
    color:#0b7a43;
    font-size:15px;
    font-weight:700;
}

.footer-col ul li a:hover{
    color:#006b59;
    transform:translateX(4px);
}

/* ===========================
   NEWSLETTER
=========================== */

.newsletter-text{
    font-size:14px;
    line-height:1.8;
    color:#667085;
    margin-bottom:18px;
}

.newsletter-form{
    display:flex;
    margin-bottom:25px;
}

.newsletter-form input{
    flex:1;
    height:48px;

    border:1px solid #d4dfdb;
    border-right:none;

    border-radius:12px 0 0 12px;

    padding:0 15px;
    font-size:14px;
    outline:none;
}

.newsletter-form input:focus{
    border-color:#006b59;
}

.newsletter-form button{
    width:52px;
    border:none;
    background:#006b59;
    color:#fff;

    border-radius:0 12px 12px 0;
    cursor:pointer;

    transition:.3s;
}

.newsletter-form button:hover{
    background:#005847;
}

/* ===========================
   SOCIAL
=========================== */

.social-links{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.social-links a{
    width:42px;
    height:42px;

    border-radius:50%;

    background:#edf6f1;
    color:#006b59;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;
    transition:.3s ease;
}

.social-links a:hover{
    background:#006b59;
    color:#fff;
    transform:translateY(-3px);
}

/* ===========================
   FOOTER BOTTOM
=========================== */

.footer-bottom{
    background:linear-gradient(
        90deg,
        #005847,
        #006b59
    );

    border-top:8px solid #d39a1d;
}

.footer-bottom-inner{
    max-width:1600px;
    margin:auto;

    padding:16px 20px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.footer-bottom p{
    color:#fff;
    font-size:13px;
    margin:0;
}

.footer-policy{
    display:flex;
    gap:18px;
}

.footer-policy a{
    color:#fff;
    text-decoration:none;
    font-size:13px;
    opacity:.95;
}

.footer-policy a:hover{
    opacity:1;
}

/* ===========================
   LAPTOP
=========================== */

@media(max-width:1200px){

    .footer-container{
        grid-template-columns:repeat(2,1fr);
        gap:35px;
    }

    .footer-about{
        grid-column:1/-1;
    }
}

/* ===========================
   MOBILE
=========================== */

@media(max-width:768px){

    .main-footer{
        border-radius:20px 20px 0 0;
    }

    .footer-container{
        grid-template-columns:repeat(2,1fr);
        gap:22px;

        padding:45px 15px 25px;
    }

    .footer-about{
        grid-column:1/-1;
    }

    .footer-logo{
        max-width:220px;
    }

    .footer-about p{
        font-size:13px;
        margin-bottom:18px;
    }

    .footer-col h4{
        font-size:16px;
        margin-bottom:22px;
    }

    .footer-col ul li{
        margin-bottom:10px;
    }

    .footer-col ul li a{
        font-size:13px;
    }

    .newsletter-text{
        font-size:13px;
    }

    .footer-feature{
        gap:10px;
        padding:10px 0;
    }

    .footer-feature i{
        width:36px;
        height:36px;
        min-width:36px;
        font-size:13px;
    }

    .footer-feature h6{
        font-size:13px;
    }

    .footer-feature span{
        font-size:11px;
    }

    .newsletter-form input{
        height:44px;
        font-size:13px;
    }

    .newsletter-form button{
        width:46px;
    }

    .social-links{
        gap:8px;
    }

    .social-links a{
        width:38px;
        height:38px;
        font-size:13px;
    }

    .footer-bottom-inner{
        flex-direction:column;
        gap:8px;
        text-align:center;
    }

    .footer-bottom p{
        font-size:12px;
    }

    .footer-policy{
        gap:12px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .footer-policy a{
        font-size:12px;
    }
}

/* ===========================
   EXTRA SMALL MOBILE
=========================== */

@media(max-width:480px){

    .footer-container{
        grid-template-columns:repeat(2,1fr);
        gap:18px;
    }

    .footer-col h4{
        font-size:15px;
    }

    .footer-col ul li a{
        font-size:12px;
    }

    .newsletter-text{
        font-size:12px;
    }

    .social-links a{
        width:34px;
        height:34px;
        font-size:12px;
    }
}

/* ===========================
   FOOTER END
=========================== */