 .hero-inner {
      position:relative;height:80vh;overflow:hidden;
    }
.hero-inner-about{
   position:relative;height:70vh;
   /*overflow:hidden;*/
}
.hero-inner-small{
   position:relative;height:14vh;overflow:hidden;
}

    .innerpage-head{
          font-size: 40px;
    margin-bottom: 36px;
    }


    /* =================================== */
/* ======== HEADER & STICKY NAV ======== */
/* =================================== */

/* Default Header Styling */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

/* --- STICKY HEADER STATE --- */
/* This class is added by JavaScript on scroll */
/*header.sticky {*/
/*    position: fixed;*/
/*    padding: 15px 5%;*/
/*}*/

/* Change nav link color on sticky */
/*header.sticky nav ul li a {*/
/*    color: #333;*/
/*}*/
/*header.sticky nav ul li a:hover {*/
/*    color: #020256;*/
/*}*/

/* Change hamburger color on sticky */
header.sticky .hamburger {
    color: #333;
}
/* =================================== */
/* ===== CORRECTED ABOUT SECTION ===== */
/* =================================== */

.about-section {
  padding: 80px 0;
  
  /* FIX: Use a solid background color to cover the body pattern */
  background-color: #ffffff; 
  
  /* FIX: Establish a stacking context to ensure it's not hidden */
  position: relative;
  z-index: 5; 
}

/* Container to center content and set a max-width */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* The two-column grid layout */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Styling for the image container */
.about-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0 80px 0 80px; 
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Styling for the text content on the right */
.about-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a2c4e;
}

/* The small underline element */
.about-content .underline {
  width: 80px;
  height: 4px;
  background-color: #020256;
  margin-bottom: 25px;
  border-radius: 2px;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

/* Styling for the button */
.btn-about {
  background-color: #020255;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-about:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.feature-list {
  list-style: none; /* Removes default bullet points */
  padding-left: 0;
  margin-top: 25px;
  margin-bottom: 35px;
  text-align: left;
}
.feature-list-active li{
  color: white !important;
}
.feature-list li {
  display: flex; /* Aligns icon and text */
  align-items: center;
  font-size: 1.05rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 15px; /* Space between points */
}

/* This creates the custom blue tick icon */
.feature-list li::before {
  content: '';
  display: inline-block;
  flex-shrink: 0; /* Prevents icon from shrinking */
  width: 24px;
  height: 24px;
  border-radius: 50%; /* Makes it a circle */
  background-color: #020255; /* The blue background */
  margin-right: 12px; /* Space between icon and text */

  /* This is an embedded SVG for the white checkmark */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
}

/* =================================== */
/* ======== RESPONSIVE DESIGN ======== */
/* =================================== */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr; 
  }

  .about-content {
    text-align: center;
  }
  
  .about-content .underline {
    margin-left: auto;
    margin-right: auto;
  }
  
  .about-content h2 {
    font-size: 1.8rem;
  }
}


/* =================================== */
/* ======== WHY CHOOSE US SECTION ======== */
/* =================================== */

.why-choose-us-section {
  padding: 80px 0;
  background-color: #ffffff; 
}

.why-choose-us-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-choose-us-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a2c4e;
  margin-bottom: 15px;
}

.why-choose-us-header .underline {
  width: 100px;
  height: 4px;
  background-color: #020256; /* UPDATED COLOR */
  margin: 0 auto 25px auto;
  border-radius: 2px;
}

.why-choose-us-header p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

.why-choose-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 30px;
}


.choose-us-box {
  background-color: #ffffff;
  padding: 30px;
  text-align: center;
  border-radius: 0 50px 0 50px; 
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease; /* UPDATED: Added background-color transition */
}

/* --- NEW HOVER EFFECT --- */
.choose-us-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(2, 2, 86, 0.2);
  background-color: #020256; /* UPDATED: Background changes on hover */
}

/* Text color changes to white on hover */
.choose-us-box:hover h3,
.choose-us-box:hover p,
.choose-us-box:hover .feature-list li{
  color: #ffffff;
}

.choose-active{
    transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(2, 2, 86, 0.2);
  background-color: #020256;
}

.choose-active h3,
.choose-active p{
     color: #ffffff !important;
}

/* -------------------------- */

.choose-us-box .icon-wrapper {
  margin-bottom: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  background-color: #020256; /* UPDATED COLOR */
  border-radius: 50%;
  transition: background-color 0.3s ease; /* UPDATED: Added transition for smooth color change */
}

