* {
    box-sizing: border-box;
}
body {
    font-family: 'Abhaya Libre', serif;
    color: #333;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

header {
    background-color: #ffffff;
    text-align: center;
   
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    font-size: 18px;
    
}

.logo img {
    height: 60px; /* Adjust logo height */
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
}

/* Mobile menu styles */
.mobile-menu {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    border-bottom: 1px solid #eee;
}

.mobile-menu li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
}

/* Responsive styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hamburger-menu {
        display: flex;
    }
}
/* Hero Banner Styles */
.hero-section {
    text-align: center;
    padding: 100px 20px;
    background-color: #F5F5F5;
}

.hero-section h1 {
    font-family: 'Abhaya Libre', serif;
    font-weight: 800;
    font-size: 90px;
    line-height: 1.2;
    color: #333;
    margin: 0;
}

.hero-section h2 {
    font-family: 'Abhaya Libre', serif;
    font-size: 24px;
    color: #EA2127;
    margin-top: 10px;
}

.email-signup {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
/* Container for the input field and button */
.input-container {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 500px; /* Adjust the width of the container */
    margin: 0 auto;
    border: 1px solid #ddd; /* Border around the container */
    border-radius: 30px; /* Rounded corners */
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Input field */
.email-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 20px;
    font-size: 20px;
    font-family: 'Nunito', sans-serif;
    border-radius: 30px 0 0 30px; /* Round left corners */
}

/* Button inside the container */

    .get-started-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px 20px;
        background-color: #EA2127;
        color: white;
        font-size: 20px;
        font-family: 'Nunito', sans-serif;
        border: none;
        cursor: pointer;
        border-radius: 30px;
        white-space: nowrap;
        margin-right: 5px;
    }


/* Icon in the button */
.get-started-btn i {
    margin-left: 8px;
    color: white;
}

/* Input and button hover styles */
.get-started-btn:hover {
    background-color: darkred;
}

.email-input::placeholder {
    color: #999;
}

/* Ensure proper spacing on small screens */
.input-container {
    width: 90%;
}

.login-button {
    background-color: #EA2127;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    min-width:120px;
}
.register-button {
    background-color: white;
    color: #EA2127;
    padding: 10px 20px;
    border: 1px solid #EA2127;
    cursor: pointer;
    border-radius: 5px;
    min-width:120px;
}
.register-button:hover {
    background-color: #EA2127;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}
.login-button:hover {
    background-color: white;
    color: #EA2127;
    padding: 10px 20px;
    border: 1px solid #EA2127;
    cursor: pointer;
}



.subscription {
    padding: 50px 4%;
    background-color: #EEEEEE;
   
}
.subscription-content {
    margin-right: 40px;
    font-family: 'Peddana', serif;
    font-size: 20px;
    text-align: justify;
    margin-left: 40px;
    margin-bottom: 50px;
}

.about-section {
    padding: 50px 4%;
    background-color: #EEEEEE;
    text-align: center;
}

.about-content {
    font-family: 'Peddana', serif;
    font-size: 20px;
    margin-bottom: 30px;
}

.about-content h2 {
    font-family: 'Abhaya Libre', serif;
    font-size: 36px;
    font-weight: 800;
    color: #222222;
    margin-bottom: 10px;
}

.about-content p {
    font-family: 'Peddana', serif;
    font-size: 20px;
    color: #3a3838;
    margin-bottom: 30px;
    line-height: 1.6;
}


.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 20px auto;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    
}

.carousel-item img {
    width: 100%; /* Ensures the image spans the container's width */
    height: auto; /* Maintains the aspect ratio */
    object-fit: cover; /* Ensures the image fills the container while cropping minimally */
}
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 1;
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 10px;
}

.carousel-control:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


