* { 
  box-sizing: border-box;
  margin: 0; 
  padding: 0; 
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
 }

html, body {
   width: 100%;
   height: 100%;
   margin: 0;
   padding: 0;
   scroll-behavior: smooth;
   font-family: 'Inter', '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;
}

a:hover {
   color: #ff5e14;
}

img {
   max-width: 100%;
   height: auto;
   display: block;
}

::selection {
   background: #ff5e14;
   color: #fff;
}

::-webkit-scrollbar {
   width: 8px;
}

::-webkit-scrollbar-track {
   background: #feffff;
}

::-webkit-scrollbar-thumb {
   background: #ff5e14;
   border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
   background: #ff5e14;
}


.header {
 position: sticky;
 top: 0;
 z-index: 999;
 background: #ffffff;
 border-bottom: 1px solid #e5e7eb; 
}
.header .container {
 padding-left: 0 !important;
 padding-right: 0 !important;
}

.header-nav {
 display: flex;
 align-items: center;
 justify-content: flex-start;
 gap: 60px;
 padding: 10px ;
}

.navbar-header {
 display: flex;
 align-items: center;
 gap: 12px;
}

.navbar-brand img {
  height: 70px;       
  width: auto;         
  max-width: 220px;      
  object-fit: contain;   
  transition: all 0.3s ease;
}

.logo-small {
 display: none;
}

/* ================== DESKTOP MENU ================== */
.main-menu-wrapper {
 display: flex;
}

.main-nav {
 display: flex;
 gap: 32px;
 list-style: none;
 margin: 0;
 padding: 0;
}

.main-nav li a {
 font-size: 15px;
 font-weight: 500;
 color: #000;
 position: relative;
 text-decoration: none;
}

.main-nav li a::after {
 content: "";
 position: absolute;
 left: 0;
 bottom: -6px;
 width: 0;
 height: 2px;
 background: linear-gradient(90deg, #ff5e14, #22d3ee);
 transition: width 0.3s ease;
}

.main-nav li a:hover::after,
.main-nav li a.active::after {
 width: 100%;
}

/* ================== CTA ================== */
.header-navbar-rht {
 margin-left: auto;
}

.tp-btn {
 background: #ff5e14;
 color: #fff;
 padding: 10px 26px;
 border-radius: 30px;
 font-weight: 600;
 box-shadow: 0 10px 25px rgba(255,94,20,0.35);
 text-decoration: none;
}

/* ================== HAMBURGER ================== */
#mobile_btn {
 display: none;
 cursor: pointer;
}

#mobile_btn span {
 display: block;
 width: 22px;
 height: 2px;
 background: #000;
 margin: 5px 0;
}
.logo-small {
 display: none !important;
}

@media (min-width: 992px) {
 #mobile_btn {
   display: none !important;
 }

 #menu_close {
   display: none;
 }
 .menu-header img{
   display: none;
 }
}

@media (max-width: 991px) {

  .header-nav {
    width: 100%;
  }

  .navbar-header {
    width: 100%;
    display: flex;
    align-items: center;
  }
  #mobile_btn {
    display: block;
    z-index: 1002;
    margin-right: auto;
  }
  .logo {
    display: none;
  }
  .logo-small {
    display: block !important;
    margin-left: auto;
  }

  .logo-small img {
    height: auto;
    width: 110px;          /* control width, not height */
    max-width: 110px;
    image-rendering: auto;
    backface-visibility: hidden;
    transform: translateZ(0);
  }
  .header-navbar-rht {
    display: none;
  }
  .main-menu-wrapper {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    padding: 24px;
    transition: left 0.35s ease;
    box-shadow: 12px 0 40px rgba(0,0,0,0.25);
    z-index: 1001;
    display: block;
  }

  .main-menu-wrapper.open {
    left: 0;
  }
  .menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .menu-header img {
    height: 65px;
    width: auto;
    max-width: 180px;
  }
  #menu_close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f3f4f6;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #menu_close i {
    font-size: 20px;
    color: #000;
  }
  .main-nav {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    align-items: flex-start;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav li a {
    display: block;
    width: 100%;
    font-size: 16px;
  }

  .main-nav li a::after {
    width: 0;
  }

  .main-nav li a.active::after {
    width: 100%;
  }
}