/* Icon wrapper inverts color on hover for contrast */
.choose-us-box:hover .icon-wrapper {
  background-color: #ffffff;
}

.choose-us-box .icon-wrapper img {
  width: 40px;
  height: 40px;
  transition: filter 0.3s ease; /* UPDATED: Added transition for smooth color change */
}

/* Icon inverts color on hover */
.choose-us-box:hover .icon-wrapper img {
  filter: brightness(0) invert(8%) sepia(26%) saturate(6842%) hue-rotate(232deg) brightness(97%) contrast(135%); /* This complex filter turns the white icon to the #020256 color */
}

.choose-us-box h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a2c4e;
  margin-bottom: 10px;
  transition: color 0.3s ease; /* UPDATED: Added transition for smooth color change */
}

.choose-us-box p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  transition: color 0.3s ease; /* UPDATED: Added transition for smooth color change */
}

/* =================================== */
/* ==== VERTICALLY STACKED PRICING ==== */
/* =================================== */

.stacked-pricing-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}
.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}
.pricing-section-header {
    text-align: center;
    margin-bottom: 40px;
}
.pricing-section-header h2 {
    font-size: 2.5rem; font-weight: 700; color: #1a2c4e; margin-bottom: 15px;
}
.pricing-section-header .header-underline {
    width: 80px; height: 4px; background-color: #020256; margin: 0 auto 25px auto; border-radius: 2px;
}
.pricing-section-header p {
    font-size: 1.1rem; color: #555; max-width: 800px; margin: 0 auto;
}
.pricing-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}
.pricing-tab-link {
    padding: 12px 30px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.pricing-tab-link:hover {
    background-color: #f0f0f0;
}
.pricing-tab-link.active {
    background-color: #020256;
    color: #fff;
    border-color: #020256;
}
.pricing-tab-pane {
    display: none;
}
.pricing-tab-pane.active {
    display: block;
}
.pricing-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.pricing-card {
    background: linear-gradient(145deg, #4c2d6b, #020256);
    color: #fff;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card-header h3 { font-size: 1.5rem; font-weight: 700; }
.card-header span { font-size: 0.9rem; opacity: 0.8; }
.card-price {
    background-color: #3fa9c4;
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    text-align: center;
}
.card-price .old-price { text-decoration: line-through; opacity: 0.8; font-size: 1rem; }
.card-price .new-price { font-size: 2rem; font-weight: 700; line-height: 1.2; }
.card-price .new-price small { font-size: 0.8rem; font-weight: 400; display: block; opacity: 0.9; }
.card-footer span { font-size: 0.9rem; opacity: 0.8; }


/* =================================== */
/* ====== MOBILE PRICING SECTION ====== */
/* =================================== */

.mobile-pricing-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.mobile-pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Section Header --- */
.mobile-section-header {
    text-align: center;
    margin-bottom: 60px;
}
.mobile-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2c4e;
    margin-bottom: 15px;
}
.mobile-section-header .header-underline {
    width: 80px;
    height: 4px;
    background-color: #020256;
    margin: 0 auto 25px auto;
    border-radius: 2px;
}
.mobile-section-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* --- Pricing Card Grid --- */
.mobile-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.mobile-price-card {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden; /* Important for the rounded corners */
    text-align: center;
    display: flex;
    flex-direction: column;
}

.card-top, .card-main-price {
   background-color: #0a0658;
    color: #fff;
    padding: 20px;
}

.card-top {
    font-size: 1.1rem;
    font-weight: 600;
}

.card-main-price .price {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}
.card-main-price .price small {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
}
.card-main-price .sub-price {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 5px;
}

.card-features {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.feature-header {
    background-color: #3498db; /* Blue background */
    color: #fff;
    padding: 15px;
    font-weight: 600;
}

.feature-main {
    background-color: #fff;
    padding: 30px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.feature-main p {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a2c4e;
    margin: 0;
    line-height: 1.2;
}
.feature-main span {
    color: #666;
    font-size: 1rem;
}
/* --- Styling for Mobile Card Feature Details --- */
.feature-main.feature-details {
    text-align: left;
    padding: 20px;
    justify-content: flex-start; /* Align content to the top */
}

.feature-category {
    font-size: 1rem !important; /* Override existing p size */
    color: #555 !important; /* Override existing p color */
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    line-height: normal !important; /* Override existing p line-height */
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.feature-list:last-of-type {
    margin-bottom: 0; /* Remove margin from the last list */
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #333;
}

.feature-list li img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* --- NEW: White Details Section for Pricing Card --- */
.card-details {
    background-color: #ffffff; /* White background */
    color: #333; /* Dark text */
    padding: 20px;
    margin: 0 -25px -25px -25px; /* Adjust negative margins to align with card padding */
    border-radius: 0 0 16px 16px; /* Round only the bottom corners */
}

/* Optional: Adjust pricing card padding if needed */
.pricing-card {
    /* Existing styles */
    background: linear-gradient(145deg, #4c2d6b, #020256);
    color: #fff;
    border-radius: 16px;
    padding: 25px; /* Padding for the main colored part */
    padding-bottom: 0; /* Remove bottom padding to let details section fit flush */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-footer {
    margin-bottom: 14px;
}

/* --- NEW: Styling for Detail Feature List --- */
.card-details .detail-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-details .detail-feature-list li {
    display: flex;
    align-items: center; /* Vertically aligns icon and text */
    gap: 10px; /* Space between icon and text */
    padding: 10px 0; /* Vertical spacing */
    border-bottom: 1px solid #eee; /* Separator line */
    font-size: 0.9rem;
    color: #333;
}

.card-details .detail-feature-list li:last-child {
    border-bottom: none; /* Remove border from last item */
}

.card-details .detail-feature-list img {
    height: 20px; /* Icon size */
    width: 20px;  /* Icon size */
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.card-details .detail-feature-list span {
    flex-grow: 1; /* Allows text to take remaining space */
}



/* =================================== */
/* ======== OUR EXPERTS SECTION ======== */
/* =================================== */

.experts-section {
  padding: 80px 0;
  background-color: #020256; /* Dark blue background */
}

/* Reusable Section Header Styling */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff; /* White text for contrast on dark background */
  margin-bottom: 15px;
}

.section-header .underline {
  width: 100px;
  height: 4px;
  background-color: #ffffff; /* White underline for contrast */
  margin: 0 auto 25px auto;
  border-radius: 2px;
}

.experts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.expert-card {
  background-color: #ffffff;
  /* Removed padding from the top to allow the image to be flush */
  padding: 0 0 30px; 
  text-align: center;
  border-radius: 0 50px 0 50px; /* Same unique shape */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden; /* ADDED: This is important to contain the shaped image */
}

.expert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.expert-card img {
  width: 100%; /* UPDATED: Image now takes the full width */
  height: 280px; /* UPDATED: Set a fixed height for consistency */
  object-fit: cover; /* Prevents image stretching */
  margin-bottom: 25px; /* UPDATED: Removed top margin */
  /* UPDATED: The border-radius is removed to let it fill the card shape */
}

/* NEW: Added a wrapper for the text to re-apply padding */
.expert-info {
  padding: 0 30px; 
}

.expert-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a2c4e;
  margin-bottom: 8px;
}

.expert-card p {
  font-size: 1rem;
  color: #020256;
  font-weight: 500;
}

/* = a================================= */
/* ======== PROCESS STEPS SECTION (BLUE) ======== */
/* =================================== */

.steps-section {
  padding: 80px 0;
  background-color: #020256; /* UPDATED: Blue background */
}

/* Header text is now white */
.steps-section .section-header h2 {
  color: #ffffff; 
}

/* Underline is now white */
.steps-section .section-header .underline {
  background-color: #ffffff; 
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.step-item {
  position: relative;
  padding: 20px;
}

.step-number {
  font-size: 7rem;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  /* UPDATED: Stroke color changed for visibility on dark background */
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.2); 
  margin-bottom: 20px;
}

.step-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff; /* UPDATED: Text color to white */
  margin-bottom: 15px;
}

.step-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0; /* UPDATED: Text color to off-white for readability */
}

/* Dashed lines connecting the steps */
@media (min-width: 768px) {
  .step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 4.5rem;
    right: -45px;
    width: 50px;
    height: 2px;
    /* UPDATED: Line color to white */
    background-image: linear-gradient(to right, #ffffff 50%, transparent 50%); 
    background-size: 15px 2px;
  }
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}


/* =================================== */
/* ======== CONTACT SECTIONS ======== */
/* =================================== */

/* Section 1: Contact Info (White BG) */
.contact-info-section {
    padding: 80px 0;
    background-image: url("../images/section.png");
}

.contact-info-section .section-header h2 {
    color: #1a2c4e;
}
.contact-info-section .section-header .underline {
    background-color: #020256;
}
.contact-info-section .section-header p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
    margin-top: 60px;
}

.contact-info-item {
    position: relative;
    padding: 20px;
}

.contact-info-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background-color: #000000;
    opacity: 0.1;
}

.contact-info-item .icon {
    margin-bottom: 20px;
}
.contact-info-item .icon img {
    width: 40px;
    height: 40px;
}
.contact-info-item h3 {
    font-size: 1.4rem;
    color: #1a2c4e;
    margin-bottom: 10px;
}
.contact-info-item p {
    font-size: 1rem;
    color: #666;
}


/* Section 2: Contact Form & Map (Blue BG) */
.contact-form-map-section {
    /* This is the parent container for the 2-column layout */
}

.contact-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.form-container {
        padding: 23px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-container {
    min-height: 500px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-form-wrapper .form-header h2 {
    color: #ffffff;
    font-size: 2.5rem;
}

.contact-form-wrapper .form-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #4a5a9c;
    background-color: #0e1a6c;
    color: #ffffff;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #a9b3e6;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #ffffff;
    color: #020256;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-submit:hover {
    background-color: #e0f2ff;
}

.contact-form-map-section {
    background: #020256;
    padding: 45px;
}




/* =================================== */
/* ======== PRICING SECTION ======== */
/* =================================== */

.pricing-plan-section {
    padding: 80px 20px;
    background-image: url(../images/section.png);
}

/* NEW: Header Styling */
.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}
.pricing-header h2 {
    font-size: 2.5rem;
    font-weight: 700; /* Bold */
    color: #020256; /* Blue */
    margin-bottom: 10px;
}
.pricing-header p {
    font-size: 1.1rem;
    color: #666; /* Small and regular */
}
.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
}

.pricing-container-tele {
    max-width: 1200px;
    margin: 0 auto;
    display: block;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
}

.pricing-box {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.plan-type {
    font-size: 1rem;
    color: #0737b9;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
}

.price-per {
    font-size: 1rem;
    font-weight: 600;
    color: #0737b9;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    color: #333;
    line-height: 1.8;
    flex-grow: 1;
}

/* UPDATED: Fix for list item alignment */
.plan-features li {
    margin-bottom: 10px;
    display: flex; /* Use flexbox for alignment */
    align-items: flex-start; /* Align to the top */
}
.plan-features li::before {
    content: '-'; /* Create hyphen with CSS */
    margin-right: 10px;
    font-weight: 700;
}

.plan-button {
    display: block;
    background-color: #020256;
    color: #ffffff;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.plan-button:hover {
    background-color: #001f7e;
}


/* --- EDITS for Pricing Header --- */
.pricing-header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap; /* Allows items to stack on small screens */
    gap: 20px;
}
.pricing-header .header-text {
    text-align: left;
}
/* Center header on mobile */
@media (max-width: 768px) {
    .pricing-header {
        justify-content: center;
    }
    .pricing-header .header-text {
        text-align: center;
    }
}

/* --- NEW: Currency Switcher Styles --- */
.currency-switcher {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 50px;
    background-color: #fff;
    padding: 5px;
}
.currency-btn {
    border: none;
    background: transparent;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    color: #333;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.currency-btn.active {
    background-color: #020256;
    color: #fff;
}


/* --- Update this existing rule --- */
.pricing-box {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative; /* ADD THIS LINE */
    overflow: hidden; /* ADD THIS LINE to contain the badge */
}


/* --- Add these NEW rules to your stylesheet --- */

.activation-fee-badge {
    position: absolute;
    top: 15px;
    right: -1px; /* Adjust to align perfectly */
    background-color: #e0f2ff; /* Light blue background */
    color: #020256;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 0 0 0 12px; /* Rounded corner */
}

.activation-fee-badge del {
    opacity: 0.7;
}

.plan-conditions {
    margin-top: -37px; /* Pulls it up below the price */
    margin-bottom: 30px;
    text-align: left;
    font-size: 0.7rem;
    color: #555;
    padding-top: 15px;
}

.plan-conditions p {
    margin: 0;
}

/* --- NEW: Common Optional Services Box --- */

.common-optional-services {
    max-width: 800px; /* Or adjust width as needed */
       margin: 20px auto 22px auto;
    padding: 30px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.common-optional-services h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a2c4e;
    margin-bottom: 25px;
}

.common-optional-services .optional-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    /* Creates a nice grid for the features */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    text-align: left;
}

