/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary-color: #0c1e35;
    --secondary-color: #f36f21;
    /* Swasthiya Orange */
    --accent-blue: #0B4C8C;
    /* Sure Navy */

    /* ICICI Lombard Brand Colors */
    --icici-primary: #f36f21;
    --icici-secondary: #8b3a0a;

    /* HDFC ERGO Brand Colors */
    --hdfc-primary: #ed1c24;
    /* Standard HDFC Red */
    --hdfc-secondary: #004c8f;
    /* HDFC Blue */

    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --white: #ffffff;
    --grey-100: #f3f4f6;
    --grey-200: #e5e7eb;

    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Header */
header {
    background: var(--white);
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 180px;
    /* Increased to improve logo visibility */
    /* Premium Styling */
    background: linear-gradient(to right, #fffcf9, #f4f8ff);
    /* Subtle tint matching split sides */
    border-bottom: 4px solid;
    border-bottom: 4px solid;
    border-image: linear-gradient(to right, var(--secondary-color), var(--accent-blue)) 1;
}

/* Premium Floating Audit Button */
.premium-audit-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    background: linear-gradient(135deg, #0B4C8C 0%, #003366 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(11, 76, 140, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    animation: float 3s ease-in-out infinite;
}

.premium-audit-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 25px rgba(11, 76, 140, 0.5);
    background: linear-gradient(135deg, #0e5aa5 0%, #004080 100%);
}

.audit-icon {
    font-size: 1.2rem;
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Mobile responsive for floating button */
@media (max-width: 768px) {
    .premium-audit-float {
        bottom: 20px;
        left: 20px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Header Start */

.brand-center {
    text-align: center;
}

/* Tagline styling */
.tagline {
    font-size: 1.1rem;
    color: var(--accent-blue);
    margin-top: 10px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.8;
}


.brand-text {
    font-size: 3.5rem;
    /* Increased for premium look */
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.swasthiya-text {
    color: var(--secondary-color);
}

.sure-text {
    color: var(--accent-blue);
    font-style: italic;
}

/* Split Layout */
.split-container {
    display: flex;
    height: 100vh;
    padding-top: 180px;
    /* Clear the fixed header */
    width: 100%;
    position: relative;
}

.split-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.split-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    transition: transform var(--transition-speed) ease;
    z-index: 0;
}

.split-side:hover::before {
    transform: scale(1.05);
    opacity: 0.15;
}

/* Left Side - ICICI */
.side-left {
    background: radial-gradient(circle at top left, #fffcf9, #fff5f0);
    border-right: 1px solid var(--grey-200);
}

.side-left .agent-tag {
    background-color: var(--icici-primary);
    color: white;
}

.side-left h2 {
    color: var(--icici-secondary);
}

.side-left button.cta-btn {
    background: linear-gradient(135deg, var(--icici-primary) 0%, #d65a12 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(243, 111, 33, 0.3);
}

.side-left button.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 111, 33, 0.4);
}

/* Right Side - HDFC */
.side-right {
    background: radial-gradient(circle at top right, #f5faff, #f0f5ff);
}

.side-right .agent-tag {
    background-color: var(--hdfc-secondary);
    color: white;
}

.side-right h2 {
    color: var(--hdfc-secondary);
}

.side-right button.cta-btn {
    background: linear-gradient(135deg, var(--hdfc-secondary) 0%, #003366 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 76, 143, 0.3);
}

.side-right button.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 76, 143, 0.4);
}

/* Content within Split */
.content-wrapper {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 500px;
}

.company-logo-placeholder {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.9;
}

.agent-info {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.agent-tag {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.agent-name {
    display: block;
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.description {
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.1rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    letter-spacing: 0.5px;
}



/* Services Section */
#services {
    padding: 240px 2rem 5rem;
    /* Large top padding for fixed header */
    background-color: #fafbfc;
    text-align: center;
}

.services-grid {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: nowrap;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: nowrap;
}

@media (max-width: 1024px) {
    .services-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .service-card {
        flex: 0 0 calc(50% - 1.5rem);
        max-width: calc(50% - 1.5rem);
    }
}

@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.service-card {
    flex: 1;
    /* Equal width cards */
    min-width: 0;
    /* Allow shrinking */
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-top: 5px solid transparent;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-card:nth-child(1) {
    border-color: var(--secondary-color);
    /* Health - Orange */
}

.service-card:nth-child(2) {
    border-color: #333;
    /* Motor - Neutral/Black */
}

.service-card:nth-child(3) {
    border-color: var(--accent-blue);
    /* House - Blue */
}

.service-card:nth-child(4) {
    border-color: var(--secondary-color);
    /* Travel - Orange */
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--grey-100);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    transition: background-color 0.3s;
}

.service-card:hover .icon-wrapper.health-icon {
    background-color: rgba(243, 111, 33, 0.1);
    color: var(--secondary-color);
}

.service-card:hover .icon-wrapper.motor-icon {
    background-color: rgba(51, 51, 51, 0.1);
    color: #333;
}

.service-card:hover .house-icon {
    background-color: rgba(11, 76, 140, 0.1);
    color: var(--accent-blue);
}

.service-card:hover .travel-icon {
    background-color: rgba(243, 111, 33, 0.1);
    color: var(--secondary-color);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    /* Push button to bottom */
}

.service-cta {
    display: inline-block;
    padding: 0.7rem 1.2rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.service-cta:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Contact Section */
#contact-section {
    padding: 5rem 2rem;
    background: var(--white);
    text-align: center;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contact-form {
    display: grid;
    gap: 1.5rem;
    text-align: left;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--grey-200);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid var(--grey-200);
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(11, 76, 140, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d65a12 100%);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 111, 33, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(243, 111, 33, 0.4);
}

/* Success Message */
.hidden {
    display: none !important;
}

#form-success-message {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--grey-200);
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: #2e7d32;
}

.success-icon svg {
    width: 40px;
    height: 40px;
}

#form-success-message h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

#form-success-message p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Footer */
/* Footer */
footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 60px 2rem 30px;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.disclaimer {
    max-width: 900px;
    margin: 2rem auto 0;
    text-align: left;
    color: #666;
    font-size: 0.8rem;
    line-height: 1.6;
    border-top: 1px solid #ddd;
    padding-top: 1.5rem;
}

.disclaimer h4 {
    color: #555;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.disclaimer strong {
    color: #333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .split-container {
        flex-direction: column;
        height: auto;
    }

    .split-side {
        padding: 4rem 1rem;
        min-height: 50vh;
    }

    .brand-logo {
        font-size: 1.5rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 40px;
    background-color: #25d366;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

.whatsapp-float svg {
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 70px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}

/* Blog Section */
#blog-section {
    padding: 100px 0;
    background-color: #fcfdfe;
}

#blog-section .container {
    max-width: 1400px;
    /* Wider container for horizontal scroll */
    padding: 0 2rem;
}

.blog-grid {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    margin-top: 50px;
    padding-bottom: 2rem;
    /* Space for shadow/hover transform */
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    flex: 0 0 350px;
    /* Fixed width for cards */
    min-width: 350px;
    scroll-snap-align: start;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.blog-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 12px;
    letter-spacing: 1px;
    display: block;
}

.blog-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.3;
}

.blog-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    font-weight: 600;
    color: var(--accent-blue);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    #blog-section {
        padding: 60px 0;
    }

    .blog-card {
        flex: 0 0 300px;
        min-width: 300px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    /* Maintain horizontal scroll on tablets too */
}

/* About Us Section */
#about-section {
    padding: 100px 0;
    background-color: #fff;
}

.about-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 50px;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: left;
    margin-top: 40px;
}