.menu-overlay {
 position: fixed;
 inset: 0;
 background: rgba(0,0,0,0.3); /* soft overlay */
 opacity: 0;
 visibility: hidden;
 transition: 0.3s ease;
 z-index: 1000;
}

.dialx-hero {
 background: linear-gradient(275deg,rgba(205,214,229,1) 0,rgba(211,246,242,1) 100%); /* Soft gradient background */
 padding: 20px 4%;
 min-height: 90vh;
 display: flex;
 align-items: center;  
 border-bottom-left-radius: 15%;
 border-bottom-right-radius: 15%;
}

.hero-container {
 display: flex;
 max-width: 1200px;
 margin: 0 auto;
 justify-content: space-between;
 align-items: center;
 gap: 40px;
}

.hero-content { flex: 1; }

.hero-title {
 font-size: 70px; 
 font-weight: 600;
 color: #0067ff;
 line-height: 1.1;
 margin-bottom: 20px;
}

.hero-title span { color: #0067ff;; }

.hero-desc {
 font-size: 20px;
 color: #444;
 line-height: 1.5;
 margin-bottom: 30px;
}

.heroo-features {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 3px;
}

.feature-itemm {
  display: flex;
  align-items: center;
  gap: 5px;
}

.feature-itemm .tick {
  color: #ff5e14; 
  font-weight: bold;
  font-size: 18px;

  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.feature-itemm p {
  font-size: 16px;
  color: #444;
  font-weight: 500;
  margin: 0;
}
.hero-form-container { flex: 0.8; }

.signup-box {
 background: rgba(255, 255, 255, 0.25); 
 padding-left: 30px;
 padding-right: 30px;
 padding-top: 50px;
 padding-bottom: 50px;
 border-radius: 20px;
 box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03); 
 text-align: center;
 max-width: 360px; 
 margin: 0 auto;
 
 border: 1px solid rgba(255, 255, 255, 0.2);
}

.signup-box h3 { 
 font-size: 18px; 
 margin-bottom: 20px; 
 color: #333;
 line-height: 1.4;
}

#dialx-signup input {
 width: 100%;
 padding: 12px 15px; 
 margin-bottom: 12px;
 border: 1px solid rgba(255, 94, 20, 0.2);
 border-radius: 25px;
 font-size: 13px;
 background: rgba(255, 255, 255, 0.8); 
 outline: none;
}
#dialx-signup  textarea {
  width: 100%;
  padding: 12px 15px; 
  margin-bottom: 12px;
  border: 1px solid rgba(255, 94, 20, 0.2);
  border-radius: 25px;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.8); 
  outline: none;
 }
 #dialx-signup  textarea:focus {
  border-color: #ff5e14;
 }
#dialx-signup input:focus {
 border-color: #ff5e14;
}

.btn-submit {
 width: 100%;
 padding: 10px;
 background: #ff5e14; 
 color: white;
 border: none;
 border-radius: 30px;
 font-size: 16px;
 font-weight: bold;
 cursor: pointer;
 transition: 0.3s ease;
}

.btn-submit:hover { 
 background : #e54d00; 
 transform: translateY(-2px);
 box-shadow: 0 5px 15px rgba(255, 94, 20, 0.3);
}

.terms { 
 font-size: 11px; 
 color: #555; 
 margin: 10px 0;
 text-align: left;
 display: flex;
 align-items: flex-start;
 gap: 5px;
}

