* { 
  box-sizing: border-box;
  margin: 0; 
  padding: 0; 
  font-family: 'Poppins', sans-serif;
  
 }

html, body {
   width: 100%;
   height: 100%;
   margin: 0;
   padding: 0;
   scroll-behavior: smooth;
   font-family: 'Poppins', sans-serif;

}

body {
   overflow-x: hidden;
}

.page-wrapper {
   position: relative;
   min-height: 100vh;
   display: flex;
   flex-direction: column;
   background: radial-gradient(
       1200px 600px at top center,
       rgba(99,102,241,0.12),
       transparent 60%
   );
}

.page-wrapper section {
   position: relative;
   z-index: 1;
}

.container {
   max-width: 1200px;
}


a {
   color: inherit;
   text-decoration: none;
   transition: all 0.3s ease;
}


img {
   max-width: 100%;
   height: auto;
   display: block;
}


::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f3f5;
}

::-webkit-scrollbar-thumb {
    background: #b5b5b5;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #8d8d8d;
}

/* =========================
        HEADER
========================= */

.header{
    position:sticky;
    top:0;
    z-index:9999;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(0,0,0,.06);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition:.35s;
}
/* 
.header .container{
    max-width:1250px;
} */
.header .container{
    max-width:1250px;
    padding-left:0 !important;
    padding-right:0 !important;
}

.header-nav{
    display:flex;
    /* align-items:center; */
    justify-content:space-between;
    min-height:68px;
    padding:0 18px;
}

.navbar-header{
    display:flex;
    align-items:center;
    gap:15px;
    /* margin-left:-50px; */

}

.navbar-brand img{
    height:70px;   
    width: 180px;
     margin-left:-10px;
}

.logo-small{
    display:none;
}

/* =========================
        MENU
========================= */

.main-menu-wrapper{
    display:flex;
    align-items:center;
}

.main-nav{
    display:flex;
    align-items:center;
    gap:4px;
    list-style:none;
    margin:0;
    padding:0;
    flex-wrap:nowrap;
}

.main-nav li{
    position:relative;
      flex-shrink:0;
}

.main-nav li a{
    display:block;
    padding:8px 10px;
    font-size: 14px;
    font-weight:600;
    color:#232323;
    border-radius:30px;
    transition:.30s;
    text-decoration: none;
        white-space:nowrap;
}

.main-nav li a:hover{
    color:#0056b3;
    background:#f4f8ff;
}

.main-nav li a.active{
   color:#0056b3;
    background:#f4f8ff;
}

/* =========================
      REGISTER BUTTON
========================= */


.tp-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    /* padding:12px 28px; */
    padding:12px 18px;
    white-space:nowrap;
    border-radius:50px;
    font-weight:600;
    color:#fff;
    background:linear-gradient(135deg,#0056b3,#72bf44);
    transition:.35s;
    box-shadow:0 12px 30px rgba(0,86,179,.22);
    text-decoration: none;
}

.tp-btn:hover{
    transform:translateY(-3px);
    color:#fff;
    box-shadow:0 18px 35px rgba(0,86,179,.30);
}

/* =========================
      HAMBURGER
========================= */

#mobile_btn{
    display:none;
    width:42px;
    height:42px;
    border-radius:10px;
    /* background:#f5f7fb; */
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

#mobile_btn span{
    display:block;
    width:20px;
    height:2px;
    /* background:#111; */
    margin:4px auto;
    transition:.3s;
}

    .header-navbar-rht{
        display:none;
    }

/* =========================
      MOBILE
========================= */

@media(max-width:991px){

.header{
    background:#fff;
}

.header-nav{
    min-height:80px;
    padding:0 15px;
}

.navbar-header{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    display:none;
}

.logo-small{
    display:block !important;
     margin-left:auto; 
}

.logo-small img{
    width:120px;      
    height:60px;
    margin-left:0 !important; 
}

.header-navbar-rht{
    display:none;
}

.mobile-register-btn{
    display:block;
    margin-top:25px;
    text-align:center;
}

.mobile-register-btn .tp-btn{
    display:inline-flex;
    align-items:left;
    justify-content:center;
    width:190px;
    height:46px;
    padding:0 20px;
    border-radius:30px;
    font-size:15px;
    font-weight:600;
    margin:auto;
}
#mobile_btn{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    width:44px;
    height:44px;
    padding:0;
    cursor:pointer;
    flex-shrink:0;
}
#mobile_btn span{
    width:24px;
    height:3px;
    margin:2px 2px;
    background:#111;
    border-radius:5px;
}
/* Drawer */

.main-menu-wrapper{
    position:fixed;
    left:-100%;
    top:0;
    width:300px;
    height:100vh;
    background:#fff;
    display:block;
    overflow:auto;
    transition:.35s;
    padding:25px;
    box-shadow:0 20px 60px rgba(0,0,0,.18);
    z-index:99999;
}

.main-menu-wrapper.open{
    left:0;
}

.menu-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid #eee;
}

.menu-header img{
    width:150px;
}

#menu_close{
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#f4f4f4;
    cursor:pointer;
}

#menu_close i{
    font-size:20px;
}

.main-nav{
    display:block;
    margin-top:30px;
}

.main-nav li{
    margin-bottom:8px;
}

.main-nav li a{
    display:block;
    width:100%;
    border-radius:12px;
    font-size:16px;
}

.main-nav li a.active{
    border-radius:12px;
}

}

/* =========================
      DESKTOP
========================= */

@media(min-width:992px){

.menu-header{
    display:none;
}

#menu_close{
    display:none;
}

#mobile_btn{
    display:none!important;
}

}

/* =========================
        OVERLAY
========================= */

.menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:9990;
}

.menu-overlay.show{
    opacity:1;
    visibility:visible;
}

/*=========================
        HERO
=========================*/

.hero-section{
    position:relative;
    overflow:hidden;
    padding:40px 0 20px;
    background:linear-gradient(135deg,#eef6ff 0%,#ffffff 45%,#f4fff0 100%);
}

/* Background Shape */

.hero-section::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:#0056b315;
    border-radius:50%;
    top:-220px;
    left:-180px;
    filter:blur(40px);
}

.hero-section::after{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:#72bf4415;
    border-radius:50%;
    right:-170px;
    bottom:-200px;
    filter:blur(40px);
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:#ffffff;
    color:#0056b3;
    font-weight:600;
    font-size:14px;
    margin-bottom:22px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
}