.detail-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #f8fbff;
    border-radius: 12px;
    border: 1px solid rgba(11, 76, 140, 0.05);
    transition: transform 0.3s ease;
}

.detail-item:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.detail-icon {
    color: var(--secondary-color);
    flex-shrink: 0;
}

.detail-text strong {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    margin-bottom: 0;
    margin-right: 5px;
}

.detail-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
    margin: 0;
}

@media (max-width: 768px) {
    #about-section {
        padding: 60px 0;
    }

    .contact-details-grid {
        grid-template-columns: 1fr;
    }
}

/* Advisor Badges Alignment */
.advisor-badge-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.advisor-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background-color: #f8fbff;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    border: 1px solid rgba(11, 76, 140, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.advisor-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
}

/* Article Pages Styling */
.article-header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.article-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.back-link:hover {
    transform: translateX(-5px);
}

.article-content {
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

.article-category {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.article-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
}

.article-intro {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 50px;
}

.checklist-box {
    background: #f8fbff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(11, 76, 140, 0.1);
    margin: 40px 0;
}

.checklist-box h3 {
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.checklist-items {
    list-style: none;
    padding: 0;
}

.checklist-items li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.checklist-items li:last-child {
    border-bottom: none;
}

.check-icon {
    color: #28a745;
    flex-shrink: 0;
    margin-top: 3px;
}

.checklist-items strong {
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.checklist-items p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
}

.article-cta {
    text-align: center;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .article-title {
        font-size: 2rem;
    }

    .checklist-box {
        padding: 25px;
    }
}

/* Offline Advantage Section */
/* Free Expert Benefits Section */
#free-benefits-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, #1e88e5 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-blue);
}

.highlight-benefit {
    border-color: var(--accent-blue);
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
}

.highlight-benefit::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, #1e88e5 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: white;
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3);
}