.common-optional-services .optional-features li {
    font-size: 1rem;
    color: #333;
    display: flex;
    align-items: flex-start;
}

.common-optional-services .optional-features li::before {
    content: '+';
    margin-right: 10px;
    font-weight: 700;
    color: #020256;
}

.list-icn-img{
    margin-left: 10px;
}
.list-icn-img img{
    width: 20px;
        margin-top: 5px;
}

/* =================================== */
/* ======== FORM PAGE STYLES ======== */
/* =================================== */


.form-page-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Left column is smaller than the right */
    min-height: 100vh;
}

/* --- Left Column --- */
.form-info-left {
    background-image: url(../images/form-bg.png);
    color: #ffffff;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.info-content {
    position: relative;
    z-index: 2;
}
.info-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}
.info-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #d1d9ff;
    margin-bottom: 30px;
}
.info-features {
    list-style: none;
}
.info-features li {
    margin-bottom: 15px;
    font-size: 1rem;
}

/* Decorative elements for the left column */
.form-info-left::before, .form-info-left::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}
.form-info-left::before {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -150px;
}
.form-info-left::after {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -100px;
}


/* --- Right Column --- */
.form-content-right {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.form-container {
    width: 75%;
}

.form-container h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a2c4e;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
        padding: 20px 18px;
    border: none;
    background: aliceblue;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #020256;
    box-shadow: 0 0 0 2px rgba(2, 2, 86, 0.1);
}
.form-group #chosen-plan {
    background-color: aliceblue;
    font-weight: 600;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background-color: #020256; /* Blue background */
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.submit-button:hover {
    background-color: #001f7e;
}


