:root {
    /* --primary: #0683ff;  */
    /* --primary: #3a8ddb;  */
    /* --primary-dark: #ffc3cd; */
    --primary-dark: #3a8ddb;
    --primary: #ffc3cd; 
    
    /* #F6E2E4; */
    --golden: #FFB11B;
    --secondary: #10b981;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
    --light-gray: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--light);
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: var(--primary-dark);
    color: white;
}

.btn-primary:hover {
    /* background: var(--primary-dark-dark);
    color: var(--dark); */
    background: white;
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    
    background: white;
    color: black;
}

.btn-secondary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    margin-left: 15px;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.text-center {
    text-align: center;
}

/* Header Styles */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    height: 65px;
}
.logo img {
    height: 100%;
}

.logo i {
    margin-right: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.contactus-main-div {
    /* background: linear-gradient(135deg, var(--primary) 0%, #f1bfc8e8 100%), url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3') no-repeat center center / cover; */
    padding: 180px 0 100px;
    color: white;
}
.contactus-main-div h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}
.hero.detailpages-banner {
    position: relative;
    height: 35vh;
    display: flex;
    align-items: end;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* ✅ Black transparent overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(87deg, rgba(8, 14, 22, 0.58), rgba(11, 24, 39, 0.71));
    z-index: 2;
}
.hero.detailpages-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( to left, rgba(0, 0, 0, 0.13), rgba(0, 0, 0, 0.27) ), linear-gradient(to left, #ffc3cd, #3a8ddb);
    /* background: linear-gradient(to bottom, #ffc3cd, #3a8ddb); */
    /* background: linear-gradient(87deg, rgba(8, 14, 22, 0.58), rgba(11, 24, 39, 0.71)); */
    /* background: rgba(0, 0, 0, 0.5); */
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3; /* content above overlay */
}


.hero-content {
    text-align: start;
    max-width: 700px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* How it Works */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}
.content-with-ul p ,
.section-title p {
    color: #000000cf;
    max-width: 1000px;
    margin-left: 30px;
}
.content-with-ul .icon-para p {
    margin: 0px 0px;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.step-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    width: calc(33.333% - 30px);
    text-align: center;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-icon {
    width: 80px;
    aspect-ratio: 1;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 30px;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Benefits */
.benefits {
    
background-color: #f1f5f9;
}
.tab-btn {
    padding: 15px 40px;
    background: transparent;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    margin: 5px;
}

.tab-btn.active {
    color: var(--primary);
    border-bottom: 3px solid var(--primary);
}

.benefit-content {
    display: none;
}

.benefit-content.active {
    display: block;
}

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

.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    text-align: center;
}

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

.benefit-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: var(--dark);
}

/* About Us Section */
.about {
    background: linear-gradient(to right, #f8fafc 50%, #ffffff 50%);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    /* align-items: center; */
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
    padding: 30px;
}

.about-text h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.about-text h3 {
    color: var(--primary);
    margin: 25px 0 15px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: url('https://images.unsplash.com/photo-1581595219317-4e7f7886f1da?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80') center/cover;
    height: 500px;
}

.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--primary);
    transition: transform 0.3s;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-text:before,
.testimonial-text:after {
    content: '"';
    font-size: 50px;
    color: var(--light-gray);
    position: absolute;
}

.testimonial-text:before {
    top: -20px;
    left: -20px;
}

.testimonial-text:after {
    bottom: -40px;
    right: -20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    position: relative;
    padding: 100px 0;
    text-align: center;
    color: white;
    /* background-image: linear-gradient(135deg, rgb(6 131 255 / 95%), rgb(255 195 205 / 95%)), url(https://as2.ftcdn.net/jpg/02/25/05/21/1000_F_225052138_hqS9qOpixWRB6vfftvENXPdAA1jokLfI.jpg); */ 
    /* background-image: linear-gradient(87deg, rgba(8, 14, 22, 0.148), rgba(11, 24, 39, 0.22)) , url('/frontend/assets/images/ready-banner-two.webp'); */
    background-image: linear-gradient(87deg, rgba(8, 14, 22, 0.148), rgba(11, 24, 39, 0.22)) , url('/frontend/assets/images/ready-banner-two.webp');
    background-attachment: fixed;
    /* background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    z-index: 1;
}

.cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 41, 59, 0.73);
    /* background: rgba(0, 0, 0, 0.5);  */
    z-index: -1;
}


.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    opacity: 0.9;
    color: white;
}