.benefit-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 60px;
}

/* Premium CTA Buttons */
.premium-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 0.5px;
    margin-top: auto;
    align-self: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.premium-cta-btn .btn-icon {
    transition: transform 0.3s ease;
}

.premium-cta-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Glass-morphic Shine Effect */
.premium-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: all 0.6s;
    z-index: -1;
}

.premium-cta-btn:hover::before {
    left: 100%;
}

.premium-cta-btn.orange {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d35400 100%);
    color: white !important;
    box-shadow: 0 4px 15px rgba(240, 107, 31, 0.3), 0 0 0 0px rgba(240, 107, 31, 0.2);
}

.premium-cta-btn.blue {
    background: linear-gradient(135deg, var(--accent-blue) 0%, #003366 100%);
    color: white !important;
    box-shadow: 0 4px 15px rgba(11, 76, 140, 0.2), 0 0 0 0px rgba(11, 76, 140, 0.1);
}

.premium-cta-btn:hover {
    transform: translateY(-4px);
}

.premium-cta-btn.orange:hover {
    box-shadow: 0 12px 25px rgba(240, 107, 31, 0.45), 0 0 0 4px rgba(240, 107, 31, 0.15);
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}

.premium-cta-btn.blue:hover {
    box-shadow: 0 12px 25px rgba(11, 76, 140, 0.35), 0 0 0 4px rgba(11, 76, 140, 0.1);
    background: linear-gradient(135deg, #0e5aa5 0%, #004080 100%);
}

.benefit-cta::after {
    display: none;
}

.value-promise {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0c1e35 0%, #153255 100%);
    padding: 2.5rem 3rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.promise-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--secondary-color);
}

.promise-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: white;
    margin-bottom: 0.75rem;
}

.promise-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Responsive for Benefits Grid */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    #free-benefits-section {
        padding: 4rem 1rem;
    }

    .benefit-card p {
        min-height: auto;
    }

    .value-promise {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .promise-content h4 {
        font-size: 1.3rem;
    }
}

/* How It Works Section */
#how-it-works-section {
    padding: 6rem 2rem;
    background: white;
}

#how-it-works-section .container {
    max-width: 1400px;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 3rem;
    flex-wrap: nowrap;
}

.step-card {
    flex: 1;
    max-width: 280px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-blue);
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, #1e88e5 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(33, 150, 243, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: var(--accent-blue);
}

.step-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
}

.step-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.step-connector {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    margin: 0 -0.5rem;
    z-index: 1;
}

/* Responsive for Trust Grid */
@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .steps-container {
        flex-wrap: wrap;
    }

    .step-connector {
        display: none;
    }

    .step-card {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    #trust-section {
        padding: 3rem 1rem;
    }

    #how-it-works-section {
        padding: 4rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .step-card {
        padding: 2rem 1.5rem;
    }
}

/* Vision / Promise Section */
#vision-section {
    padding: 6rem 2rem;
    background-color: #fdfdfd;
    text-align: center;
    position: relative;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

#vision-section::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    color: rgba(243, 111, 33, 0.05);
    line-height: 0;
    pointer-events: none;
}

.vision-content {
    max-width: 900px;
    margin: 0 auto;
}

.vision-content p {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: #444;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.signatures {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.signature-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sign-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.sign-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    #vision-section {
        padding: 4rem 1.5rem;
    }

    .vision-content p {
        font-size: 1.2rem;
    }

    .signatures {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Why SwasthiyaSure Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fff5f0, #fffcf9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: var(--secondary-color);
    box-shadow: 0 4px 10px rgba(243, 111, 33, 0.1);
}