.hero-content h1{
    font-size:38px;
    font-weight:800;
    line-height:1.1;
    color:#17233d;
    margin-bottom:25px;
}

.hero-content h1 span{
    color:#0056b3;
}

.hero-content p{
    font-size:18px;
    color:#666;
    line-height:1.8;
    max-width:580px;
}

.hero-btns{
    /* display:flex; */
    /* gap:18px; */
    margin:35px 0;
}

.hero-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #0056b3, #72bf44);
    transition: .35s;
    box-shadow: 0 12px 30px rgba(0, 86, 179, .22);
    text-decoration: none;
}

.hero-btn:hover{
    color:#fff;
    transform:translateY(-3px);
}

.hero-btn-outline{
    padding:12px 28px;
    border-radius:50px;
    border:2px solid #0056b3;
    color:#0056b3;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.hero-btn-outline:hover{
    background:#0056b3;
    color:#fff;
}

.hero-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:20px;
}

.hero-features div{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:16px;
    color:#333;
    font-weight:600;
}

.hero-features i{
    color:#72bf44;
    font-size:18px;
}

.hero-image{
    position:relative;
    z-index:2;
}

.hero-image img{
    width:100%;
    max-width:640px;
    height:400px;
}
/*=========================
        TABLET
=========================*/

@media (max-width:991px){

.hero-section{
    padding:40px 0 35px;
    text-align:center;
}

/* Remove column reverse */
.hero-section .row{
    flex-direction:column;
}

.hero-content{
    order:1;
}

.hero-image{
    order:2;
    margin-top:35px;
}

.hero-image img{
    width:100%;
    max-width:460px;
    height:auto;
}

.hero-badge{
    font-size:13px;
    padding:8px 16px;
    margin-bottom:18px;
}

.hero-content h1{
    font-size:38px;
    line-height:1.2;
}

.hero-content p{
    font-size:17px;
    line-height:1.7;
    max-width:100%;
    margin:auto;
}

.hero-btns{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin:30px 0;
}

.hero-btn,
.hero-btn-outline{
    min-width:180px;
}

.hero-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:25px;
}

.hero-features div{
    padding:12px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 8px 18px rgba(0,0,0,.05);
    text-align:left;
    font-size:15px;
}

}


/*=========================
        MOBILE
=========================*/

@media (max-width:575px){

.hero-section{
    padding:25px 0 30px;
    text-align:center;
}

.hero-content{
    order:1;
}

.hero-image{
    order:2;
    margin-top:30px;
}

.hero-image img{
    width:100%;
    max-width:330px;
    height:auto;
}

.hero-badge{
    font-size:12px;
    padding:7px 14px;
    margin-bottom:15px;
}

.hero-content h1{
    font-size:23px;
    line-height:1.25;
    margin-bottom:15px;
}

.hero-content p{
    font-size:15px;
    line-height:1.7;
}

.hero-btns{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin:25px 0;
}

.hero-btn,
.hero-btn-outline{
    width:100%;
    padding:13px 20px;
    font-size:15px;
}

.hero-features{
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
}

.hero-features div{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 14px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 8px 18px rgba(0,0,0,.05);
    font-size:14px;
    text-align:left;
}

.hero-features i{
    font-size:17px;
    color:#72bf44;
}

}
/* =============================
  TRUSTED CUSTOMERS – DIALX CRM
============================= */

.cust-sec {
  padding: 40px 20px;
  text-align: center;
}

.cust-hdr {
  font-size:38px;
  font-weight:800;
  color: #111;
  margin-bottom: 50px;
}

.cust-hdr span {
    color:#0056b3;
}

/* LOGO CONTAINER */
.cust-cnt {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

/* Marquee */
.cust-marquee{
    overflow:hidden;
    position:relative;
    width:100%;
    margin-bottom: 50px; /* added gap before stats */
}

.cust-track{
    display:flex;
    align-items:center;
    gap:20px;
    width:max-content;
    animation:logoScroll 16s linear infinite;
    padding: 20px 0;
}

.cust-track:hover{
    animation-play-state:paused;
}

@keyframes logoScroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/* LOGO PILL BOX */
.cust-icn {
  width: 180px;
  height: 80px;
  background: #fff;
  border-radius: 50px; 
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  padding: 15px;
}

.cust-icn img {
  width: 100%;      
  height: 100%;      
  max-width: 120px;   
  max-height: 50px;
  object-fit: cover; 
  /* filter: grayscale(100%);  */
  /* opacity: 0.7; */
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.cust-icn:hover {
  transform: translateY(-5px);
  box-shadow:
    0 10px 25px rgba(0, 86, 179, 0.10),
    0 20px 40px rgba(114, 191, 68, 0.08);
}

/* =============================
  NEW STATS & CONTENT SECTION
============================= */
.cust-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.cust-stat-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.cust-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 86, 179, 0.08);
}

.stat-badge {
  display: inline-block;
  padding: 6px 14px;
  background: #eaf3ff;
  color: #0056b3;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 15px;
}

.stat-badge.secure {
  background: #e6f7ed;
  color: #28a745;
}