.cta-btns .btn-outline {
    border-color: white;
    color: white;
}

.cta-btns .btn-outline:hover {
    background: white;
    color: var(--primary);
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
}
.footer-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}
.footer-links a i {
    width: 15%;
    background: var(--primary);
    color: var(--dark);
    aspect-ratio: 1;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}
.footer-links a span {
    width: 85%;
}
.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
    border: 1px solid transparent;
}

.footer-links a:hover ,
.footer-links a:hover span {
    color: var(--primary);
}
.footer-links a:hover i {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.9rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    /* font-size: 2.5rem; */
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
}

.section-description {
    color: #6b7280;
    max-width: 32rem;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}


.info-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1.5rem;
}

.info-header p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-details a {
    text-decoration: none;
    transition: 300ms all ease;
}
.contact-details a:hover {
    transform: translate(0px, -10px);
    transition: 300ms all ease;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: auto;
    background: #eee;
    padding: 10px 20px;
    border-radius: 40px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}


.icon-wrapper {
    border-radius: 50px;
    overflow: hidden;
}
.icon-wrapper i {
    width: 50px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    background: var(--primary);
    color: white;
    text-decoration: none;
}

.icon-wrapper.email {
    background-color: var(--primary-dark);
}

.icon-wrapper.phone {
    background-color: var(--primary-dark);
}

.icon-wrapper.address {
    background-color: var(--primary-dark);
}

.icon-wrapper svg {
    width: 1.5rem;
    height: 1.5rem;
}

.contact-item-info h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.contact-item-info p {
    color: #6b7280;
    font-weight: 600;
}

.guarantee-box {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    margin-top: 2rem;
}

.guarantee-box h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.guarantee-box p {
    color: #6b7280;
}

.form-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: none;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}


.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    color: #374151;
    font-weight: 500;
    font-size: 0.875rem;
}

.form-input {
    height: 3rem;
    width: 100%;
    border-radius: 0.375rem;
    border: 1px solid #d1d5db;
    background: white;
    padding: 0 0.75rem;
    font-size: 1rem;
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-textarea {
    width: 100%;
    min-height: 5rem;
    border-radius: 0.375rem;
    border: 1px solid #d1d5db;
    background: white;
    padding: 0.75rem;
    font-size: 1rem;
    resize: none;
    transition: all 0.2s;
}

.form-textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
#contactForm {
    display: flex;
    flex-direction: column;
    gap: 10px;

}

.submit-btn {
    width: 100%;
    height: 3rem;
    display: inline-block;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
    background: var(--primary-dark);
    color: white
}

.submit-btn:hover {
    /* background: var(--primary-dark); */
    /* color: var(--dark); */
    background: transparent;
    color: var(--primary-dark);
    border: 1px solid var(--primary-dark);
    transform: translateY(-3px);
}

.submit-btn:disabled {
    opacity: 0.7;
    transform: none;
    cursor: not-allowed;
}

