/* ===== GLOBAL PAGE LAYOUT ===== */

html{
    height:100%;
    margin:0;
    padding:0;
    scroll-behavior:smooth;
}

body{
    margin:0;
    padding:0;

    min-height:100vh;

    display:flex;
    flex-direction:column;

    font-family:"Poppins",sans-serif;

    overflow-x:hidden;
    background:#fff;
}

/* ==== HEADER / MOBILE MENU ==== */

body.no-scroll{
    overflow:hidden;
    height:100vh;
}


/* Header wrapper */
.plinfo-header-wrapper {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #ffffff;
}

/* Header inner */
.plinfo-header {
  max-width: 1600px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.plinfo-left {
  display: flex;
  align-items: center;
  gap: 500px;
}

.plinfo-logo img {
  height: 46px;
}

/* Desktop Nav */
.plinfo-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.plinfo-nav > div {
  position: relative;
}

.plinfo-nav a {
  text-decoration: none;
  color: #3a3838;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
}

.plinfo-nav a i {
  margin-left: 5px;
}

.plinfo-nav a:hover {
  color: #5c5c5c;
}

/* 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: #5c5c5c   ;
  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: #0f0f0f;
  color: #f5f5f5;
  padding: 10px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.5s ease;
}

.plinfo-contact-btn:hover {
   color: #b8b8b8;
}

/* 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: #5c5c5c ;
}

/* 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 ==== */










/* ==== CATEGORY SART==== */

.destnationhome-section{
padding:70px 20px;
background:#ffffff;
}

.destnationhome-container{
max-width:1500px;
margin:auto;
}

.destnationhome-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:40px;
flex-wrap:wrap;
gap:20px;
}

.destnationhome-subtitle{
color:#ff6b2c;
font-weight:600;
font-size:14px;
}

.destnationhome-header h2{
font-size:34px;
margin-top:8px;
font-weight:700;
color:#111;
}

.destnationhome-btn{
text-decoration:none;
background:#fff;
border-radius:30px;
padding:12px 20px;
border:1px solid #eee;
font-weight:600;
color:#111;
display:flex;
align-items:center;
gap:8px;
transition:0.3s;
}

.destnationhome-btn:hover{
background:#111;
color:#fff;
}

.destnationhome-card{
border-radius:20px;
overflow:hidden;
position:relative;
height:420px;
}

.destnationhome-card img{
width:100%;
height:100%;
object-fit:cover;
transition:0.4s;
}

.destnationhome-card:hover img{
transform:scale(1.1);
}

.destnationhome-card-content{
position:absolute;
bottom:20px;
left:20px;
color:#fff;
}

.destnationhome-card-content h4{
font-size:20px;
margin-bottom:5px;
}

.destnationhome-card-content p{
font-size:14px;
opacity:0.9;
}

.destnationhome-slider{
padding-bottom:20px;
}

/* ==== CATEGORY END==== */




/* ==== BLOG SECTION START==== */

.travel-blog-section{
width:100%;
background: transparent;
padding:40px 16px;
display:flex;
justify-content:center;
font-family:'Segoe UI',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: 'Segoe UI', system-ui, sans-serif;
background : transparent;
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:60px;
}

/* TOP LINE */

.omtravelsbadcrums1-topline{
width:100%;
height:0.6px;
background:#000;
margin-bottom:20px;
}

/* CONTAINER */

.omtravelsbadcrums1-container{
max-width:1500px;
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 ==== */





*{
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;
}

}







/* fnq Start */
.webzardfnq-section {
  padding: 80px 20px;
  background: #fafafa;
}

.webzardfnq-container {
  max-width: 1500px;
  margin: auto;
}

.webzardfnq-title {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  color: #111;
  margin-bottom: 40px;
}

.webzardfnq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.webzardfnq-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.03);
  overflow: hidden;
  transition: all 0.3s ease;
}

.webzardfnq-question {
  width: 100%;
  padding: 18px 20px;
  background: #ffffff;
  border: none;
  font-size: 17px;
  font-weight: 500;
  color: #1a1a1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  text-align: left;
  transition: background 0.3s ease;
}

.webzardfnq-question:hover {
  background: #eef4ff;
  color: #7e3ee7;
}

.webzardfnq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 16px;
  color: #444;
  background: #fff;
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.4s ease;
  text-align: left;
}

.webzardfnq-question.active + .webzardfnq-answer {
  max-height: 500px;
  padding: 16px 20px;
}

.faq-icon {
  font-size: 16px;
  color: #7e3ee7;
  transition: transform 0.3s ease;
}

.webzardfnq-question.active .faq-icon {
  transform: rotate(180deg);
}

/* ✅ Responsive Mobile Improvements */
@media screen and (max-width: 768px) {
  .webzardfnq-grid {
    grid-template-columns: 1fr;
  }

  .webzardfnq-section {
    padding: 50px 15px;
  }

  .webzardfnq-title {
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
  }

  .webzardfnq-question {
    font-size: 16px;
    padding: 15px;
  }

  .webzardfnq-answer {
    font-size: 15px;
    padding: 0 15px;
  }

  .webzardfnq-question.active + .webzardfnq-answer {
    padding: 12px 15px;
  }
}


/* FNQ End */





/* =========================
   MODERN MINI STATS SECTION START
========================= */

.ib-modern-stats-section{

    width:100%;
    padding:28px 14px;
    position:relative;
    z-index:2;

}

/* MAIN WRAP */