@media (max-width: 768px) {
    .login-button,
    .register-button {
        padding: 8px 16px;
        font-size: 14px;
    }

    .about-content p {
        font-size: 14px;
    }
    .contact-container{
        flex-direction: column;
    }
}
@media (min-width: 768px) {
    .about-section {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center; /* Vertically aligns items */
    }
    .about-content{
        width:75%;
    }
    .solution-card{
        min-height: 540px;
    }
    .contact-form-container{
        max-width:45%;

    }
}
/* General Section Styling */
.solutions-section {
    padding: 50px 14%;
    text-align: center;
    background-color: #F5F5F5;
}

.solutions-section h2 {
    font-family: 'Abhaya Libre', serif;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #333;
}

.solutions-description {
    font-family: 'Peddana', serif;
    font-size: 20px;
    color: #3a3838;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: justify;
}

.swiper-container {
    width: 100%;
    overflow: hidden; /* Ensures only the active slide is visible */
    position: relative;
    max-width: 1440px;
    margin: auto;
}

.swiper-wrapper {
    display: flex; /* Flex layout for Swiper slides */
    transition: transform 0.3s ease; /* Smooth transition between slides */
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%; /* Each slide occupies full width */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}
.swiper-slide {
    flex: 0 0 auto; /* Prevent shrinking */
    width: 100%; /* Each slide occupies full width of the container */
    box-sizing: border-box; /* Include padding and border in width */
}

/* Individual Solution Cards Styling */
.solution-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 90%;
    max-width: 400px;
    margin: auto;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
   
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.solution-card h3 {
    font-family: 'Abhaya Libre', serif;
    font-size: 25px;
    text-align: center;
    margin-bottom: 15px;
    color: #3a3838;
}

.solution-card ul {
    padding-left: 20px;
}

.solution-card li {
    font-family: 'Peddana', serif;
    font-size: 20px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.swiper-pagination {
    position: absolute;
    bottom: 20px; /* Adjust as needed */
    width: 100%;
    text-align: center;
    z-index: 10; /* Make sure it appears above the slides */
}

.swiper-pagination-bullet {
    background-color: #B19777; /* Inactive dot color */
    width: 12px;
    height: 12px;
    margin: 0 5px;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #333; /* Active dot color */
    transform: scale(1.2); /* Highlight the active dot */
}


/* Responsive Styles */
@media (max-width: 768px) {
    .solution-card {
        width: 100%;
        padding: 15px;
    }
    .solution-card ul {
        padding: 25px;
    }

    .solutions-description {
        font-size: 18px;
    }

    .solution-card h3 {
        font-size: 22px;
    }

    .solution-card li {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .solution-card {
        width: 100%;
        padding: 20px;
    }

  

    .solution-card h3 {
        font-size: 20px;
    }

    .solution-card li {
        font-size: 20px;
    }
}


/* Use Cases Section */
.use-cases-section {
    padding: 50px 14%;
    text-align: center;
    background-color: #f5f5f5; /* Light grey background */
}
.use-cases-section p{
    font-family: 'Peddana', serif;
    font-size: 20px;
    color: #3a3838;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: justify;
}

.use-cases-section h2 {
    font-family: 'Abhaya Libre', serif;
    font-size: 36px;
    font-weight: 800;
    color: #222222;
    margin-bottom: 10px;
}
.use-cases-section h3 {
    font-family: 'Abhaya Libre', serif;
    font-size: 25px;
    font-weight: 800;
    color: #222222;
    margin-bottom: 10px;
}

.use-cases-description {
    font-family: 'Peddana', serif;
    font-size: 20px;
    color: #3a3838;
    margin-bottom: 30px;
}
/* Slider Container */
.use-case-slider {
    position: relative;
    width: 100%;
    overflow: hidden; /* Hide elements outside the slider */
    padding-bottom: 15px;
}

.slider-track {
    display: flex;
    gap: 20px;
    animation: scroll 30s linear infinite; /* Adjusted speed to be slower */
}

/* Individual Card */
.use-case-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 20px;
    flex: 0 0 30%; /* Each card occupies 30% of the container */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-card img {
    max-width: 120px; /* Logo size */
   
}


.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


.use-case-card h3 {
    font-family: 'Peddana', serif;
    font-size: 25px;
    color: #222222;
    margin-bottom: 10px;
}

.use-case-card p {
    font-family: 'Peddana', serif;
    font-size: 20px;
    color: #000000;
    line-height: 1.6;
}


/* Keyframes for Smooth Scrolling Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .slider-track {
        gap: 10px;
    }

    .use-case-card {
        min-width: 80%; /* Allow each card to occupy most of the screen */
    }
}