.social-login { margin-top: 20px; font-size: 14px; color: #777; }
.social-icons {
 display: flex;
 justify-content: center;
 gap: 15px;
 margin-top: 10px;
}

/* ================== TABLET & MOBILE ================== */
@media (max-width: 992px) {

 .dialx-hero {
   min-height: auto;
   padding: 60px 20px;
   border-bottom-left-radius: 0;
   border-bottom-right-radius: 0;
 }

 .hero-container {
   flex-direction: column;
   gap: 40px;
   text-align: center;
 }

 .hero-content {
   order: 1;
 }

 .hero-form-container {
   order: 2;
   width: 100%;
 }

 .hero-title {
   font-size: 42px;
   line-height: 1.2;
 }

 .hero-desc {
   font-size: 16px;
   margin-bottom: 30px;
 }

 .heroo-features {
  align-items: center;
  text-align: left;
  margin-bottom: 30px;
}
.feature-itemm {
  width: 100%;
  max-width: 350px;
}

}

/* ================== SMALL MOBILE ================== */
@media (max-width: 576px) {

 .dialx-hero {
   padding: 50px 16px;
 }

 .hero-title {
   font-size: 32px;
 }

 .hero-title br {
   display: none; /* text compact */
 }

 .hero-desc {
   font-size: 15px;
 }

 .signup-box {
   padding: 35px 20px;
   max-width: 100%;
 }

 .signup-box h3 {
   font-size: 16px;
 }

 #dialx-signup input {
   font-size: 14px;
   padding: 12px 14px;
 }

 .btn-submit {
   font-size: 14px;
   padding: 8px;
 }

 .trust-badge {
   gap: 12px;
 }

 .badge-text {
   text-align: center;
 }
}
/* =============================
  TRUSTED CUSTOMERS – DIALX CRM
============================= */

.cust-sec {
  background: #fff3e6; 
  padding: 40px 20px;
  text-align: center;
}

.cust-hdr {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin-bottom: 50px;
}

.cust-hdr span {
  color: #ff5e14;       
}

/* LOGO CONTAINER */
.cust-cnt {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

/* 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;
}

/* LOGO IMAGE STYLING */
.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 15px 35px rgba(255, 94, 20, 0.15); 
}

.cust-icn:hover img {
  filter: grayscale(0%); 
  opacity: 1;
}

/* =============================
   RESPONSIVE
============================= */

@media (max-width: 768px) {
  .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;
  }
}
 /* =============================
  WORK TOGETHER – DIALX CRM
============================= */

.wt-sec {
   background: #fff;
   padding: 20px 20px;
 }
 
 /* center container */
 .wt-container {
   max-width: 1200px;
   margin: auto;
   display: flex;
   justify-content: center;   
 }
 
 /* CENTER CONTENT */
 .wt-info {
   max-width: 700px;
   text-align: center;     
 }
 
 /* Heading */
 .wt-hdr {
   color: #ff5e14;;
   font-size: 38px;
   font-weight: 400;
   line-height: 1.2;
   margin-bottom: 20px;
 }
 
 /* Paragraph */
 .wt-pra {
   font-size: 18px;
   line-height: 1.7;
   color: #444;
   margin-bottom: 22px;
 }
 
 /* Link */
 .wt-lnk {
   font-size: 15px;
   font-weight: 600;
   color: #ff5e14;;
   text-decoration: none;
   display: inline-flex;
   align-items: center;
   gap: 6px;
 }
 
 .wt-lnk::after {
   content: "→";
   transition: transform 0.3s ease;
 }
 
 .wt-lnk:hover::after {
   transform: translateX(4px);
 }
 
 /* Responsive */
 @media (max-width: 768px) {
   .wt-hdr {
     font-size: 34px;
   }
 }

.features-section {
 background-color: #fff; 
 padding: 80px 20px;
 color: #333;
}

.container {
 max-width: 1100px;
 margin: 0 auto;
}

.main-heading {
 color: #000;
 font-size: 40px;
 text-align: center; 
 margin: 0 auto 60px auto; 
 width: 100%;
 font-weight: 500;
}
.highlight{
 color: #ff5e14;
 font-size: 40px;
 text-align: center; 
 margin: 0 auto 60px auto; 
 width: 100%;
 font-weight: 500;
}