.ib-modern-stats-wrap{

    max-width:1450px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    background:rgba(255,255,255,0.82);

    backdrop-filter:blur(18px);

    border:1px solid rgba(126,62,231,0.10);

    border-radius:26px;

    overflow:hidden;

    box-shadow:
    0 12px 40px rgba(126,62,231,0.08),
    0 2px 10px rgba(17,24,39,0.03);

}

/* CARD */

.ib-modern-stat-card{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:16px;

    padding:30px 22px;

    transition:0.35s ease;

    cursor:pointer;

    background:transparent;

}

/* DIVIDER */

.ib-modern-stat-card:not(:last-child)::after{

    content:"";

    position:absolute;

    top:50%;
    right:0;

    transform:translateY(-50%);

    width:1px;

    height:58px;

    background:linear-gradient(
        to bottom,
        transparent,
        #e7ddfb,
        transparent
    );

}

/* HOVER EFFECT */

.ib-modern-stat-card:hover{

    background:linear-gradient(
        180deg,
        rgba(126,62,231,0.03),
        rgba(126,62,231,0.06)
    );

}

/* ICON BOX */

.ib-modern-icon{

    width:62px;

    height:62px;

    min-width:62px;

    border-radius:20px;

    background:
    linear-gradient(135deg,#faf5ff,#ffffff);

    border:1px solid rgba(126,62,231,0.12);

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:
    0 6px 18px rgba(126,62,231,0.08);

    transition:0.35s ease;

}

/* ICON HOVER */

.ib-modern-stat-card:hover .ib-modern-icon{

    transform:translateY(-3px);

    box-shadow:
    0 12px 22px rgba(126,62,231,0.14);

}

/* ICON IMAGE */

.ib-modern-icon img{

    width:32px;

    height:32px;

    object-fit:contain;

}

/* CONTENT */

.ib-modern-stat-content{

    display:flex;

    flex-direction:column;

}

/* NUMBER */

.ib-modern-stat-content h2{

    margin:0;

    font-size:34px;

    line-height:1;

    font-weight:700;

    letter-spacing:-1px;

    color:#7e3ee7;

}

/* TEXT */

.ib-modern-stat-content p{

    margin:6px 0 0;

    font-size:15px;

    font-weight:500;

    color:#6b7280;

    line-height:1.4;

}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .ib-modern-stats-wrap{

        grid-template-columns:repeat(2,1fr);

    }

    /* REMOVE EXTRA LINES */

    .ib-modern-stat-card::after{
        display:none;
    }

    /* RIGHT SIDE BORDER */

    .ib-modern-stat-card:nth-child(odd)::after{

        display:block;

        content:"";

        position:absolute;

        top:50%;
        right:0;

        transform:translateY(-50%);

        width:1px;

        height:52px;

        background:linear-gradient(
            to bottom,
            transparent,
            #e7ddfb,
            transparent
        );

    }

    /* BOTTOM BORDER */

    .ib-modern-stat-card:nth-child(1),
    .ib-modern-stat-card:nth-child(2){

        border-bottom:1px solid #f3edff;

    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:580px){

    .ib-modern-stats-section{

        padding:18px 10px;

    }

    .ib-modern-stats-wrap{

        border-radius:22px;

        grid-template-columns:repeat(2,1fr);

    }

    .ib-modern-stat-card{

        flex-direction:column;

        text-align:center;

        gap:12px;

        padding:22px 12px;

    }

    /* REMOVE ALL OLD LINES */

    .ib-modern-stat-card::after{
        display:none !important;
    }

    /* RIGHT LINE */

    .ib-modern-stat-card:nth-child(odd)::after{

        display:block !important;

        content:"";

        position:absolute;

        top:50%;
        right:0;

        transform:translateY(-50%);

        width:1px;

        height:48px;

        background:#eee6ff;

    }

    /* TOP ROW BOTTOM BORDER */

    .ib-modern-stat-card:nth-child(1),
    .ib-modern-stat-card:nth-child(2){

        border-bottom:1px solid #f3edff;

    }

    /* ICON */

    .ib-modern-icon{

        width:54px;
        height:54px;
        min-width:54px;

        border-radius:16px;

    }

    .ib-modern-icon img{

        width:26px;
        height:26px;

    }

    /* NUMBER */

    .ib-modern-stat-content h2{

        font-size:26px;

    }

    /* TEXT */

    .ib-modern-stat-content p{

        font-size:13px;

        margin-top:4px;

    }

}

/* =========================
   EXTRA SMALL DEVICES
========================= */

@media(max-width:380px){

    .ib-modern-stat-content h2{

        font-size:22px;

    }

    .ib-modern-stat-content p{

        font-size:12px;

    }

    .ib-modern-stat-card{

        padding:20px 10px;

    }

}

/* =========================
  fETURS SECTION START 
========================= */

.ib-features-section{
    width:100%;
    padding: -20px 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 #f1f1f4;
    border-radius:24px;

    overflow:hidden;

    box-shadow:
    0 4px 30px rgba(15,23,42,0.03);
}

/* 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:#f0f0f4;
}

/* 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(126,62,231,0.10),
        rgba(126,62,231,0.04)
    );

    border:1px solid rgba(126,62,231,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;
}

/* =========================
   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;
    }

}




/* =========================
   PREMIUM FEATURES SECTION
========================= */

.ib-features-section{
    width:100%;
    padding: -20px 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 #f1f1f4;
    border-radius:24px;

    overflow:hidden;

    box-shadow:
    0 4px 30px rgba(15,23,42,0.03);
}

/* 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:#f0f0f4;
}

/* 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(126,62,231,0.10),
        rgba(126,62,231,0.04)
    );

    border:1px solid rgba(126,62,231,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;
}

/* =========================
   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;
    }

}

/* =========================
  fETURS SECTION END 
========================= */