/* =================================== */
/* ======== RESPONSIVE DESIGN ======== */
/* =================================== */
@media (max-width: 992px) {
    .form-page-wrapper {
        grid-template-columns: 1fr; /* Stack columns */
    }
    .form-info-left {
        min-height: 40vh;
        text-align: center;
    }
}

/* =================================== */
/* ======== RESPONSIVE DESIGN ======== */
/* =================================== */
@media (max-width: 992px) {
    .pricing-container {
        grid-template-columns: 1fr; 
    }
}


/* Responsive Adjustments */
@media (max-width: 992px) {
    .contact-grid-container {
        grid-template-columns: 1fr;
    }
    .form-container {
        padding: 60px 30px;
    }
}
@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .contact-info-item {
        margin-bottom: 30px;
    }
    .contact-info-item:not(:last-child)::after {
        display: none;
    }
}



.crm-integration-section {
    padding: 80px 0;
    background-color: #ffffff; /* Clean white background */
}

/* 1. Header Styling */
.crm-header-text {
    text-align: center;
    margin-bottom: 30px;
}

.crm-main-head {
    color: #020256; /* SmartLink Blue */
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.crm-subhead {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

/* 2. Cloud Communication Head */
.cloud-com-title-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.cloud-icon-circle {
    /* Optional: Add a light background circle behind the icon if desired */
    display: flex;
    align-items: center;
    justify-content: center;
}

.cloud-com-title-block h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.text-black {
    color: #000000; /* Cloud in Black */
}

.text-blue {
    color: #020256; /* Communication in Blue */
}

/* 3. Logo Grid */
.crm-logo-grid {
    display: grid;
    /* 4 Columns as requested */
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 50px auto;
}

.crm-card {
    background: #ffffff;
    border: 1px solid #e0e0e0; /* Very light border */
    border-radius: 12px;
    height: 120px; /* Fixed height for consistency */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Minimal shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.crm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(2, 2, 86, 0.15); /* Slightly stronger shadow on hover */
    border-color: #020256; /* Blue border on hover */
}

.crm-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;

    transition: all 0.3s ease;
}

.crm-card:hover img {
    filter: grayscale(0%); /* Full color on hover */
    opacity: 1;
}

/* 4. Button */
.crm-btn-wrapper {
    text-align: center;
}

.btn-blue-crm {
    display: inline-block;
    background-color: #020256;
    color: #ffffff;
    padding: 14px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-blue-crm:hover {
    background-color: #007bff;
    transform: translateY(-2px);
}

/* 5. Responsive Design */
@media (max-width: 992px) {
    .crm-logo-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on tablet */
    }
}

@media (max-width: 768px) {
    .crm-logo-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
        gap: 15px;
    }
    .crm-main-head {
        font-size: 2rem;
    }
    .cloud-com-title-block h3 {
        font-size: 1.5rem;
    }
}