.section-title {
 font-size: 32px;
 font-weight: 700;
 margin-bottom: 50px;
 color: #1a1a1a;
 width: 40%; 
 line-height: 1.2;
}

.features-grid {
 display: grid;
 grid-template-columns: repeat(2, 1fr); 
 gap: 40px 60px;
}

.feature-card {
 display: flex;
 align-items: flex-start;
 gap: 20px;
}

.icon-box {
 min-width: 60px;
 height: 60px;
 display: flex;
 align-items: center;
 justify-content: center;
 border-radius: 12px;
 transition: transform 0.3s ease;
}

.feature-card:hover .icon-box {
 transform: translateY(-5px);
}

.icon-box img {
 width: 35px;
 height: 35px;
}

.yellow { background-color: #fff3cd; border: 1px solid #ffeeba; }
.blue { background-color: #cfe2ff; border: 1px solid #b6d4fe; }
.orange { background-color: #ffe5d0; border: 1px solid #ffd1b3; }
.green { background-color: #d1e7dd; border: 1px solid #badbcc; }
.purple { background-color: #f3e5f5; border: 1px solid #e1bee7; }
.cyan { background-color: #e0f7fa; border: 1px solid #b2ebf2; }

.feature-content h3 {
 font-size: 20px;
 font-weight: 600;
 margin-bottom: 8px;
 color: #ff5e14;;
}

.feature-content p {
 font-size: 16px;
 line-height: 1.5;
 color: #555;
}

@media (max-width: 768px) {
 .features-grid {
     grid-template-columns: 1fr;
 }
 .section-title {
     width: 100%;
     font-size: 26px;
 }
}

.dialx-testimonial-sec {
 background-color: #fff6e8;
 padding: 30px 20px;
 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: #ffeedc;; }
.card-bg-2 { background-color: #ffe7cd; }
.card-bg-3 { background-color: #ffeedc; }
.card-bg-4 { background-color: #ffe7cd;;; }

.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; }
}
/* ================== FEATURES SPLIT ================== */
.dialx-features-split {
  background: #fff6e8;
  padding: 60px 16px;
}

.feature-split-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* ================== LEFT VIDEO ================== */
.feature-image {
  flex: 1;
}

.feature-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  display: block;
  object-fit: contain;
  background: #000;
}

/* ================== RIGHT CONTENT ================== */
.feature-list {
  flex: 1;
  padding-left: 40px;
}

.feature-list h2 {
  font-size: 34px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.feature-subtext {
  font-size: 16px;
  color: #475569;
  margin-bottom: 45px;
  max-width: 520px;
}

/* ================== FEATURE ROW (Industries style) ================== */

.feature-section-header {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.feature-section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
}

.feature-section-header p {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
}

.feature-row-item {
  display: flex;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid #e5e7eb;
  transition: all 0.35s ease;
  cursor: pointer;
}

.feature-row-item:hover {
  padding-left: 18px;
  border-bottom-color: #ff5e14;
}

/* NUMBER */
.feature-number {
  font-size: 38px;
  font-weight: 900;
  color: rgb(255 94 20 / 0.12);
  margin-right: 28px;
  font-family: 'Arial Black', sans-serif;
  transition: 0.35s ease;
  flex-shrink: 0;
}

.feature-row-item:hover .feature-number {
  color: #ff5e14;
}

/* TEXT */
.feature-info h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: #0f172a;
}

.feature-info p {
  font-size: 14px;
  color: #64748b;
  margin-top: 6px;
  line-height: 1.6;
  max-width: 420px;
}

/* ================== TABLET ================== */
@media (max-width: 991px) {
  .feature-split-container {
    flex-direction: column;
    gap: 50px;
  }

  .feature-list {
    padding-left: 0;
    text-align: center;
  }

  .feature-subtext {
    margin-left: auto;
    margin-right: auto;
  }

  .feature-row-item {
    justify-content: center;
    text-align: left;
  }
}

/* ================== MOBILE ================== */
@media (max-width: 576px) {
  .feature-section-header {
    margin-bottom: 40px;
  }

  .feature-section-header h2 {
    font-size: 24px;
  }

  .feature-section-header p {
    font-size: 15px;
  }
  .dialx-features-split {
    padding: 50px 16px;
  }

  .feature-list h2 {
    font-size: 24px;
  }

  .feature-subtext {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .feature-number {
    font-size: 30px;
    margin-right: 20px;
  }

  .feature-info h4 {
    font-size: 17px;
  }

  .feature-info p {
    font-size: 14px;
  }
}

/* ================== CONTACT ALT ================== */
.dialx-contact-alt {
 background: #fff3e6;
 padding: 60px 20px;
}

.contact-alt-container {
 max-width: 1000px;
 margin: auto;
}

/* Header */
.contact-alt-header {
 text-align: center;
 max-width: 600px;
 margin: 0 auto 60px;
}

.contact-alt-header h2 {
 font-size: 34px;
 font-weight: 600;
 color: #0f172a;
}

.contact-alt-header p {
 font-size: 16px;
 color: #475569;
 margin-top: 10px;
}

/* Box */
.contact-alt-box {
 display: grid;
 grid-template-columns: 1fr 1.2fr;
 background: rgba(255,255,255,0.6);
 border-radius: 26px;
 overflow: hidden;
 box-shadow: 0 30px 70px rgba(0,0,0,0.1);
}

/* LEFT INFO */
.contact-alt-info {
 padding: 40px;
 background: rgba(255, 94, 20, 0.05);
}

.contact-alt-info h3 {
 font-size: 20px;
 font-weight: 600;
 margin-bottom: 30px;
}

.contact-alt-item {
 display: flex;
 gap: 16px;
 margin-bottom: 22px;
}

.contact-alt-item i {
 font-size: 18px;
 color: #ff5e14;
 margin-top: 4px;
}

.contact-alt-item span {
 font-size: 13px;
 color: #64748b;
}

.contact-alt-item p {
 font-size: 15px;
 font-weight: 500;
 color: #0f172a;
}

/* RIGHT FORM */
.contact-alt-form {
 padding: 40px;
 background: #ffffff;
}

.contact-alt-form h3 {
 font-size: 20px;
 font-weight: 600;
 margin-bottom: 20px;
}

.contact-alt-form form {
 display: flex;
 flex-direction: column;
 gap: 14px;
}

.form-row {
 display: flex;
 gap: 12px;
}

.contact-alt-form input,
.contact-alt-form textarea {
 width: 100%;
 padding: 13px 16px;
 border-radius: 30px;
 border: 1px solid #e2e8f0;
 font-size: 14px;
 outline: none;
}

.contact-alt-form textarea {
 border-radius: 18px;
 resize: none;
}

.contact-alt-form input:focus,
.contact-alt-form textarea:focus {
 border-color: #ff5e14;
}

.contact-alt-form button {
 margin-top: 10px;
 padding: 14px;
 border-radius: 30px;
 border: none;
 background: #ff5e14;
 color: #ffffff;
 font-size: 15px;
 font-weight: 600;
 cursor: pointer;
 transition: 0.3s ease;
}

.contact-alt-form button:hover {
 background: #e54d00;
 box-shadow: 0 10px 25px rgba(255,94,20,0.35);
}

@media (max-width: 768px) {

 .contact-alt-header {
   margin-bottom: 40px;
 }

 .contact-alt-header h2 {
   font-size: 26px;
 }

 .contact-alt-header p {
   font-size: 15px;
 }

 .contact-alt-box {
   grid-template-columns: 1fr;
   border-radius: 22px;
 }

 .contact-alt-info {
   padding: 32px 24px;
   text-align: center;
 }

 .contact-alt-item {
   justify-content: center;
 }

 .contact-alt-form {
   padding: 32px 24px;
 }
.contact-alt-form button {
 padding: 8px;
}
 .form-row {
   flex-direction: column;
 }
}

/* Footer Base Styles */
.crm-footer {
    background: #333;;
    color: #ffffff;
    padding: 40px 10px 10px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Main Content Styles */
.footer-main h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(90deg, #3a86ff, #ff006e, #ffbe0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration-color: #3a86ff;
}

.footer-main p {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-btn {
    display: inline-block;
    padding: 10px 10px;
    background-color: #1a1b2e;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid #333;
    font-weight: 500;
    transition: 0.3s;
}

.footer-btn:hover {
    background-color: #ffffff;
    color: #030422;
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #999;
}

.footer-right a {
    color: #999;
    text-decoration: none;
    margin-left: 25px;
    transition: 0.3s;
}

.footer-right a:hover {
    color: #ffffff;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .footer-main h1 {
        font-size: 28px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-right {
        display: flex;
        gap: 15px;
    }
    
    .footer-right a {
        margin-left: 0;
    }
}

.faq-section {
  padding: 40px 20px;
  background-color: #fff3e6;
}

.faq-title {
  text-align: center;
  font-size: 32px;
  color: #333;
  margin-bottom: 40px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  overflow: hidden;
  border: 1px solid #eee;
}

.faq-question {
  padding: 18px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: #333;
  transition: background 0.3s;
}
.faq-question:active {
  background-color: #fdf2ed;
}
.arrow-icon {
  font-style: normal;
  font-size: 20px;
  color: #ff5e14;
  transition: transform 0.3s;
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  background: #fff;
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}
.faq-item.active .faq-question {
  background-color: #fdf2ed;
  color: #ff5e14; 
}
.faq-question:hover {
  background-color: #fff9f5;
}
.faq-item.active .faq-answer {
  max-height: 200px; 
  padding: 10px 25px 20px;
}


.faq-item.active .arrow-icon {
  transform: rotate(45deg); 
  color: #333;
}

@media (max-width: 576px) {
  .faq-title { font-size: 26px; }
  .faq-question { font-size: 15px; padding: 15px; }
  .faq-answer { font-size: 14px; }
}

.dialx-tabs-sec {
  padding: 20px 20px;
  background: #fff3e6;;
  text-align: center;
}
.dialx-tabs-sec .container {
  max-width: 1400px;   
}

.tab-header {
  display: flex;
  justify-content: center;
  gap: 15px; 
  margin-bottom: 30px;
  border-bottom: none; 
}

.tab-btn {
  padding: 10px 25px;
  font-size: 16px;
  font-weight: 500;
  color: #64748b;
  background: transparent; 
  border: 1px solid transparent; 
  border-radius: 50px; 
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background: #ffffff;
  color: #ff5e14;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); 
  border: 1px solid #ffe8d6; 
}

.tab-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.5);
  color: #111;
}

.tab-btn.active::after {
  display: none;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: flex;    
  flex-direction: column;
  align-items: center; 
  justify-content: center; 
}

.wt-infoo {
  font-size: 16px;
  color: #475569;
  margin-bottom: 25px; 
  max-width: 700px;
  line-height: 1.6;
}

.tab-media {
  width: 100%;
  max-width: 1200px;
  display: block;    
  height: 550px;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .tab-header {
    gap: 10px;
    overflow-x: auto;
    justify-content: center;
    padding: 10px 5px;
    scrollbar-width: none; 
}
.tab-header::-webkit-scrollbar {
    display: none;
}
.tab-media {
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  aspect-ratio: 4 / 2;  
  height: auto;
}

.tab-btn {
    padding: 8px 18px;
    font-size: 14px;
}
}

.wow {
  visibility: hidden;
  animation-duration: 2.5s !important; 
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1) !important;
}
@keyframes smoothFadeInDown {
  from {
      opacity: 0;
      transform: translate3d(0, -30px, 0); 
  }
  to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInDown {
  animation-name: smoothFadeInDown !important;
}

@keyframes smoothFadeInLeft {
  from {
      opacity: 0;
      transform: translate3d(-30px, 0, 0);
  }
  to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInLeft {
  animation-name: smoothFadeInLeft !important;
}

@keyframes smoothFadeInRight {
  from {
      opacity: 0;
      transform: translate3d(30px, 0, 0); 
  }
  to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInRight {
  animation-name: smoothFadeInRight !important;
}

@keyframes smoothFadeInUp {
  from {
      opacity: 0;
      transform: translate3d(0, 30px, 0); 
  }
  to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInUp {
  animation-name: smoothFadeInUp !important;
}

.pricing-section {
  background: rgb(255, 246, 232);
  padding: 80px 0;
}

.pricing-title {
  font-size: 46px;
  font-weight: 700;
}

.subtitle {
  color: #6c757d;
}

.pricing-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* Toggle */
.billing-toggle {
  background: linear-gradient(90deg,#ff9a00,#ff5e00);
  padding: 5px;
  border-radius: 40px;
}

.toggle-btn {
  border: none;
  padding: 8px 22px;
  border-radius: 30px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.toggle-btn.active {
  background: #fff;
  color: #ff5e00;
}

/* Currency */
.currency-dropdown {
  position: relative;
}

#currencyBtn {
  background: #f1f1f1;
  border: none;
  padding: 8px 20px;
  border-radius: 30px;
  cursor: pointer;
}

.currency-menu {
  display: none;
  position: absolute;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  border-radius: 12px;
  margin-top: 10px;
}

.currency-menu div {
  padding: 10px 10px;
  cursor: pointer;
}

.currency-menu div:hover {
  background: #f5f5f5;
}

/* Cards */
.pricing-card {
  background: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.pricing-header {
  background: linear-gradient(90deg,#ff9a00,#ff5e00);
  color: #fff;
  padding: 40px 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.addon-header {
  background: #e9dcc6;
  color: #000;
}

.price {
  font-size: 40px;
  font-weight: 700;
}

.pricing-body {
  padding: 25px;
  background: #fafafa;
  flex-grow: 1;
}

.divider {
  height: 1px;
  background: #e5e5e5;
  margin: 15px 0;
}

.feature-item h6 {
  display: flex;
  align-items: center;
  font-weight: 600;
}

.feature-item p {
  margin-left: 28px;
  color: #6c757d;
}

.icon-circle {
  width: 18px;
  height: 18px;
  border: 2px solid #ff7a00;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #ff7a00;
  margin-right: 10px;
}

.pricing-footer {
  padding: 25px;
  border-top: 1px solid #eee;
  text-align: center;
}

.primary-btn {
  background: linear-gradient(90deg,#ff7a00,#ff3d00);
  padding: 12px 30px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
}
.addon-item h6 {
  font-weight: 600;
  margin-bottom: 5px;
}

.addon-price {
  font-weight: 700;
  margin-bottom: 8px;
}

.addon-price small {
  font-weight: 400;
  color: #6c757d;
  margin-left: 5px;
}
/* PRICING FAQ SECTION */

.pricing-faq-section {
    background: #f9fafc;
}

.pricing-faq-title {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
}

.pricing-faq-box {
    background: #ffffff;
    padding: 25px 30px;
    border-left: 4px solid #ff3b3b;
    border-radius: 6px;
    transition: all 0.3s ease;
    height: 100%;
}

.pricing-faq-box h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0f172a;
}

.pricing-faq-box p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .pricing-faq-title {
        font-size: 28px;
    }
}
.pricing-faq-contact p {
    font-size: 18px;
    color: #64748b;
    margin: 0;
}

.pricing-faq-contact a {
    color: #ff3b3b;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.pricing-faq-contact a:hover {
    text-decoration: underline;
}