.feature-card h4 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
}

.feature-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Verified Badge Styling */
.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.06);
    color: #444;
    margin-top: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.verified-badge svg {
    color: var(--secondary-color);
}

/* Verified Badge Styling */
.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.04);
    color: #555;
    margin-top: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.verified-badge svg {
    color: var(--secondary-color);
}

.verified-badge:hover {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* NRI Section Styling */
#nri-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f3ff 100%);
    text-align: center;
}

.nri-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.nri-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid transparent;
    transition: transform 0.3s ease;
}

.nri-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nri-card.highlight-card {
    border-top: 4px solid var(--secondary-color);
    background: #fffcf9;
}

.nri-icon {
    width: 64px;
    height: 64px;
    background: rgba(11, 76, 140, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: var(--accent-blue);
}

.highlight-card .nri-icon {
    background: rgba(243, 111, 33, 0.1);
    color: var(--secondary-color);
}

.nri-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.nri-card p {
    color: #555;
    line-height: 1.6;
}

.nri-cta {
    margin-top: 3rem;
}

@media(max-width: 1100px) {
    .nri-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .nri-grid {
        grid-template-columns: 1fr;
    }
}

/* GST Banner */
#gst-banner {
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 0;
    text-align: center;
    font-size: 0.95rem;
    position: relative;
    z-index: 10;
}

#gst-banner .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.banner-icon {
    font-size: 1.2rem;
}

#gst-banner .highlight {
    color: #ffd700;
    font-weight: 700;
}

.banner-link {
    color: white;
    text-decoration: underline;
    font-weight: 600;
    margin-left: 0.5rem;
    transition: opacity 0.3s;
}

.banner-link:hover {
    opacity: 0.8;
}

/* GST Alert Section */
#gst-alert-section {
    padding: 2rem 0;
    background: white;
}

.alert-box {
    background: linear-gradient(135deg, #fffbf0 0%, #fff 100%);
    border: 2px solid #F36F21;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 10px 30px rgba(243, 111, 33, 0.15);
    position: relative;
    overflow: hidden;
}

.alert-content {
    flex: 1;
}

.alert-badge {
    display: inline-block;
    background: #e53935;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.alert-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.big-zero {
    color: #F36F21;
    font-weight: 800;
    font-size: 2.8rem;
}

.alert-sub {
    font-size: 1.1rem;
    color: #555;
}

.alert-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
}

.savings-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #2e7d32;
    font-size: 1.1rem;
}

.small-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
}

@media(max-width: 768px) {
    .alert-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .alert-action {
        width: 100%;
    }
}

/* Provider Offers Styling */
.provider-offers {
    margin-top: 4rem;
    text-align: left;
}

.subsection-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.offer-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border-left: 5px solid #ccc;
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.icici-offer {
    border-left-color: var(--icici-primary);
}

.hdfc-offer {
    border-left-color: #E21717;
}

.offer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.provider-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: #333;
}

.offer-tag {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.offer-list {
    list-style: none;
    padding: 0;
}

.offer-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    font-size: 0.95rem;
}

.offer-list li::before {
    content: '';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

@media(max-width: 768px) {
    .offers-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile Header Adjustments */
    header {
        flex-direction: column;
        padding: 1rem;
        height: auto;
        min-height: auto;
        gap: 1rem;
    }

    .logo-link {
        position: static !important;
        margin-bottom: 0.5rem;
    }

    .logo-link img {
        height: 80px !important;
        /* Smaller logo on mobile */
    }

    .logo-link img {
        height: 80px !important;
        /* Smaller logo on mobile */
    }

    .split-container {
        padding-top: 280px;
        /* Increased padding top to account for stacked header */
    }
}

/* Testimonials Section */
/* Testimonials Section */
#testimonials-section {
    padding: 3rem 2rem;
    /* Reduced from 5rem */
    background-color: #fffcf9;
    text-align: center;
}

.testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    /* Reduced gap */
    margin-top: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    background: white;
    padding: 1.5rem;
    /* Reduced from 2.5rem */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 280px;
    /* Smaller minimum */
    max-width: 320px;
    /* Smaller maximum */
    text-align: left;
    position: relative;
    border-top: 3px solid var(--secondary-color);
}