.footer-content {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Contact Section Styling */
.contact-section {
    padding: 50px 10%;
    background-color: #ffffff;
    max-width: 1440px;
    margin: auto;
}

.contact-container {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Left Container: Contact Form */
.contact-form-container {
    flex: 1;
    
    background-color: #fff;
    border-radius: 10px;
   
    padding: 30px;
}

.contact-header h3 {
    font-family: 'Abhaya Libre', serif;
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.contact-header p {
    font-family: 'Peddana', serif;
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

.contact-form input {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    font-size: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-family: 'Peddana', serif;
}

.submit-btn {
    padding: 8px 20px; /* Adjust padding for button size */
    background-color: #EA2127;
    color: white;
    font-size: 20px;
    font-family: 'Peddana', serif;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block; /* Makes the button a block-level element */
    margin: 20px auto 0; /* Centers the button horizontally */
    width: auto; /* Ensures the button takes its content width */
}


.submit-btn:hover {
    background-color: darkred;
}

/* Right Container: Free Trial Information */
.free-trial-container {
   
    background-color: #EEEEEE;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
}

.free-trial-container h3 {
    font-family: 'Abhaya Libre', serif;
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.free-trial-container h4 {
    font-family: 'Peddana', serif;
    font-size: 20px;
    color: #555;
    margin-bottom: 20px;
}

.free-trial-container ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
}

.free-trial-container ul li {
    font-family: 'Peddana', serif;
    font-size: 20px;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.free-trial-container ul li i {
    color: green;
    margin-right: 10px;
    font-size: 18px;
}

.start-trial-btn {
    padding: 8px 20px;
    background-color: #EA2127;
    color: white;
    font-size: 20px;
    font-family: 'Peddana', serif;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.start-trial-btn:hover {
    background-color: darkred;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-form-container,
    .free-trial-container {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }
}
.collaborate-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: #EA2127;
    color: white;
    font-size: 20px;
    font-family: 'Peddana', serif;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


.collaborate-btn:hover {
    background-color: darkred;
}

.footer {
   
    color: #fff;
    padding-top: 0;
    position: relative;
}

/* Wave Styling */
.wave-container {
    position: relative;
    height: 240px; /* Adjust as needed */
    overflow: hidden;
}

.wave {
  
    width: 100%; /* Slightly larger to cover viewport */
    height: 240px;
    object-fit: cover;
    object-position: top;
    z-index: 20;
    max-width: none;
    
}



/* Footer Content Styling */
.footer-container {
    padding: 40px 6%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #000;
}

.footer-column {
    flex: 1 1 calc(20% - 20px);
    min-width: 150px;
    margin-bottom: 20px;
}

.footer-column h3 {
    font-family: 'Abhaya Libre', serif;
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-column ul {
    font-family: 'Peddana', serif;
    font-size: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
   
}

.footer-column ul li {
   
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #B19777;
}

/* Social Icons Styling */
.social-icons {
    display: flex;
   
}

.social-icons a {
    display: inline-block;
   
    color: #000;
    padding: 3px;
    border-radius: 50%;
    font-size: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}


/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
   background-color: black;
    border-top: 1px solid #333;
    padding-top: 15px;
    font-size: 14px;
    color: #aaa;
}

.footer-bottom span {
    color: red;
}

.footer-bottom a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #B19777;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-column {
        flex: 1 1 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
.social-icons svg{
    width:30px;
}
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        flex: 1 1 100%;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 40px; /* Smaller font for smaller screens */
    }

    .hero-section h2 {
        font-size: 16px; /* Adjust for better readability */
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 30px; /* Further reduction for very small screens */
    }

    .hero-section h2 {
        font-size: 14px;
    }
}

/* Unique Popup Modal Background */
.unique-popup-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 9999;
    align-items: center;
    justify-content: center;
  }
  
  /* Unique Popup Content */
  .unique-popup-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
  }
  
  /* Close Button */
  .unique-close-button {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 20px;
    color: #333;
    cursor: pointer;
  }
  
  /* Form Heading */
  .unique-popup-content h2 {
    font-family: 'Abhaya Libre', serif;
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
  }
  
  /* Form Label */
  .unique-popup-content label {
    display: block;
    font-size: 14px;
    color: #333;
    margin: 10px 0 5px;
    text-align: left;
  }
  
  /* Form Input Styling */
  .unique-form-control {
    font-family: 'Peddana', serif;
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 20px;
    box-sizing: border-box;
    box-shadow: none;
  }
  
  /* Phone input area */
  .unique-phone-input {
    display: flex;
  }
  
  .unique-phone-input .unique-form-control {
    flex: 1;
   
  }
  .unique-form-control1 {
    font-family: 'Peddana', serif;
   width:70px;
    margin-right: 5px;
   
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 20px;
    box-sizing: border-box;
    box-shadow: none;
  }
  
  .unique-phone-input .unique-form-control:last-child {
    margin-right: 0;
  }
  
  /* Submit Button */
  .unique-submit-button {
    font-family: 'Peddana', serif;
    background: linear-gradient(90deg, #EA2127 0%, #7c282b 100%);
    border: medium none;
    border-radius: 5px;
    box-shadow: inherit;
    color: #ffffff;
   font-size:24px;
    padding: 6px;
    text-transform: uppercase;
    width: 100%;
  }
  
  .unique-submit-button:hover {
    background-color: #EA2127;
  }
  
  /* Adjust form alignment */
  form#uniqueDetailsForm {
    display: flex;
    flex-direction: column;
  
  }
  .unique-country-prefix {
    width: 80px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 8px;
    background-color: #f8f8f8;
    font-weight: bold;
  }
  
  #otp-section button {
    font-family: 'Peddana', serif;
    background: linear-gradient(90deg, #EA2127 0%, #7c282b 100%);
    border: medium none;
    border-radius: 5px;
    box-shadow: inherit;
    color: #ffffff;
    font-size: 24px;
    padding: 6px;
    text-transform: uppercase;
    width: 100%;
  }
  #setPasswordForm button{
    font-family: 'Peddana', serif;
    background: linear-gradient(90deg, #EA2127 0%, #7c282b 100%);
    border: medium none;
    border-radius: 5px;
    box-shadow: inherit;
    color: #ffffff;
    font-size: 24px;
    padding: 6px;
    text-transform: uppercase;
    width: 100%;
  }
  
  /* Styling for the overlay background */
  #licensePopup {
    font-family: 'Peddana', serif;
    display: none; /* Hidden by default, will be shown via JavaScript */
    position: absolute;
    top: 0;
    left: 18px;
    width: 100%;
    height: 85%;
   margin-top:50px;
    z-index: 1001; /* Higher than other elements to ensure it appears on top */
    align-items: center;
    justify-content: center;
  }
  
  /* Styling for the popup content */
  .license-popup-modal .license-popup-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
  }
  
  /* Close button styling */
  .license-close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
  }
  
  /* Styling for input fields within the popup */
  .license-popup-content .license-form-control {
    font-family: 'Peddana', serif;
    width: 100%;
    padding: 10px;
    margin: 15px 0;
    border: 1px solid #e7e7e7;
    border-radius: 5px;
    box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.1);
  }
  
  /* Styling for the submit button */
  .license-popup-content .license-submit-button {
    background:linear-gradient(90deg, #EA2127 0%, #7c282b 100%);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    padding: 10px 20px;
    cursor: pointer;
    text-transform: uppercase;
    width: 100%;
    transition: background 0.3s ease;
  }
  
  .license-popup-content .license-submit-button:hover {
    background:linear-gradient(90deg, #EA2127 0%, #7c282b 100%);
  }
  @media (max-width: 768px) {
    .input-container {
        max-width: 90%; /* Reduce max width for smaller screens */
        border-radius: 20px; /* Adjust border radius for a smaller look */
    }

    .email-input {
        font-size: 14px; /* Decrease font size */
        padding: 10px 15px; /* Reduce padding */
    }

    .get-started-btn {
        font-size: 14px; /* Decrease font size */
        padding: 6px 15px; /* Reduce padding */
    }
}

@media (max-width: 480px) {
    .input-container {
        max-width: 100%; /* Use full width for very small screens */
    }

    .email-input {
        font-size: 12px; /* Smaller font size */
        padding: 8px 10px; /* Even smaller padding */
    }

    .get-started-btn {
        font-size: 12px; /* Smaller font size */
        padding: 5px 10px; /* Smaller padding */
    }
}


.pricing-container {
    padding: 20px;
    text-align: center;
}

.pricing-model {
    margin-bottom: 40px;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   
    max-width: 1440px;
    margin: 25px auto;
}

.pricing-model h2 {
    font-family: 'Abhaya Libre', serif;
    font-size: 25px;
    text-align: center;
    margin-bottom: 15px;
    color: #3a3838;

}

.pricing-model p {
    font-family: 'Peddana', serif;
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Tiered Boxes in Columns */
.tiered-boxes {
    display: flex;
    gap: 20px;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.tier-box {
    flex: 1;
    max-width: 320px;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.tier-box h3 {
    font-family: 'Abhaya Libre', serif;
    font-size: 25px;
    text-align: center;
    margin-bottom: 15px;
    color: #3a3838;
}

.tier-box p {
    font-family: 'Peddana', serif;
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 400;
}

.tier-box ul {
    padding-left: 20px;
}

.tier-box ul li {
    font-family: 'Peddana', serif;
    font-size: 20px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Responsive Design for Tiered Boxes */
@media (max-width: 768px) {
    .tiered-boxes {
        flex-direction: column;
        align-items: center;
    }

    .tier-box {
        max-width: 90%;
    }
}
.pricing-container h1{
    font-family: 'Abhaya Libre', serif;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #333;

}
.key-differentiators {
   
    background: #f4f4f4; /* Light grey background */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 1000px;
    margin:auto;
    margin-top: 40px;
    text-align: left;
    font-family: 'Peddana', serif;
}

.key-differentiators h2 {
    font-family: 'Abhaya Libre', serif;
    font-size: 25px;
    text-align: center;
    margin-bottom: 15px;
    color: #3a3838;
}

.key-differentiators ul {
    padding-left: 250px;
}

.key-differentiators ul li {
    font-size: 22px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
    list-style: none;
    position: relative;
    padding-left: 25px;
    padding-right: 20px;
}

.key-differentiators ul li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #ffb400; /* Gold star */
    font-size: 1.5rem;
}
.wrapp{
    display: flex;
    flex-direction: row;
    gap:25px;
    max-width: 1440px;
}

.most-popular {
    border: 2px solid #EA2127;
    position: relative;
}
.most-popular::after {
    content: "MOST POPULAR";
    position: absolute;
    top: -20px;
    right: 5%;
    background: #EA2127;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 18px;
}
.pricing-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: center;
    max-width: 1440px;
    background: #f9f9f9; /* Light background */
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    padding: 30px;
    margin:auto;
   
    flex-wrap: wrap; /* Wrap on smaller screens */
}
.pricing-wrapper h3{
    font-family: 'Abhaya Libre', serif;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #333;
}