.cust-stat-card p {
  color: #444;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* DPDP security card spans across all 3 columns below */
.security-card {
  grid-column: span 3;
  background: #fafbfe;
  border: 1px dashed #ccd9ff;
  display: flex;
  align-items: center;
  gap: 20px;
}

.security-card .stat-badge {
  margin-bottom: 0;
  white-space: nowrap;
}

.sec-link {
  color: #0056b3;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.sec-link:hover {
  border-color: #0056b3;
}

/* =============================
   RESPONSIVE
============================= */

@media (max-width: 991px) {
  .cust-stats-grid {
    grid-template-columns: 1fr; /* single column on tablets and mobile */
  }
  
  .security-card {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .security-card .stat-badge {
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .cust-sec {
    padding: 40px 10px;
  }

  .cust-hdr {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .cust-icn {
    width: 140px;
    height: 65px;
    padding: 10px;
  }
  
  .cust-icn img {
    max-width: 90px;
    max-height: 35px;
  }
  
  .cust-cnt {
    gap: 15px;
  }
}

.section-title{
    max-width:700px;
    margin:auto;
    margin-bottom:70px;
}

.section-badge{
    display:inline-block;
    padding:8px 18px;
    background:#eaf3ff;
    color:#0056b3;
    border-radius:30px;
    font-weight:600;
    margin-bottom:18px;
}

.section-title h2{
    font-size:38px;
    font-weight:800;
}

.section-title h2 span{
    color:#0056b3;
}

.section-title p{
    color:#666;
    margin-top:15px;
    font-size:18px;
}

/*=========================
      FEATURES TIMELINE
=========================*/

.feature-section{
    padding:40px 0;
    background:#f8fbff;
}
.feature-timeline{
    position:relative;
    max-width:1000px;
    margin:70px auto 0;
}

.feature-timeline::before{
    content:"";
    position:absolute;
    left:50%;
    top:0;
    width:4px;
    height:100%;
    transform:translateX(-50%);
    background:linear-gradient(#0056b3,#72bf44);
    border-radius:20px;
}

.feature-row{
    width:50%;
    position:relative;
    margin-bottom:60px;
}

.feature-row.left{
    padding-right:80px;
    text-align:right;
}

.feature-row.right{
    margin-left:auto;
    padding-left:80px;
}

.feature-icon{
    width:74px;
    height:74px;
    border-radius:50%;
    background:linear-gradient(135deg,#0056b3,#72bf44);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    position:absolute;
    top:0;
    box-shadow:
        0 15px 30px rgba(0,86,179,.15),
        0 25px 45px rgba(114,191,68,.12);
}

.feature-row.left .feature-icon{
    right:-37px;
}

.feature-row.right .feature-icon{
    left:-37px;
}

.feature-content h4{
    font-size:24px;
    font-weight:700;
    color:#17233d;
    margin-bottom:12px;
}

.feature-content p{
    color:#666;
    line-height:1.8;
    margin:0;
}

/*=========================
        TABLET
=========================*/

@media(max-width:991px){

.feature-row.left,
.feature-row.right{
    padding-left:70px;
    padding-right:0;
    width:100%;
    margin-left:0;
    text-align:left;
}

.feature-timeline::before{
    left:35px;
}

.feature-row.left .feature-icon,
.feature-row.right .feature-icon{
    left:0;
    right:auto;
}

}

/*=========================
        MOBILE
=========================*/

@media(max-width:767px){

.feature-section{
    padding:70px 0;
}

.feature-content h4{
    font-size:21px;
}

.feature-content p{
    font-size:15px;
}

.feature-icon{
    width:60px;
    height:60px;
    font-size:22px;
}

.feature-timeline::before{
    left:28px;
}

.feature-row{
    padding-left:60px !important;
    margin-bottom:45px;
}

}
/*==========================
      CALL RECORDING
==========================*/

.recording-section{
    position:relative;
    padding:40px 0;
    overflow:hidden;
    background:#fff;
}

.recording-section::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:#0056b310;
    filter:blur(90px);
    top:-180px;
    left:-180px;
}

.recording-section::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:#72bf4410;
    filter:blur(90px);
    right:-120px;
    bottom:-120px;
}

/*==========================
        VIDEO
==========================*/

.recording-video{
    overflow:hidden;
    border-radius:24px;
    box-shadow:
        0 18px 45px rgba(0,86,179,.12),
        0 25px 50px rgba(114,191,68,.08);
}

.recording-video video{
    width:100%;
    display:block;
    border-radius:24px;
}

/*==========================
        CONTENT
==========================*/

.recording-content{
    padding-left:35px;
}

.recording-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 16px;
    border-radius:30px;
    background:#eef6ff;
    color:#0056b3;
    font-size:14px;
    font-weight:600;
    margin-bottom:16px;
}

.recording-title{
    font-size:34px;
    font-weight:800;
    line-height:1.25;
    color:#17233d;
    margin-bottom:15px;
}

.recording-title span{
    color:#0056b3;
}

.recording-desc{
    font-size:16px;
    line-height:1.7;
    color:#666;
    margin-bottom:22px;
}

/*==========================
        GRID
==========================*/

.recording-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

/*==========================
        CARD
==========================*/

.record-card{
    display:flex;
    align-items:center;
    gap:14px;
    padding:14px 16px;
    min-height:72px;
    background:#fff;
    border:1px solid #edf2f7;
    border-radius:14px;
    transition:.3s;
    position:relative;
    box-shadow:0 6px 18px rgba(0,0,0,.04);
}

.record-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:4px;
    height:100%;
    background:linear-gradient(#0056b3,#72bf44);
}

.record-card:hover{
    transform:translateY(-4px);
    box-shadow:0 14px 28px rgba(0,86,179,.12);
}

.record-card.active{
    background:linear-gradient(135deg,#0056b3,#72bf44);
    border-color:transparent;
}

.record-card.active::before{
    display:none;
}

.record-card.active h4{
    color:#fff;
}

.record-card.active .record-icon{
    background:#fff;
    color:#0056b3;
}

/*==========================
        ICON
==========================*/

.record-icon{
    width:42px;
    height:42px;
    min-width:42px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#0056b3,#72bf44);
    color:#fff;
    font-size:18px;
}

.record-card h4{
    margin:0;
    font-size:15px;
    font-weight:700;
    line-height:1.35;
    color:#17233d;
}

/*==========================
        TABLET
==========================*/

@media(max-width:991px){

.recording-section{
    padding:50px 0;
}

.recording-video{
    margin-bottom:35px;
}

.recording-content{
    padding-left:0;
}

.recording-title{
    font-size:30px;
}

.recording-grid{
    gap:12px;
}

}

/*==========================
        MOBILE
==========================*/

@media(max-width:767px){

.recording-section{
    padding:45px 0;
}

.recording-video{
    margin-bottom:28px;
    border-radius:18px;
}

.recording-video video{
    border-radius:18px;
}

.recording-badge{
    font-size:13px;
    padding:7px 14px;
}

.recording-title{
    font-size:25px;
    line-height:1.3;
}

.recording-desc{
    font-size:15px;
    margin-bottom:18px;
}

.recording-grid{
    grid-template-columns:1fr;
    gap:10px;
}

.record-card{
    min-height:64px;
    padding:12px 14px;
    border-radius:12px;
}

.record-icon{
    width:38px;
    height:38px;
    min-width:38px;
    font-size:16px;
    border-radius:10px;
}

.record-card h4{
    font-size:14px;
    line-height:1.3;
}

}

/*==========================
    INDUSTRY SECTION
==========================*/

.industry-section{
    padding:40px 0;
    background:#f8fbff;
}

.industry-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:22px;
}

/* EACH ITEM */

.industry-item{
    text-align:center;
}

/* TOP BOX */

.industry-box{
    height:98px;
    border:1px solid #dbe6f3;
    border-radius:24px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.industry-box img{
    width:130px;
    height:78px;
    transition:.3s;
}

.industry-item h4{
    margin-top:20px;
    font-size:19px;
    line-height:1.35;
    font-weight:700;
    color:#243552;
}

/* Hover */

.industry-item:hover .industry-box{

    border-color:#72bf44;

    transform:translateY(-5px);

    box-shadow:0 12px 30px rgba(0,86,179,.08);

}

.industry-item:hover img{

    transform:scale(1.08);

}

/*==========================
        Tablet
==========================*/

@media(max-width:1199px){

.industry-grid{

grid-template-columns:repeat(3,1fr);

}

}

/*==========================
        Mobile
==========================*/

@media(max-width:767px){

.industry-section{

padding:60px 0;

}

.industry-grid{

grid-template-columns:repeat(2,1fr);

gap:18px;

}

.industry-box{

height:82px;
border-radius:18px;

}

.industry-box img{

width:48px;

}

.industry-item h4{

font-size:15px;
margin-top:14px;

}

}

/*=========================================
        FEATURE SHOWCASE
=========================================*/

.feature-showcase{
    position:relative;
    padding:40px 0;
    background:#fff;
    overflow:hidden;
}

/* Background Grid */
.grid-bg{
    position:absolute;
    inset:0;
    z-index:0;
    background-image:
        linear-gradient(rgba(0,86,179,.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,86,179,.07) 1px, transparent 1px);
    background-size:45px 45px;
    mask-image:radial-gradient(circle at center,#000 45%,transparent 100%);
    -webkit-mask-image:radial-gradient(circle at center,#000 45%,transparent 100%);
}
/* Heading */
.feature-heading{
    position:relative;
    z-index:5;
    max-width:760px;
    margin:auto;
    margin-bottom:70px;
}
.feature-tag{
    display:inline-block;
    padding:8px 20px;
    border-radius:30px;
    background:#eef8f0;
    color:#72bf44;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:18px;
}
.feature-heading h2{
    font-size:46px;
    font-weight:800;
    color:#182848;
    line-height:1.2;
}
.feature-heading h2 span{
    color:#0056b3;
}
.feature-heading p{
    margin-top:15px;
    color:#666;
    font-size:17px;
    line-height:1.8;
}
/*========================
      LAYOUT
========================*/

.feature-wrapper{
    position:relative;
    height:720px;
    z-index:2;
}
.feature-wrapper::before{
    content:"";
    position:absolute;
    inset:0;
    background:url("assets/images/feature-lines.svg") center center no-repeat;
    background-size:75%;
    opacity:.4;
    pointer-events:none;
}
/*========================
      PHONE
========================*/

.phone-area{
    position: relative;
    z-index: 5;
}

.phone-glow{
    position:absolute;
    width:420px;
    height:420px;
    background:radial-gradient(circle,
    rgba(255,94,20,.25),
    transparent 70%);
    border-radius:50%;
    animation:pulseGlow 4s infinite;
}

@keyframes pulseGlow{
    0%,100%{
        transform:scale(1);
        opacity:.7;
    }
    50%{
        transform:scale(1.15);
        opacity:1;
    }
}

.phone-frame{
    position:relative;
    width:280px;
    padding:12px;
    background:#101827;
    border-radius:42px;
    box-shadow:
    0 30px 80px rgba(0,0,0,.25);
}

.phone-frame img{
    width:100%;
    display:block;
    border-radius:32px;
}

.phone-notch{
    position:absolute;
    width:110px;
    height:26px;
    background:#101827;
    border-radius:0 0 18px 18px;
    left:50%;
    transform:translateX(-50%);
    top:0;
    z-index:5;
}

/* =========================================
        NEW FEATURES LUXURY GRID
========================================= */

.dialx-features-section {
    padding: 40px 0;
    background: #ffffff;
    position: relative;
}

.feature-luxury-card {
    background: #ffffff;
    border: 1px solid rgba(0, 86, 179, 0.06);
    border-radius: 20px;
    padding: 35px 25px;
    height: 100%;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

/* Card Hover effect */
.feature-luxury-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.08), 0 15px 30px rgba(114, 191, 68, 0.05);
}

/* Subtle glow border inside card on hover */
.feature-luxury-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0056b3, #72bf44);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-luxury-card:hover::before {
    opacity: 1;
}

/* Icons styling */
.feature-card-icon {
    width: 65px;
    height: 65px;
    background: #f4f8ff;
    color: #0056b3;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 22px;
    transition: all 0.35s ease;
}

.feature-luxury-card:hover .feature-card-icon {
    background: linear-gradient(135deg, #0056b3, #72bf44);
    color: #fff;
    transform: scale(1.05);
}

/* Headings & Paragraph inside Card */
.feature-luxury-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: #17233d;
    margin-bottom: 14px;
}

.feature-luxury-card p {
    font-size: 14.5px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive adjust for smaller screens */
@media(max-width: 767px) {
    .dialx-features-section {
        padding: 50px 0;
    }
    .feature-luxury-card {
        padding: 25px 20px;
    }
}
/* =========================================
   3-STEP WIZARD MODAL SYSTEM
========================================= */

.dialx-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    /* backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.dialx-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Wizard Variant Modal Box */
.dialx-modal-container.wizard-variant {
    background: #ffffff;
    width: 100%;
    max-width: 540px;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dialx-modal-overlay.open .wizard-variant {
    transform: scale(1) translateY(0);
}

/* Close button */
.dialx-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: #f1f5f9;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 22px;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}
.dialx-modal-close:hover { background: #e2e8f0; color: #0f172a; }

/* Progress Bar on top */
.wizard-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #f1f5f9;
}

.progress-line {
    width: 33.33%;
    height: 100%;
    background: linear-gradient(90deg, #0056b3, #72bf44);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Steps Management Visibility */
.wizard-step {
    display: none;
    opacity: 0;
    transform: translateX(15px);
    transition: all 0.4s ease;
}

.wizard-step.step-active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

/* Typography Layouts */
.step-counter {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #72bf44;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 8px;
}

.wizard-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 5px;
}

.wizard-header p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Custom Input Styling */
.input-group-custom label, .wizard-label-heading {
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
    display: block;
}

.input-with-icon { position: relative; width: 100%; }
.input-with-icon i {
    position: absolute; left: 16px; top: 50%;
    transform: translateY(-50%); color: #94a3b8; font-size: 15px;
}
.input-with-icon input {
    width: 100%; padding: 13px 16px 13px 46px;
    border-radius: 12px; border: 1px solid #cbd5e1;
    background: #f8fafc; font-size: 14.5px; color: #0f172a;
    outline: none; transition: all 0.2s ease;
}
.input-with-icon input:focus {
    border-color: #0056b3; background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.08);
}

/* STEP 3: Custom Radio Cards System (Ditch Selectors) */
.wizard-custom-radio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.radio-box-card {
    cursor: pointer;
    position: relative;
}

.radio-box-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0; height: 0;
}

.radio-card-content {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 16px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
    transition: all 0.2s ease;
}

.radio-card-content i { font-size: 20px; }

/* Radio active states checking */
.radio-box-card input[type="radio"]:checked + .radio-card-content {
    background: #eaf2fc;
    border-color: #0056b3;
    color: #0056b3;
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.05);
}

/* Footer Control Buttons Alignment */
.wizard-footer {
    margin-top: 30px;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.btn-wizard-next, .btn-wizard-submit {
    flex: 1;
    background: #0056b3;
    color: white; border: none;
    padding: 12px 24px; border-radius: 12px;
    font-size: 14.5px; font-weight: 700;
    display: flex; align-items: center;
    justify-content: center; gap: 8px;
    cursor: pointer; transition: all 0.2s ease;
    width: 100%;
}
.btn-wizard-submit { background: linear-gradient(90deg, #0056b3, #72bf44); }

.btn-wizard-next:hover, .btn-wizard-submit:hover {
    transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0, 86, 179, 0.15);
}

.btn-wizard-back {
    background: #f1f5f9; color: #475569;
    border: none; padding: 12px 20px; border-radius: 12px;
    font-size: 14.5px; font-weight: 600; cursor: pointer;
    transition: all 0.2s ease;
}
.btn-wizard-back:hover { background: #e2e8f0; color: #0f172a; }

/* Responsive Grid for mobile radio cards */
@media(max-width: 480px){
    .wizard-custom-radio-grid { grid-template-columns: 1fr; }
    .dialx-modal-container.wizard-variant { padding: 30px 20px; }
}

/*==========================
      CONTACT
==========================*/

.contact-section{
    padding:40px 0;
    background:#f8fbff;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.contact-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    border-radius:30px;
    background:#eaf5ff;
    color:#0056b3;
    font-weight:600;
    margin-bottom:20px;
}

.contact-info h2{
    font-size:42px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:18px;
}

.contact-info h2 span{
    color:#0056b3;
}

.contact-info p{
    color:#666;
    line-height:1.8;
    margin-bottom:35px;
}

.contact-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:18px;
}

.contact-icon{
    width:40px;
    height:40px;
    border-radius:16px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(135deg,#0056b3,#72bf44);
    color:#fff;
    font-size:22px;
}

.contact-item span{
    color:#777;
    font-size:14px;
}

.contact-item h5{
    margin:3px 0 0;
    font-size:18px;
    font-weight:700;
}

.contact-form-box{
    background:#fff;
    border-radius:24px;
    padding:35px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.contact-form-box input,
.contact-form-box textarea{
    width:100%;
    border:1px solid #dfe8f3;
    border-radius:14px;
    padding:14px 18px;
    margin-bottom:18px;
    outline:none;
    transition:.3s;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus{
    border-color:#0056b3;
}

.contact-btn{
    border:none;
    background:linear-gradient(135deg,#0056b3,#72bf44);
    color:#fff;
    padding:15px 30px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.contact-btn:hover{
    transform:translateY(-3px);
}
/*==========================
      TABLET
==========================*/
@media (max-width:991px){

    .contact-wrapper{
        grid-template-columns:1fr;
        gap:40px;
    }

    .contact-info{
        text-align:center;
    }

    .contact-info h2{
        font-size:34px;
    }

    .contact-info p{
        max-width:600px;
        margin:0 auto 30px;
    }

    .contact-list{
        align-items:center;
    }

    .contact-item{
        width:100%;
        max-width:420px;
        margin:auto;
    }
}


/*==========================
      MOBILE
==========================*/
@media (max-width:767px){

    .contact-section{
        padding:50px 0;
    }

    .contact-wrapper{
        gap:30px;
    }

    .contact-badge{
        padding:8px 16px;
        font-size:14px;
    }

    .contact-info h2{
        font-size:28px;
        line-height:1.3;
    }

    .contact-info p{
        font-size:15px;
        line-height:1.7;
        margin-bottom:25px;
    }

    .contact-list{
        gap:15px;
    }

    .contact-item{
        display:flex;
        align-items:flex-start;
        gap:15px;
        padding:15px;
        border-radius:16px;
        background:#fff;
        box-shadow:0 8px 25px rgba(0,0,0,.06);
        text-align:left;
    }

    .contact-icon{
        width:48px;
        height:48px;
        border-radius:14px;
        font-size:18px;
        flex-shrink:0;
    }

    .contact-item span{
        font-size:13px;
    }

    .contact-item h5{
        font-size:15px;
        line-height:1.5;
        word-break:break-word;
    }

    .contact-form-box{
        padding:20px;
        border-radius:20px;
    }

    .contact-form-box input,
    .contact-form-box textarea{
        padding:14px 16px;
        margin-bottom:15px;
        font-size:15px;
    }

    .contact-form-box textarea{
        min-height:130px;
        resize:none;
    }

    .contact-btn{
        width:100%;
        height:52px;
        display:flex;
        align-items:center;
        justify-content:center;
        gap:10px;
        font-size:15px;
    }

}

/*==========================
        FAQ SECTION
==========================*/
.faq-section {
    padding: 40px 0;
    background:#f8fbff;
    font-family: 'Poppins', sans-serif;
}

.faq-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(114, 191, 68, 0.1); /* Soft GoDial Green */
    color: #72bf44;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.faq-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 15px;
}

.faq-header h2 span {
    color: #0056b3;
}

.faq-header p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
}

/* Accordion Wrapper */
.faq-wrapper {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Question Styling */
.faq-question {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    padding-right: 15px;
    transition: 0.3s;
}

.faq-toggle-icon {
    font-size: 16px;
    color: #64748b;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Answer Styling */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 28px;
}

.faq-answer p {
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    padding-bottom: 22px;
}

/* Active/Opened State */
.faq-item.active {
    background: #ffffff;
    border-color: #0056b3;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.05);
}

.faq-item.active .faq-question h5 {
    color: #0056b3;
}

.faq-item.active .faq-answer {
    max-height: 300px; 
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg); /* Plus changes to a close icon smoothy */
    color: #0056b3;
}

/* Hover effect for unselected items */
.faq-item:hover:not(.active) {
    border-color: #cbd5e1;
    background: #f1f5f9;
}

/*==========================
     MOBILE RESPONSIVE
==========================*/
@media (max-width: 767px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-header h2 {
        font-size: 30px;
    }
    
    .faq-header p {
        font-size: 14px;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-question h5 {
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-answer p {
        font-size: 14px;
        padding-bottom: 18px;
    }
}
/*==========================
        FOOTER SECTION
==========================*/
.footer-section {
    background: #0f172a; 
    color: #94a3b8;
    padding: 40px 0 ;
    font-family: 'Poppins', sans-serif;
}

.footer-col {
    margin-bottom: 40px;
}

.footer-brand {
    font-size: 30px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-brand span {
    color: #72bf44; 
}

.footer-desc {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.social-link {
    color: #94a3b8;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #72bf44; 
    transform: translateY(-3px);
}

.footer-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background: linear-gradient(135deg,#0056b3,#72bf44);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}
/* Contact Info */
.footer-contact-info{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-contact-info li{
    margin-bottom:18px;
}

.footer-contact-info li:last-child{
    margin-bottom:0;
}

.footer-contact-info a,
.contact-address{
    display:flex;
    align-items:flex-start;
    gap:14px;
    text-decoration:none;
    color:#94a3b8;
    transition:all .3s ease;
}

.footer-contact-info a:hover{
    color:#ffffff;
    transform:translateX(5px);
}

.footer-contact-info i{
    width:42px;
    height:42px;
    border-radius:10px;
    background:#1e293b;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:17px;
    flex-shrink:0;
    transition:.3s;
}

.footer-contact-info a:hover i{
    background:linear-gradient(135deg,#0056b3,#72bf44);
    color:#fff;
}

.footer-contact-info .fa-whatsapp{
    color:#25D366;
}

.footer-contact-info .fa-envelope,
.footer-contact-info .fa-location-dot{
    color:#72bf44;
}

.footer-contact-info span{
    line-height:1.6;
    font-size:15px;
}
/* Footer Bottom Bar */
.footer-bottom {

    padding-top: 25px;
    border-top: 1px solid #1e293b;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}
.footer-bottom-link{
    color:#72bf44;
    text-decoration:none;
    font-weight:600;
    transition:0.3s ease;
}

.footer-bottom-link:hover{
    color:#ffffff;
    text-decoration:underline;
}


@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/*==========================
     MOBILE RESPONSIVE
==========================*/
@media (max-width: 991px) {
    .footer-bottom-flex {
        flex-direction: column;
        gap: 10px;
        text-align: left;
    }
    
}

@media (max-width: 767px) {
    .footer-section {
        padding: 50px 0 20px;
    }
    .footer-col {
        margin-bottom: 35px;
        text-align: left;
    }
    .footer-title::after {
        left: 5%;
        transform: translateX(-50%); 
    }
    .footer-socials {
        justify-content: left;
    }
    .footer-links a:hover {
        transform: translateY(-2px); 
    }
}
/*==========================
         CTA SECTION
==========================*/
.cta-section {
    padding: 40px 0;
    background: linear-gradient(90deg, #0056b3, #72bf44); 
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    left: -10%;
    top: -50%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 40px;
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff; 
    line-height: 1.3;
    margin-bottom: 15px;
}

.cta-content h2 span {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9); 
    font-size: 16px;
    line-height: 1.6;
    max-width: 620px;
    margin: 0;
}

.playstore-btn {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    color: #0f172a;
    text-decoration: none;
    padding: 15px 32px;
    border-radius: 16px;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.ps-icon i {
    font-size: 32px;
    background: linear-gradient(135deg, #00a0ff, #00f576, #ffbb00, #ff3300); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: 0.3s ease;
}

.ps-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.ps-text span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #64748b; 
}

.ps-text h5 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.playstore-btn:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.playstore-btn:hover .ps-icon i {
    transform: scale(1.15) rotate(8deg);
}

/*==========================
     MOBILE RESPONSIVE
==========================*/
@media (max-width: 991px) {
    .cta-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 35px;
    }
    
    .cta-content h2 {
        font-size: 34px;
    }
    
    .cta-content p {
        max-width: 100%;
    }
    
    .cta-content br {
        display: none;
    }
}

@media (max-width: 575px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 15px;
    }

    .playstore-btn {
        padding: 14px 28px;
        width: 100%;
        max-width: 270px;
        justify-content: center;
    }
    
    .ps-text h5 {
        font-size: 19px;
    }
}
/*==============================
        PRICING SECTION
==============================*/

.pricing-section{
    padding:40px 0;
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(circle at top left,#eef6ff 0%,transparent 35%),
        radial-gradient(circle at bottom right,#f2ffe9 0%,transparent 35%),
        linear-gradient(180deg,#ffffff,#f8fbff);
}

.pricing-section::before{
    content:"";
    position:absolute;
    width:380px;
    height:380px;
    border-radius:50%;
    background:rgba(0,86,179,.08);
    filter:blur(90px);
    top:-120px;
    left:-120px;
}

.pricing-section::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(114,191,68,.08);
    filter:blur(80px);
    right:-100px;
    bottom:-100px;
}

/*==============================
        TITLE
==============================*/

.section-title{
    max-width:720px;
    margin:auto;
    margin-bottom:50px;
}

.section-badge{
    display:inline-block;
    padding:8px 20px;
    background:#eaf3ff;
    color:#0056b3;
    font-weight:600;
    border-radius:30px;
    margin-bottom:20px;
}

.section-title h2{
    font-size:42px;
    font-weight:800;
    color:#17233d;
}

.section-title h2 span{
    color:#0056b3;
}

.section-title p{
    margin-top:18px;
    color:#666;
    font-size:18px;
    line-height:1.8;
}

/*==============================
      CURRENCY TOGGLE
==============================*/

.currency-toggle{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    margin-bottom:55px;

}

.currency-label{

    font-size:18px;
    font-weight:700;
    color:#777;
    transition:.3s;

}

.currency-label.active{

    color:#0056b3;

}

/*==============================
      SWITCH
==============================*/

.switch{

    position:relative;
    display:inline-block;
    width:64px;
    height:34px;

}

.switch input{

    display:none;

}

.slider{

    position:absolute;
    inset:0;
    cursor:pointer;
    border-radius:40px;
    background:#d8d8d8;
    transition:.3s;

}

.slider::before{

    content:"";
    position:absolute;
    width:26px;
    height:26px;
    background:#fff;
    border-radius:50%;
    left:4px;
    top:4px;
    transition:.3s;
    box-shadow:0 5px 15px rgba(0,0,0,.15);

}

.switch input:checked + .slider{

    background:linear-gradient(135deg,#0056b3,#72bf44);

}

.switch input:checked + .slider::before{

    transform:translateX(30px);

}

/*==============================
      CARD
==============================*/

.pricing-card{

    position:relative;
    background:#fff;
    border-radius:28px;
    padding:25px 35px;
    text-align:center;
    transition:.35s;
    border:1px solid rgba(0,86,179,.08);

    box-shadow:
        0 15px 45px rgba(0,86,179,.08),
        0 25px 60px rgba(114,191,68,.05);

    height:100%;

}

.pricing-card:hover{

    transform:translateY(-10px);

    box-shadow:
        0 25px 55px rgba(0,86,179,.15),
        0 35px 70px rgba(114,191,68,.10);

}

.featured{

    border:2px solid #0056b3;
    transform:scale(1.05);

}

.featured:hover{

    transform:scale(1.05) translateY(-10px);

}

/*==============================
     BADGE
==============================*/

.popular-badge{

    position:absolute;
    top:-16px;
    left:50%;
    transform:translateX(-50%);

    background:linear-gradient(135deg,#0056b3,#72bf44);

    color:#fff;

    padding:9px 22px;

    border-radius:30px;

    font-size:14px;

    font-weight:700;

    box-shadow:0 10px 25px rgba(0,86,179,.18);

}

/*==============================
      PRICE
==============================*/

.pricing-card h4{

    font-size:28px;
    font-weight:800;
    margin-bottom:10px;
    color:#17233d;

}

.plan-desc{
    color:#777;
    margin-bottom:15px;
}

.price{
    margin-bottom:20px;
}

.currency{

    font-size:28px;
    font-weight:700;
    vertical-align:top;

}

.amount{

    font-size:38px;
    font-weight:800;
    color:#0056b3;
    line-height:1;

}

.price small{

    display:block;
    margin-top:8px;
    color:#777;

}

/*==============================
      FEATURES
==============================*/

.pricing-card ul{

    list-style:none;
    padding:0;
    margin:0 0 35px;

}

.pricing-card ul li{

    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:8px;
    color:#555;
    font-size:16px;

}

.pricing-card ul li i{

    color:#72bf44;
    font-size:18px;

}

/*==============================
      BUTTON
==============================*/

.pricing-btn{

    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:100%;
    padding:14px 25px;
    border-radius:50px;
    color:#fff;
    font-weight:700;
    text-decoration:none;
    background:linear-gradient(135deg,#0056b3,#72bf44);
    transition:.3s;
    box-shadow:0 12px 30px rgba(0,86,179,.20);
}

.pricing-btn:hover{

    color:#fff;

    transform:translateY(-3px);

    box-shadow:0 18px 40px rgba(0,86,179,.30);

}

/*==============================
      TABLET
==============================*/

@media(max-width:991px){

.pricing-section{

padding:70px 0;

}

.section-title h2{

font-size:34px;

}

.featured{

transform:none;

}

.featured:hover{

transform:translateY(-10px);

}

.pricing-card{

margin-bottom:25px;

}

}

/*==============================
      MOBILE
==============================*/

@media(max-width:767px){

.section-title h2{

font-size:28px;

}

.section-title p{

font-size:16px;

}

.currency-toggle{

gap:12px;
margin-bottom:35px;

}

.currency-label{

font-size:16px;

}

.pricing-card{

padding:35px 25px;

}

.pricing-card h4{

font-size:24px;

}

.amount{

font-size:28px;

}

.pricing-card ul li{

font-size:15px;

}

.pricing-btn{

padding:13px;

}

}

.dialx-testimonial-sec {
 background-color: #ffffff;
 padding: 30px 0px;
 font-family: 'Inter', sans-serif;
}

.container {
 max-width: 1200px;
 margin: 0 auto;
}

.testimonial-header {
 text-align: center;
 font-size: 36px;
 font-weight: 600;
 color: #1a1a1a;
 margin-bottom: 50px;
 line-height: 1.3;
}

.testimonial-grid {
 display: grid;
 grid-template-columns: repeat(4, 1fr); /* 4 Columns */
 gap: 20px;
}

.testimonial-card {
 border-radius: 20px;
 padding: 30px;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
 /* min-height: 450px; */
}

.testimonial-card:hover {
 transform: translateY(-10px);
 box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.card-bg-1 { background-color: #f8fbff; }
.card-bg-2 { background-color: #f8fbff; }
.card-bg-3 { background-color: #f8fbff; }
.card-bg-4 { background-color: #f8fbff; }

.company-logo {
 margin-bottom: 25px;
 filter: grayscale(100%);
 opacity: 0.7;
}

.testimonial-text {
 font-size: 16px;
 line-height: 1.6;
 color: #333;
 font-weight: 500;
}

.user-info {
 display: flex;
 align-items: center;
 gap: 12px;
 margin-top: 10px;
}

.user-img {
 width: 45px;
 height: 45px;
 border-radius: 50%;
 object-fit: cover;
 background: #ccc;
}

.user-details {
 display: flex;
 flex-direction: column;
}

.user-name {
 font-weight: 700;
 font-size: 14px;
 color: #000;
}

.user-desig {
 font-size: 12px;
 color: #666;
 line-height: 1.2;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
 .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
 .testimonial-grid { grid-template-columns: 1fr; }
 .testimonial-header { font-size: 28px; }
}

	.language-dropdown .nav-link{
				display:flex;
				align-items:center;
				padding:0;
			}

			.language-dropdown #selectedFlag{
				width:22px;
				height:16px;
				border-radius:2px;
				object-fit:cover;
			}

			.language-menu{
				width:240px;
				padding:0;
				border:none;
				border-radius:12px;
				overflow:hidden;
				box-shadow:0 12px 30px rgba(0,0,0,.15);
			}

			.language-menu input{
				border-radius:8px;
			}

			.language-list{
				max-height:260px;
				overflow-y:auto;
			}

			/* Scrollbar */
			.language-list::-webkit-scrollbar{
				width:6px;
			}

			.language-list::-webkit-scrollbar-thumb{
				background:#c7c7c7;
				border-radius:10px;
			}

			.language-list::-webkit-scrollbar-thumb:hover{
				background:#999;
			}

			.language-dropdown .dropdown-item{
				display:flex;
				align-items:center;
				gap:10px;
				font-size:14px;
				padding:10px 15px;
			}

			.language-dropdown .dropdown-item img{
				width:22px;
				height:16px;
				object-fit:cover;
			}

			.language-dropdown .dropdown-item:hover{
				background:#f5f7fa;
			}
			.language-dropdown .dropdown-item.active{
				background: #e8f3ff;
				color: #0d6efd;
				font-weight: 600;
			}

			.language-dropdown .dropdown-item.active:hover{
				background: #e8f3ff;
				color: #0d6efd;
			}

			.language-dropdown .dropdown-item.active img{
				transform: scale(1.05);
			}

			.goog-te-banner-frame.skiptranslate {
				display: none !important;
			}

			body {
				top: 0 !important;
			}

			.skiptranslate iframe {
				display: none !important;
			}


			.goog-logo-link,
			.goog-te-gadget span{
				display:none !important;
			}

			.goog-te-gadget{
				color:transparent !important;
			}


            @media (max-width:991.98px){

                .mobile-language-dropdown{
                    display:flex;
                    margin-left:auto;
                    margin-right:12px;
                    align-items:center;
                }

                .mobile-language-dropdown #selectedFlag{
                    width:24px;
                    height:18px;
                    border-radius:3px;
                    cursor:pointer;
                }

                /* Desktop language hide */
                .main-menu-wrapper .header-navbar-rht .language-dropdown{
                    display:none;
                }
                
            }

			.selected-lang-code {
				font-size: 14px;
				font-weight: 600;
				text-transform: uppercase;
				color: #333; 
			}
			.language-dropdown .nav-link {
				display: flex;
				align-items: center;
				gap: 6px;
				padding: 0;
			}
            
/* ___________________Security And Compilance____________________ */

	.security-header{
		max-width:900px;
	}

	.security-header h1{
		font-size:42px;
		font-weight:700;
		color:#074C3E;
		margin-bottom:20px;
	}
    .security-header h1{
        font-size:38px;
        font-weight:800;
        line-height:1.1;
        color:#17233d;
        margin-bottom:25px;
    }

    .security-header h1 span{
        color:#0056b3;
    }
	.security-header p{
		font-size:17px;
		color:#555;
	}

	.security-note{
		background:#fff7e6;
		border-left:4px solid #f5a623;
		padding:18px 22px;
		border-radius:6px;
		margin:40px 0;
	}

	.security-section{
		padding:10px 0;
		border-bottom:1px solid #ececec;
	}

	.security-section h3{
		color:#17233d;
		font-size:28px;
		font-weight:600;
		margin-bottom:18px;
	}

	.security-section p{
		color:#555;
		margin-bottom:16px;
	}

	.security-section ul{
		margin-top:15px;
		padding-left:22px;
	}

	.security-section li{
		margin-bottom:12px;
		color:#555;
	}

	@media(max-width:768px){

	.security-header h1{
		font-size:32px;
	}

	.security-section h3{
		font-size:24px;
	}

	}
/* 
.problem-solution-section{
    background:#f8fafc;
} */

.problem-table{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.problem-table thead th{
    background:#074C3E;
    color:#fff;
    padding:18px;
    border:none;
    font-size:18px;
    font-weight:600;
}

.problem-table tbody td{
    padding:18px;
    vertical-align:middle;
    border-color:#eef2f7;
    font-size:15px;
    line-height:1.7;
}

.problem-table tbody tr:hover{
    background:#f6fbf9;
}

.problem-table i{
    font-size:18px;
}

@media(max-width:768px){

    .problem-table thead th{
        font-size:15px;
        padding:14px;
    }

    .problem-table tbody td{
        font-size:14px;
        padding:14px;
    }

}
.crm-compare-section{
    padding:40px 0;
    background:#ffffff;
}
.comparison-box{
    margin:45px auto 0;
    max-width:1000px;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}
.compare-row{
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr;
    align-items:center;
    padding:18px 25px;
    border-bottom:1px solid #eee;
    font-size:15px;
}
.compare-row:last-child{
    border-bottom:none;
}
.compare-row > div:first-child{
    font-weight:600;
    color:#222;
}
.compare-row i{
    margin-right:10px;
    color:#074C3E;
}
.compare-head{
    background:#074C3E;
    color:#fff;
    font-weight:600;
    font-size:16px;
}
.compare-head i{
    color:#fff;
}
.compare-head > div:first-child{
    color:#fff;
}
.dialx-title{
    background:#72bf44;
    padding:12px;
    border-radius:10px;
    text-align:center;
}
.success{
    color:#074C3E;
    font-weight:600;
}
.success i{
    color:#28a745;
}

@media(max-width:768px){

    .comparison-box{
        overflow-x:auto;
    }
    .compare-row{
        min-width:750px;
    }

    .crm-compare-section{
        padding:50px 0;
    }

}

.why-dialx-section{
    padding:40px 0;
    background:#ffff;
}

.why-feature-list{
    display:flex;
    flex-direction:column;
    gap:22px;
}
.why-feature-card{
    display:flex;
    align-items:flex-start;
    gap:20px;
    padding:25px;
    background:#f8faf9;
    border-radius:18px;
    border:1px solid #edf2ef;
    transition:.3s;
}
.why-feature-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}
.why-icon{
    width:55px;
    height:55px;
    flex-shrink:0;
    border-radius:15px;
    background:linear-gradient(#0056b3,#72bf44);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.why-feature-card h4{
    font-size:20px;
    margin-bottom:8px;
    color:#111;
}

.why-feature-card p{
    margin:0;
    color:#666;
    font-size:14px;
    line-height:1.6;
}

/* Mobile Responsive */

@media(max-width:991px){

    .why-content{
        margin-bottom:40px;
    }
    .why-content h2{
        font-size:32px;
    }
}

@media(max-width:576px){

    .why-dialx-section{
        padding:60px 0;
    }

    .why-feature-card{
        padding:18px;
        gap:15px;
    }
    .why-icon{
        width:45px;
        height:45px;
        font-size:18px;
    }
    .why-feature-card h4{
        font-size:17px;
    }

    .why-feature-card p{
        font-size:13px;
    }

}