.quote-icon {
    font-size: 2rem;
    /* Smaller icon */
    color: #ffd1b3;
    position: absolute;
    top: 0.8rem;
    right: 1rem;
    font-family: serif;
}

.testimonial-text {
    font-size: 0.95rem;
    /* Slightly smaller text */
    line-height: 1.5;
    color: #555;
    margin-bottom: 1rem;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.client-avatar {
    width: 40px;
    /* Smaller avatar */
    height: 40px;
    background: var(--grey-100);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1rem;
}

.client-details h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.client-details span {
    font-size: 0.8rem;
    color: #777;
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 100%;
        margin-bottom: 1rem;
    }
}

/* FORCE EDITORIAL STYLE */
#testimonials-section {
    padding: 4rem 2rem !important;
    background-color: #fffcf9 !important;
}

.testimonials-grid {
    gap: 0 !important;
    max-width: 1000px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.testimonial-card {
    background: transparent !important;
    padding: 0 2rem !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    min-width: 250px !important;
    text-align: center !important;
    border-top: none !important;
    border-right: 1px solid #e0e0e0 !important;
}

.testimonial-card:last-child {
    border-right: none !important;
}

.quote-icon {
    font-size: 2.5rem !important;
    opacity: 0.3 !important;
    position: static !important;
    display: block !important;
    margin: 0 auto 1rem auto !important;
}

.testimonial-text {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.1rem !important;
    font-style: italic !important;
}

.client-info {
    flex-direction: column !important;
    gap: 0.5rem !important;
}

.client-avatar {
    width: 45px !important;
    height: 45px !important;
    margin-bottom: 0.5rem !important;
    background: white !important;
    border: 1px solid #eee !important;
}

.client-details h4 {
    font-size: 0.95rem !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
}

@media (max-width: 768px) {
    .testimonial-card {
        border-right: none !important;
        border-bottom: 1px solid #eee !important;
        padding-bottom: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .testimonial-card:last-child {
        border-bottom: none !important;
    }
}

/* Partners Section */
#partners-section {
    padding: 100px 2rem;
    background: linear-gradient(to bottom, #fafbfc, #ffffff);
}

#partners-section .container {
    max-width: 1200px;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

/* Partner Card */
.partner-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid var(--grey-200);
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Partner Logo Container */
.partner-logo-container {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 3px solid var(--grey-100);
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

/* HDFC ERGO Logo */
.hdfc-logo .logo-text-hdfc {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: #F36F21;
    letter-spacing: -1px;
    line-height: 1;
}

.hdfc-logo .logo-text-ergo {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: #0B4C8C;
    letter-spacing: -1px;
    line-height: 1;
}

/* ICICI Lombard Logo */
.icici-logo .logo-text-icici {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: #ED1C24;
    letter-spacing: -1px;
    line-height: 1;
}

.icici-logo .logo-text-lombard {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: #00529C;
    letter-spacing: -1px;
    line-height: 1;
}

/* Partner Content */
.partner-content {
    padding: 2rem;
}

.partner-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 1rem 0;
}

.partner-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.partner-description {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Partner Features List */
.partner-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.partner-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
}

.partner-features li:last-child {
    border-bottom: none;
}

.partner-features svg {
    flex-shrink: 0;
    stroke: #28a745;
}

/* Partner Contact */
.partner-contact {
    background: #f8f9fa;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-blue);
    font-size: 0.95rem;
    color: #555;
}

.partner-contact strong {
    color: #333;
}

/* Partner Disclaimer */
.partner-disclaimer {
    margin-top: 3rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-left: 4px solid var(--accent-blue);
    border-radius: 8px;
    text-align: center;
}

.partner-disclaimer p {
    margin: 0;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
}

.partner-disclaimer em {
    font-style: italic;
}

/* Responsive Design for Partners Section */
@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    #partners-section {
        padding: 60px 1rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .partner-logo-container {
        padding: 2rem 1.5rem;
    }

    .hdfc-logo .logo-text-hdfc,
    .hdfc-logo .logo-text-ergo,
    .icici-logo .logo-text-icici,
    .icici-logo .logo-text-lombard {
        font-size: 2.5rem;
    }

    .partner-content {
        padding: 1.5rem;
    }

    .partner-content h3 {
        font-size: 1.3rem;
    }
}