.loading-spinner {
    width: 1rem;
    height: 1rem;
    border: 2px solid white;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.form-footer {
    text-align: center;
    margin-top: 1rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.success-message {
    background: #dcfce7;
    color: #166534;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: none;
}

.success-message.show {
    display: block;
}

header.transperant-header {
    background-color: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    transition: all 0.3s ease;
    /* border-bottom: 1px solid #ffffff26; */
}
header.header {
    background-color: #fff;
    /* background-color: var(--dark); */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

header.transperant-header li a{
    color: white;
}
.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
    /* width: 400px; */
    background: #eee;
    padding: 35px 20px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.testimonial-card .img { 
    position: absolute;
    top: -45px;
}
.testimonial-card span { 
    width: 80px;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 50px;
    background: var(--primary);
    color: white;
    aspect-ratio: 1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-weight: 600;
}
.testimonial-card .img img { 
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.testimonial-card .title-stars .title { 
    font-size: 20px;
    font-weight: 600;
}
.custom-mb {
    margin-bottom: 50px;
}
.testimonial-card .description {
    position: relative;
}
.testimonial-card .description .fa-quote-right , 
.testimonial-card .description .fa-quote-left {
    position: absolute;
    font-size: 25px;
    color: var(--gray);
}
.testimonial-card .description .fa-quote-left {
    top: 0px;
    left: -5px;
}
.testimonial-card .description .fa-quote-right {
    bottom: 0px;
    right: -5px;
}
.testimonial-card .title-stars .stars {
    color: var(--golden);
    font-size: 1rem;
}
.swiper-button-next:after {
    left: -3px;
}
.swiper-button-prev:after {
    right: 2px;
}
.swiper-button-next::after,
.swiper-button-prev::after {
    position: relative;
    background: var(--primary);
    color: white;
    width: 80px;
    height: 40px;
    aspect-ratio: 1;
    border-radius: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px !important;
    font-weight: 600;
    border: 1px solid transparent;
    transition: all 0.3s ease; 
}

/* ✅ Hover the actual button */
.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
    background: white;
    color: var(--primary);
    border-color: var(--primary);
}
.testimonial-card p {
    margin: 0px 15px;
    font-size: 16px;
    font-weight: 500;
}
.title-stars {
    margin-top: 10px;
}
.about-image {
    position: relative;
    height: 300px;
    width: 100%;
    overflow: visible;
}
.about-image img {
    position: relative;
    z-index: 9999;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.shade {
    position: absolute;
    background: var(--primary);
    width: 100%;
    height: 100%;
    z-index: 999;
    overflow: visible;
    border-radius: 10px;
}
.shade.left {
    top: -20px;
    left: -20px;
}
.shade.right {
    top: -20px;
    right: -20px;
}
.benefit-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.testimonial .swiper {
    width: 100%;
    height: 100%;
    padding: 60px 30px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tabletflex {
    display: none;
}
.cta-btns {
    display: flex;
    gap: 20px;
}
.auth-box {
    margin: 110px 0px;
}
.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.copyright li::marker {
    content: none;
}
.copyright .designed a {
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}
.copyright li a:hover{
    color: white;
}
.cta-btns.banner {
    justify-content: center;
}
.text-ellipsis-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}
.text-ellipsis-3 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}
.bg-video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.contentpage-description-section {
    background: #eee;
}
.contentpage-description-section .section-title {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    text-align: start;
}
.contentpage-description-section .dynamic-content { 
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 25px;
}
.contentpage-description-section .contentpage-content {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
    background: white;
    padding: 20px 40px 40px;
    border: 1px solid #02020221;
    border-radius: 10px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}
.contentpage-content .section-title h2, 
.contentpage-content .section-title {
    margin-bottom: 0px;
}
.content-with-ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}
.content-with-ul p strong a {
    color: var(--primary-dark);
}
.custom-ul-content li a:hover,
.content-with-ul p strong a:hover {
    color: var(--dark);
}
.content-with-ul .content-sub-heading {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}
.custom-ul-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-left: 30px;
    list-style: none;
    width: 100%;
}
.custom-ul-content li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 600;
    gap: 10px;
}
.custom-ul-content li a span i {
    width: 50px;
    background: var(--primary);
    color: var(--dark);
    aspect-ratio: 1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 600;
}
/* .content-with-ul .icon-para p, */
.content-with-ul .icon-para {
    display: flex;
    gap: 20px;
    align-items: start;
    justify-content: start;
}
.content-with-ul .icon-para i {
    color: var(--primary);
    /* background: var(--dark); */
    /* border-radius: 50%; */
}
.content-contact-information {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px;
    color: var(--white);
    border-radius: 10px;
}
.uptosale-banner {
    padding: 50px 20px;
    background-image: linear-gradient(rgba(26, 18, 117, 0.88), rgba(26, 18, 117, 0.93)), url(/frontend/assets/images/bg/serviceBg1_1.webp);
}
.content-with-ul .content-sub-heading strong {
    font-weight: bold;
    font-size: 20px;
    color: var(--primary);
}
.content-with-ul .content-sub-heading h1 {
    font-size: 1.7rem;
}
.succesicon-text-prescriber ,
.succesicon-text-clinic {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    background: #eee;
    padding: 30px 0px;
    border-radius: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.succesicon-text-prescriber .check-icon i::before ,
.succesicon-text-clinic .check-icon i::before {
    font-size: 30px;
    width: 30px;
    border-radius: 50%;
    padding: 10px;
    font-weight: bold;
    border: 3px solid #28a745;
    color: #28a745;
}
.succesicon-text-prescriber .success-text ,
.succesicon-text-clinic .success-text { 
    color: var(--dark);
    font-weight: 600;
}

.documents-Submitted-div {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right bottom, var(--primary), var(--primary-dark));
}
.documents-Submitted-div .min-content {
    width: 100%;
}
.gap-lg-5 {
    gap: 50px
}
.gap-lg-4 {
    gap: 40px
}
.gap-lg-3 {
    gap: 30px
}
.gap-lg-2 {
    gap: 20px
}
.gap-lg-1 {
    gap: 10px
}
.row {
    display: flex;
}
.flex-column {
    flex-direction: column
}
.message {
    margin-top: 10px;
}
.documentSubmitted-card-design {
    padding: 50px;
    background: #eee;
    border-radius: 15px;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.2);
}
.form-group.postcode-main {
    justify-content: end;
}
.search-post-code {
    background: var(--primary-dark);
    border: none;
    padding: 18px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.search-post-code:hover {
    transform: translateY(0px);
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 510px) { 
    .content-with-ul {
        gap: 5px;
    }
    .custom-ul-content {
        margin-left: 15px;
        width: auto;
    }
    .content-with-ul .icon-para p {
        width: auto;
        max-width: auto;
    }
    .content-with-ul .icon-para {
        gap: 10px;
    }
    .documentSubmitted-card-design {
        padding: 30px 20px;
    }
    .documents-Submitted-div .text-success {
        font-size: 1.5rem;
    }
    .contact-info .guarantee-box,
    .contact-info .info-header {
        text-align: center;
    } 
    .footer-grid {
        margin-bottom: 20px;
    }
    footer {
        padding: 40px 0 30px;
    }
    .contentpage-content .section-title h2 {
        font-size: 1.7rem;
    }
    .content-with-ul .icon-para i {
        position: relative;
        top: 6px;
    }
    .content-with-ul .icon-para {
        align-items: start;
    }
    .content-with-ul .content-sub-heading {
        align-items: center;
    }
    .content-with-ul .content-sub-heading h1 {
        font-size: 1.4rem;
    }
    .contentpage-description-section .contentpage-content {
        padding: 20px 20px;
    }
    .hero.detailpages-banner {
        height: 28vh;
        align-items: center;
    }
    .tab-btn {
        color: var(--dark);
    }
    .copyright li a {
        text-decoration: none;
    }
    .auth-intro h2 {
        font-size: 2rem!important;
    }
    .copyright {
        flex-direction: column;
    }
    .auth-box {
        margin: 110px 0px 40px 0px;
    }
    .cta {
        background-image: url('/frontend/assets/images/responsive/ready-banner-mobile.webp');
        /* background-repeat:no-repeat;
        background-position: center; */
    }
    .cta {
        padding: 80px 0px;
    }
    .tabletflex {
        display: none;
    }
    .about-image {
        height: 220px;
    }
    .nav-links.active {
        display: flex;
    }
    .about {
        text-align: center;
    }
    .onmobile-orderfirst {
        order: 0;
    }
    .onmobile-ordersecond {
        order: 1;
    }
    .about-text {
        padding: 20px 0px;
    }
    .form-grid {
        width: 100%;
        grid-template-columns: none;
    }
    .benefit-tabs {
        margin-bottom: 15px;
    }
    .step-card {
        width: calc(100% - 0px);
    }
    .cta-btns {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }
    .hero {
        height: 80vh;
    }
    .nav-links li {
        margin: 10px 0;
        text-align: center;
        text-align: start;
    }
    header.transperant-header li a {
        color: black;
    }
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0px;
        flex-direction: column;
        background: white;
        width: 100%;
        height: calc(100vh - 80px);
        padding: 40px 50px;
        transition: left 0.3s ease;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    }
    .nav-links.active {
        display: flex;
    } 
    .nav-links {
        display: none;
    }
    .mobile-menu {
        display: flex;
    }
    .hero h1 {
        /* text-align: start; */
        text-align: center;
        font-size: 2rem;
    }
    .hero-content {
        text-align: center;
        margin-top: 80px;
    }
    .transperant-header .mobile-menu i {
        color: white;
    }
    .logo {
        height: 65px;
    }
    .footer-links a i {
        width: 10%;
        font-size: 18px;
    }
    .benefit-card h3,
    .step-card h3 {
        font-size: 1.3rem;
    }
    .cta h2,
    .about-text h2,
    .section-title h2 {
        font-size: 2rem;
    }
    section {
        padding: 30px 0;
    }
    .shade.right {
        top: -10px;
        right: -10px;
    }
    .shade.left {
        top: -10px;
        left: -10px;
    }
    .testimonial {
        padding: 20px 10px;
    }
    .testimonial-card {
        margin: 0px 0px;
        width: auto;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
    }
    .testimonial .swiper {
        padding: 50px 0px;
    }
    .testimonial .swiper-button-prev,
    .testimonial .swiper-button-next {
        display: none;
    }
    .contact-item-info p {
        font-weight: 500;
    }
    .container {
        padding: 0px 0px;
    }
    .contact-item {
        padding: 10px 10px;
    }
    .contact-item-info {
        width: 75%;
    }
    .transperant-header {
        width: 98%;
    }
    .contact-section,
    .how-it-works,
    .cta,
    .testimonial,
    .about,
    .benefits {
        overflow: hidden;
    }
    .tab-btn {
        padding: 10px 0px;
        width: 50%;
    }
}
@media (max-width: 992px) {
    .about {
        background: #f8fafc;
    }
}

@media only screen and (min-width: 510px) and (max-width:810px) {
    .custom-ul-content {
        margin-left: 15px;
        width: auto;
    }
    .content-with-ul .icon-para p {
        width: auto;
        max-width: auto;
    }
    footer {
        padding: 60px 0 20px;
    }
    .contact-info .guarantee-box,
    .contact-info .info-header {
        text-align: center;
    } 
    .content-with-ul .icon-para {
        align-items: start;
    }
    .content-with-ul .icon-para i {
        position: relative;
        top: 5px;
     }
    .contentpage-content .section-title h2 {
        font-size: 2rem;
    }
    .content-with-ul .content-sub-heading h1 {
        font-size: 1.5rem;
    }
    .hero.detailpages-banner {
        height: 22vh;
    }
    .tab-btn {
        color: var(--dark);
    }
    .copyright li {
        list-style: none;
        list-style-type: none;
    }
    .auth-box {
        margin: 100px 0px;
    }
    .cta {
        background-image: url('/frontend/assets/images/responsive/ready-banner-tablet.webp');
    }
    .cta {
        padding: 80px 0px;
    }
    .tabletflex {
        display: flex;
    }
    .tabletnone {
        display: none;
    }
    .about-text {
        padding: 0px 0px;
    }
    .footer-links a i {
        width: 10%;
    }
    .testimonial-card .description .fa-quote-right {
        right: -8px;
    }
    .testimonial-card .description .fa-quote-left {
        left: -8px;
    }
    .testimonial-card .title-stars .stars {
        font-size: 13px;
    }
    .swiper-button-next::after,
    .swiper-button-prev::after {
        display: none;
    }
    .testimonial .swiper {
        padding: 50px 0px;
    }
    .value-card i {
        font-size: 30px;
    }
    .values {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 10px;
    }
    .benefit-card i {
        font-size: 30px;
    }
    .value-card h3 ,
    .benefit-card h3 {
        font-size: 1rem;
    }
    .section-title p {
        font-weight: 500;
    }
    .section-title h2 {
        font-size: 2.3rem;
    }
    .testimonial-card p,
    .value-card p {
        font-size: 15px;
    }
    .benefit-content p ,
    .step-card p {
        font-size: 15px;
        
    }
    section {
        padding: 40px 0px;
    }
    .step-icon {
        font-size: 25px;
        width: 60px;
    }
    .step-card h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    .cta-btns .btn {
        width: 32%;
    }
    .cta-btns {
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 10px;
    }
    .hero {
        height: 60vh;
    }
    header.transperant-header li a {
        color: black;
    }
    .nav-links.active {
        display: flex;
    }
    .transperant-header .mobile-menu i {
        color: white;
    }
    .mobile-menu {
        display: flex;
    }
    .nav-links {
        display: none;
    }
    .cta
    .testimonial,
    .about,
    .benefits {
        overflow: hidden;
    }
    .tab-btn {
        padding: 10px 0px;
        width: 50%;
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .mobile-menu {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        height: calc(100vh - 80px);
        /* padding: 40px 0; */
        padding: 40px 50px;
        transition: left 0.3s ease;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
        /* text-align: center; */
        text-align: start;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    .steps {
        gap: 20px;
    }
    .step-card {
        padding: 15px 15px;
        width: calc(35% - 30px);
    }
    
    .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .btn-outline {
        margin-left: 0;
    }
    
    .about-content {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    
    .about-image {
        height: 200px;
    }

    .benefit-tabs {
        flex-direction: row;
        margin-bottom: 25px;
    }
}
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
@media only screen and (min-width: 1360px) and (max-width: 1610px) { 
    section {
        padding: 60px 0px;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
}

