/* GF Investments - Premium Stylesheet */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif !important;
}

:root {
    --primary-color: #1a4d8c;
    --secondary-color: #1a4d8c;
    --accent-color: #2c5f8d;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Smooth scrollbar (webkit-based browsers) */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Header & Navigation */
header {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.logo-link:hover {
    text-decoration: none;
}

.logo {
    width: 220px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: none;
}

.header-container .logo {
    width: 280px;
    height: 160px;
}

.logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.company-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.header-container nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    transition: var(--transition);
    justify-content: flex-end;
    flex-wrap: wrap;
    width: auto;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Remove underline for Contact Us link */
nav ul li a[href*="contact.html"]::after,
nav ul li.nav-contact-item a::after {
    display: none;
}

nav > ul > li:last-child {
    display: none;
}

.button-base,
button,
.nav-cta,
.submit-btn,
.plan-read-more,
.products-tab,
.partner-arrow,
.slider-arrows,
.chatbot-button,
.send-button,
.plan-read-more,
.plan-overlay a,
.service-card a,
.plan-section .plan-read-more {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

button:hover,
.nav-cta:hover,
.submit-btn:hover,
.plan-read-more:hover,
.products-tab:hover,
.partner-arrow:hover,
.slider-arrows:hover,
.chatbot-button:hover,
.send-button:hover,
.service-card a:hover,
.plan-section .plan-read-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(26, 77, 140, 0.2);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(26, 77, 140, 0.15);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    z-index: 1002;
    margin-left: auto;
    flex-direction: column;
    gap: 0;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--primary-color);
    margin: 0;
    border-radius: 2px;
    transition: var(--transition);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.05);
    transform-origin: center;
    position: relative;
}

.menu-toggle span:nth-child(1) {
    margin-top: 0;
}

.menu-toggle span:nth-child(2) {
    margin-top: 6px;
}

.menu-toggle span:nth-child(3) {
    margin-top: 6px;
}

.menu-toggle:not(.open) span {
    transform: none !important;
    opacity: 1 !important;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.6rem;
    border-radius: 999px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    min-width: 120px;
}

.nav-cta:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 10px 25px rgba(26, 77, 140, 0.25);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 25px var(--shadow);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    z-index: 1001;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-content a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 2rem;
}

.dropdown-open > .dropdown-content {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Image Slider */
.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-bottom: 4rem;
}

.slider {
    display: flex;
    width: 500%;
    height: 100%;
    transition: transform 0.8s ease-in-out;
}

.slide {
    width: 20%;
    height: 100%;
    position: relative;
}

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    padding: 2rem;
}

.slide-content h2 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.slide-content p {
    font-size: 1.4rem;
    max-width: 700px;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35), 0 1px 2px rgba(0, 0, 0, 0.25);
    color: #ffffff;
}

.slide-content a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    background: #fff !important;
    color: var(--primary-color) !important;
    font-weight: 600 !important;
    padding: 0.65rem 1.8rem !important;
    border-radius: 999px !important;
    margin-top: 1.2rem !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease !important;
}

.slide-content a:hover {
    transform: translateY(-3px);
    background: var(--secondary-color) !important;
    color: /* var(--text-dark) */ whitesmoke !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.slide.light .slide-overlay {
    background: #f3f6fb;
    color: var(--text-dark);
}

.slide.light .slide-content h2,
.slide.light .slide-content p {
    text-shadow: none;
}

.slide-illustration {
    position: absolute;
    right: 6%;
    bottom: 0;
    max-height: 90%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 30px rgba(0,0,0,0.15));
}

.slide.light .slide-content {
    max-width: 55%;
    text-align: left;
    margin-left: 8%;
}

.slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.slider-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background:  rgba(255, 255, 255, 0.5) ;
    border: 2px solid var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn.active {
    background: var(--white);
    transform: scale(1.2);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(5px);
}

.slider-arrows:hover {
    background: rgba(255, 255, 255, 0.3);
}

.prev-arrow {
    left: 2rem;
}

.next-arrow {
    right: 2rem;
}

/* Sections */
section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.reveal-ready {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* About Section */
.about-section {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 3rem;
    margin: 2rem auto;
    box-shadow: 0 5px 20px var(--shadow);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    width: 100%;
    height: 300px;
    background: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Services/Products Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(26, 77, 140, 0.2);
}

.service-image {
    width: 100%;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* About Page Sections */
.mission-vision-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mvv-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.mvv-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    display: block;
    margin-bottom: 1.25rem;
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 77, 140, 0.2);
}

.mvv-card .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.mvv-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.mvv-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Contact Page */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(26, 77, 140, 0.2);
}
.contact-info-card {
    background: linear-gradient(135deg, rgba(26,77,140,0.04), rgba(44,95,141,0.04));
    background-size: 200% 200%;
    transition: background-position .4s ease, transform .35s ease, box-shadow .35s ease;
}
.contact-info-card:hover {
    background-position: right center;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 77, 140, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 77, 140, 0.3);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 500px;
    border: none;
}

/* Product Pages */
.product-hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 0;
    text-align: center;
    margin-bottom: 3rem;
    overflow: hidden;
}

.product-hero img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.product-hero > div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.product-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.product-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    line-height: 1.8;
    color: var(--text-light);
}

.product-content h2 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.product-content ul {
    margin-left: 2rem;
    margin-top: 1rem;
}

.product-content li {
    margin-bottom: 0.5rem;
}

.product-showcase {
    max-width: 1100px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 0 2rem;
    width: 100%;
}

.showcase-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.showcase-text p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.showcase-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.highlight-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px var(--shadow);
    border: 1px solid rgba(26, 77, 140, 0.08);
}

.highlight-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.highlight-card p {
    color: var(--text-light);
}

.showcase-image {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(26, 77, 140, 0.25);
}

.showcase-image::after {
    content: none;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.showcase-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--white);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(26, 77, 140, 0.2);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.showcase-badge span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    font-size: 1.1rem;
}

.partners-section {
    padding: 0 2rem;
    margin: 4rem auto;
    max-width: 1200px;
}

.partners-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.partners-section p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.partner-slider {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 25px var(--shadow);
    padding: 1.5rem 0;
}

.partner-track {
    display: flex;
    gap: 3rem;
    align-items: center;
    /* animation: scrollPartners 22s linear infinite;
    will-change: transform; */
}

.partner-logo {
    width: 130px;
    height: 70px;
    border-radius: 12px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(26, 77, 140, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    opacity: 0.85;
}

.plan-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.plan-section .section-title {
    margin-bottom: 1.5rem;
}

.plan-section > p {
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.plan-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 35px rgba(26, 77, 140, 0.18);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
    cursor: pointer;
}

.plan-card:not(.service-style) img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 45px rgba(26, 77, 140, 0.25);
}

.plan-card:hover img {
    transform: scale(1.08);
}

.plan-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 29, 58, 0.05) 0%, rgba(5, 29, 58, 0.8) 100%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    gap: 0.75rem;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.plan-card:hover .plan-overlay {
    opacity: 1;
}

.plan-overlay h3 {
    font-size: 1.4rem;
    font-weight: 600;
}

.plan-overlay p {
    font-size: 0.95rem;
    opacity: 0.85;
}

.plan-read-more {
    align-self: flex-start;
    background: var(--white);
    color: var(--primary-color);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.plan-read-more:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
}

/* Service-style plan cards to match Our Products & Services cards */
.plan-card.service-style {
    background: var(--white);
    border: 1px solid rgba(26, 77, 140, 0.08);
    box-shadow: 0 5px 20px var(--shadow);
}
.plan-card.service-style {
    overflow: hidden;
}

.plan-card.service-style img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    display: block;
}
.plan-card.service-style .plan-overlay {
    position: static;
    background: none;
    color: var(--text-dark);
    opacity: 1;
    padding: 1.25rem 1.5rem 1.5rem;
}
.plan-card.service-style .plan-overlay h3 {
    color: var(--primary-color);
}
.plan-card.service-style .plan-overlay p {
    opacity: 1;
}
.plan-card.service-style .plan-read-more {
    background: var(--primary-color);
    color: #fff;
}
.plan-card.service-style:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(26, 77, 140, 0.18);
}
@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Home Partner Slider */
.home-partners {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
}

.home-partners .section-title {
    margin-bottom: 1.5rem;
}

.home-partners > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.partner-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.partner-arrow {
    background: var(--white);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(26, 77, 140, 0.2);
    color: var(--primary-color);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-arrow:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.partner-viewport {
    overflow: hidden;
    flex: 1;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(26, 77, 140, 0.15);
    background: var(--white);
    padding: 2.5rem;
}

.partner-cards {
    display: flex;
    transition: transform 0.6s ease;
    will-change: transform;
}

.partner-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(170px, 1fr));
    gap: 2rem;
}

.logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 16px;
    height: 160px;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: inset 0 0 0 2px rgba(26, 77, 140, 0.08);
    text-align: center;
    padding: 1.25rem;
    transition: var(--transition);
}
.logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
/* Product partners */
.partner-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: none;
}

.logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 28px rgba(26, 77, 140, 0.2);
}

.partner-dots {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.partner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(26, 77, 140, 0.25);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.partner-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}
/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3.5rem 2rem 2rem;
    margin-top: 4rem;
    font-family: 'Poppins', sans-serif !important;
}

/* FIXED GRID – Proper column sizes */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}

/* Headings */
.footer-section h3 {
    color: rgb(10, 254, 10);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

/* Footer section wrapper */
.footer-section {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

/* NORMAL paragraph wrapping (fixes overflow) */
.footer-section p {
    margin: 0;
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.5;
    white-space: normal;
    padding-top: 0.5rem;  /* Allow wrapping */
}

/* For QUICK LINKS only → keep in one line */
.footer-section ul li a {
    white-space: nowrap; /* Fix line break only for menu links */
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-section ul li a:hover {
    color: rgb(10, 254, 10);
}

/* Social icons */
.social-icons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

/* Contact section → single-line items */
.footer-contact li {
    white-space: nowrap; /* KEEP IN ONE LINE */
    color: #ccc;
}

/* Footer logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo .logo {
    width: 200px;
    height: auto;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    color: #aaa;
    font-size: 0.9rem;
}


/* Chatbot */
.chatbot-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
}

.chatbot-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(26, 77, 140, 0.4);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(26, 77, 140, 0.5);
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chatbot-window.active {
    display: flex;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.close-chatbot {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    background: var(--bg-light);
}

.message {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.message.bot {
    align-items: flex-start;
}

.message.user {
    align-items: flex-end;
}

.message-content {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: 15px;
    word-wrap: break-word;
}

.message.bot .message-content {
    background: var(--white);
    color: var(--text-dark);
    box-shadow: 0 2px 5px var(--shadow);
}

.message.user .message-content {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
}

.chatbot-input-container {
    padding: 1rem;
    background: var(--white);
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 0.5rem;
}

.chatbot-input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.chatbot-input:focus {
    border-color: var(--primary-color);
}

.send-button {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.send-button:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .header-container .logo {
        width: 210px;
        height: 130px;
    }
    
    .slide-content h2 {
        font-size: 2.2rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .product-hero img {
        height: 300px;
    }
    
    .product-hero h1 {
        font-size: 2rem;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .mission-vision-values {
        grid-template-columns: 1fr;
    }

    .slider-container {
        height: 400px;
    }

    .section-title {
        font-size: 2rem;
    }

    .product-showcase {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 2rem;
    }

    .showcase-text h2 {
        font-size: 2rem;
    }

    .showcase-badge {
        bottom: 1rem;
        left: 1rem;
    }

    .partner-slider {
        padding: 1rem 0;
    }

    .partner-track {
        gap: 1.5rem;
    }

    .plan-grid {
        grid-template-columns: 1fr;
    }

    .plan-overlay {
        opacity: 1;
    }

    .home-partners {
        padding: 3rem 1.5rem 1.5rem;
    }

    .partner-carousel {
        flex-direction: column;
        gap: 1rem;
    }

    .partner-arrow {
        width: 42px;
        height: 42px;
        font-size: 1.5rem;
    }

    .partner-viewport {
        width: 100%;
        padding: 1.5rem;
    }

    .partner-slide {
        grid-template-columns: repeat(2, minmax(160px, 1fr));
        gap: 1rem;
    }

    .chatbot-window {
        width: 100vw;
        height: 100vh;
        bottom: 0;
        right: 0;
        left: 0;
        top: 0;
        border-radius: 0;
        position: fixed;
        z-index: 10000;
    }

    .chatbot-backdrop {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9999;
    }

    .chatbot-container {
        bottom: 1rem;
        right: 1rem;
    }

    .chatbot-button {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
    }
}

/* Mobile Contact Page Responsive Styles */
@media (max-width: 768px) {
    /* Contact Form and Map Container - First container with form and map */
    section > .contact-container:first-of-type {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        padding: 0 1rem;
        display: grid !important;
    }

    .contact-form {
        padding: 1.5rem;
        width: 100%;
        order: 1;
    }

    .contact-form h3 {
        font-size: 1.5rem;
    }

    .map-container {
        width: 100%;
        height: 300px !important;
        order: 2;
    }

    .map-container iframe {
        height: 100% !important;
    }

    /* Contact Info Cards - Second container with cards */
    section > .contact-container:last-of-type {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        padding: 0 1rem;
        display: grid !important;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

    .contact-icon {
        font-size: 2rem;
    }

    /* Plan Card Images - Full Cover on Mobile */
    .plan-card.service-style img {
        height: 250px !important;
        object-fit: cover !important;
        object-position: center !important;
        width: 100% !important;
    }

    .plan-card:not(.service-style) img {
        height: 220px !important;
        object-fit: cover !important;
        object-position: center !important;
        width: 100% !important;
        aspect-ratio: unset !important;
    }

    /* Plan Page Hero Images - Full Cover on Mobile */
    .health-plan-hero,
    .plan-hero,
    .lifetime-legacy-hero,
    .term-defender-hero,
    .income-shield-hero,
    .wealth-builder-hero,
    .executive-elite-hero,
    .family-promise-hero,
    .family-care-hero,
    .prime-individual-hero,
    .senior-secure-hero,
    .critical-shield-hero,
    .corporate-wellness-hero,
    .family-care-max-hero,
    .global-student-hero,
    .mutual-hero,
    .balanced-advantage-hero,
    .equity-momentum-hero,
    .global-opportunities-hero,
    .income-plus-hero,
    .tax-saver-elss-hero,
    .smart-sip-hero {
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        height: 300px !important;
    }

    .product-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .showcase-image {
        width: 100%;
    }

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

    .section-title {
        font-size: 1.8rem;
        padding: 0 1rem;
    }

    section {
        padding: 2rem 0;
    }

    section > p {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .company-name {
        font-size: 1.4rem;
    }

    .slide-content h2 {
        font-size: 1.5rem;
    }

    /* Contact Page Mobile Enhancements */
    .contact-form {
        padding: 1.25rem;
    }

    .contact-form h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.95rem;
    }

    .map-container {
        height: 250px !important;
    }

    .contact-info-card {
        padding: 1.25rem;
    }

    .contact-info-card h3 {
        font-size: 1.1rem;
    }

    .contact-info-card p {
        font-size: 0.9rem;
    }

    /* Plan Card Images - Full Cover on Small Mobile */
    .plan-card.service-style img {
        height: 220px !important;
        object-fit: cover !important;
        object-position: center !important;
        width: 100% !important;
    }

    .plan-card:not(.service-style) img {
        height: 200px !important;
        object-fit: cover !important;
        object-position: center !important;
        width: 100% !important;
        aspect-ratio: unset !important;
    }

    /* Plan Page Hero Images - Full Cover on Small Mobile */
    .health-plan-hero,
    .plan-hero,
    .lifetime-legacy-hero,
    .term-defender-hero,
    .income-shield-hero,
    .wealth-builder-hero,
    .executive-elite-hero,
    .family-promise-hero,
    .family-care-hero,
    .prime-individual-hero,
    .senior-secure-hero,
    .critical-shield-hero,
    .corporate-wellness-hero,
    .family-care-max-hero,
    .global-student-hero,
    .mutual-hero,
    .balanced-advantage-hero,
    .equity-momentum-hero,
    .global-opportunities-hero,
    .income-plus-hero,
    .tax-saver-elss-hero,
    .smart-sip-hero {
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        height: 280px !important;
    }

    .product-hero h1 {
        font-size: 2rem;
    }

    .partner-slide {
        grid-template-columns: 1fr;
    }

    .logo-card {
        height: 90px;
    }
}

.contact-container {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
    align-items: stretch;
}

.contact-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-info-card:hover h3,
.contact-info-card:hover p {
    color: #fff;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* ==== Partner Infinite Loop ==== */
.home-partners {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
}

.home-partners h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.home-partners p {
    color: #555;
    margin-bottom: 40px;
    font-size: 1rem;
}

.partner-loop {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.partner-track {
    display: flex;
    align-items: center;
    gap: 60px; /* space between logos */
    width: max-content;
    animation: scrollLoop 35s linear infinite; /* speed control */
}

.partner-track img {
    height: 100px;  /* bigger logos */
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
    filter: grayscale(20%);
    opacity: 0.95;
}

.partner-track img:hover {
    transform: scale(1.15);
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scrollLoop {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .partner-track img {
        height: 70px;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    header {
        padding: 0.4rem 0;
        margin-bottom: 0;
    }

    .header-container {
        position: relative;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0;
        padding: 0.4rem 1rem;
        margin-bottom: 0;
    }

    .logo-section {
        flex: 0 0 auto;
    }

    .header-container .logo {
        width: 140px;
        height: 75px;
    }

    nav {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }

    nav ul {
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
        background: var(--white);
        border-radius: 12px;
        padding: 1rem;
        margin-top: 0.5rem;
        box-shadow: 0 15px 35px rgba(26, 77, 140, 0.12);
        display: none;
        list-style: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        z-index: 1001;
    }

    .header-container.nav-open nav ul {
        display: flex;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        display: block;
        width: 100%;
        padding: 0.6rem 0;
        font-size: 0.95rem;
    }

    .menu-toggle {
        display: inline-flex;
        width: 44px;
        height: 44px;
        margin-left: auto;
        background: var(--primary-color);
        border: 2px solid var(--primary-color);
        box-shadow: 0 2px 8px rgba(26, 77, 140, 0.2);
    }

    .menu-toggle span {
        width: 28px;
        height: 3.5px;
        background: var(--white);
        box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    }

    .menu-toggle:hover {
        background: var(--accent-color);
        border-color: var(--accent-color);
        transform: scale(1.05);
    }

    nav ul li.nav-contact-item {
        order: 4;
        margin-top: 0.5rem;
    }

    nav ul li.nav-contact-item .nav-cta {
        width: 100%;
        justify-content: center;
        display: inline-flex;
    }

    .header-container.nav-open nav ul li.nav-contact-item {
        display: list-item;
    }

    .dropdown-content {
        width: 100%;
        position: static;
        box-shadow: none;
        padding: 0;
        margin-top: 0;
        display: none;
    }

    .dropdown.dropdown-open .dropdown-content {
        display: block !important;
        padding-left: 1.5rem;
        margin-top: 0.75rem;
        background: rgba(26, 77, 140, 0.05);
        border-radius: 8px;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .dropdown > a {
        position: relative;
        padding-right: 1.5rem;
        font-weight: 600;
    }

    .dropdown > a::after {
        content: ' ▼';
        font-size: 0.7em;
        position: absolute;
        right: 0;
        transition: transform 0.3s ease;
    }

    .dropdown.dropdown-open > a::after {
        transform: rotate(180deg);
    }

    .dropdown-content a {
        padding: 0.85rem 1rem;
        display: block;
        color: var(--text-dark);
        text-decoration: none;
        border-radius: 6px;
        transition: var(--transition);
        margin-bottom: 0.35rem;
        font-weight: 500;
        font-size: 0.95rem;
        cursor: pointer;
        position: relative;
    }

    .dropdown-content a::before {
        content: '→';
        position: absolute;
        left: 0.5rem;
        opacity: 0;
        transition: var(--transition);
    }

    .dropdown-content a:hover {
        background: rgba(26, 77, 140, 0.12);
        color: var(--primary-color);
        padding-left: 1.5rem;
        transform: translateX(3px);
    }

    .dropdown-content a:hover::before {
        opacity: 1;
    }

    .dropdown-content a:active {
        background: rgba(26, 77, 140, 0.2);
    }

    .dropdown-content a:last-child {
        margin-bottom: 0;
    }

    .header-container .logo {
        width: 180px;
        height: 100px;
    }

    .logo-section {
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .footer-container {
        text-align: center;
    }

    .footer-section {
        align-items: center;
    }

    .footer-section ul {
        align-items: center;
    }

    .header-container .logo {
        width: 180px;
        height: 110px;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
    }
}

.partner-section {
    display: flex;
    justify-content: center;      /* Center horizontally */
    align-items: center;          /* Center vertically */
    height: 300px;                /* Adjust height as you need */
    background-color: #f9f9f9;    /* Optional: light background */
}

.partner-logo img {
    width: 220px;                 /* Make logo bigger */
    transition: transform .4s ease, filter .4s ease;
    cursor: pointer;
}

/* Hover effect */
.partner-logo img:hover {
    transform: scale(1.15);      /* Zoom in */
    filter: drop-shadow(0px 4px 10px rgba(0,0,0,0.3)); /* Glow effect */
}

.partners-section {
    text-align: center;
    padding: 70px 20px;
    background: #ffffff;
}

.partners-title {
    font-size: 34px;
    font-weight: 700;
    color: #0E2A47;
    margin-bottom: 10px;
}

.partners-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin-bottom: 40px;
}

.partner-slider {
    display: flex;
    justify-content: center;
}

.partner-logo img {
    width: 260px;              /* Bigger logo */
    max-width: 90%;
    transition: transform .3s ease, filter .3s ease;
    cursor: pointer;
}

/* /* Hover zoom and shadow effect */
.partner-logo img:hover {
    transform: scale(1.12);
    filter: drop-shadow(0px 4px 15px rgba(0,0,0,0.25));
}


.partner-logo img {
    width: 420px;          /* Increase size (try 350–420px if needed) */
    max-width: 95%;
    transition: transform .3s ease, filter .3s ease;
    cursor: pointer;
} */

/* Hover animation */
.partner-logo img:hover {
    transform: scale(1.18);
    filter: drop-shadow(0px 6px 18px rgba(0,0,0,0.35));
}

.partner-logo img {
    width: 380px !important;      /* Force bigger size */
    height: auto !important;
    transition: transform .3s ease;
    cursor: pointer;
}

/* Hover effect */
.partner-logo img:hover {
    transform: scale(1.15);
}
.partner-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partners-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.partners-track {
    display: flex;
    gap: 60px;
    animation: scroll 18s linear infinite;
}

.partner img {
    height: 80px;      /* Increase logo size */
    width: auto;
    transition: transform 0.4s ease, filter 0.3s ease;
}

/* Hover effect */
.partner img:hover {
    transform: scale(1.25);
    filter: brightness(1.3);
}

/* Infinite loop animation */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Make it responsive */
@media (max-width: 768px) {
    .partner img {
        height: 60px;
    }
}

/* Wrapper */
.partners-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

/* Logo container */
.partners-logos {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 80px;         /* space between logos */
}

/* Individual partner logo design */
.partner-card img {
    width: 130px;     /* Bigger logos */
    height: auto;
    filter: grayscale(0) !important;     /* Show original colors on laptop */
    opacity: 1 !important;              /* Full opacity on laptop */
    transition: all 0.4s ease;
}

/* Hover effect - removed for laptop to keep original colors */
.partner-card img:hover {
    transform: scale(1.1);      /* slight zoom effect on hover */
    filter: grayscale(0) !important;       /* keep original colors */
    opacity: 1 !important;
}

/* Section container */
.partner-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff; /* change if needed */
    padding: 60px 0;
}

/* Logo wrapper */
.partner-single-logo img {
    width: 380px;      /* Bigger logo */
    height: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(0.95) saturate(1.1);
}

/* Hover effect */
.partner-single-logo img:hover {
    transform: scale(1.08);     /* Slight zoom */
    filter: brightness(1.2);     /* Highlight effect */
    cursor: pointer;
}



.lifetime-legacy-hero {
    position: relative;
    background-image: url("../images/9eacbb42-b511-444a-bc39-6402c1198fa3.jpg");
    background-size: cover;
    background-position: cover;
    height: 400px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    color: #f5f5f5;
    padding-left: 60px;
    background-repeat: no-repeat;
    overflow: hidden;
}

.lifetime-legacy-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25); /* semi-transparent black */
    z-index: 1;
}

.lifetime-legacy-hero * {
    position: relative;
    z-index: 2; /* ensures text appears above overlay */
}



.family-care-hero {
    background-image: url("../images/9a679fff-ba77-4844-90e0-2d1d7a9fbd18.jpg");
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #e6e6e6; /* ✅ Dark white text */
    position: relative;
}

/* Black overlay (not fully opaque, 70% visibility) */
.family-care-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25); /* ✅ Deep black background */
    z-index: 1;
}

/* Keep text above overlay */
.family-care-hero h1,
.family-care-hero p {
    position: relative;
    z-index: 2;
}


.Defender {
    background-image: url("../images/16e34787-9394-475e-a9c9-6fe54fb59dea.jpg");
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    position: relative; /* Required for overlay */
}

/* Dark shade overlay */
.Defender::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55); /* Black shade opacity */
    z-index: 1;
}

/* Bring text above overlay */
.Defender * {
    position: relative;
    z-index: 2;
    color: #e8e8e8; /* premium dark white text */
}

.income-shield-hero {
    position: relative;
    background-image: url("../images/middle-aged-couple-showing-thumb-up.jpg"); /* change image if needed */
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    justify-content: flex-start; /* left-aligned text */
    align-items: center; /* vertically centered */
    text-align: left;
    color: #f5f5f5; /* soft white text */
    padding-left: 60px; /* space from left edge */
    background-repeat: no-repeat;
    overflow: hidden;
}

.income-shield-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35); /* semi-transparent dark overlay */
    z-index: 1;
}

.income-shield-hero * {
    position: relative;
    z-index: 2; /* text above overlay */
}


.wealth-builder-hero {
    position: relative;
    background-image: url("../images/front-view-commission-still-life-composition.jpg"); /* change image if needed */
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    justify-content: flex-start; /* left-aligned text */
    align-items: center; /* vertically centered */
    text-align: left;
    color: #f5f5f5; /* soft white text */
    padding-left: 60px; /* space from left edge */
    background-repeat: no-repeat;
    overflow: hidden;
}

.wealth-builder-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35); /* semi-transparent dark overlay */
    z-index: 1;
}

.wealth-builder-hero * {
    position: relative;
    z-index: 2; /* text above overlay */
}


.executive-elite-hero {
    position: relative;
    background-image: url("../images/senior-couple-laughing-while-looking-camera-kitchen-cheerful-old-man-woman-smiling-laughing-happy-elderly-retired-persons-cozy-home-enjoying-life.jpg"); /* change image if needed */
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    justify-content: flex-start; /* left-aligned text */
    align-items: center; /* vertically centered */
    text-align: left;
    color: #f5f5f5; /* soft white text */
    padding-left: 60px; /* space from left edge */
    background-repeat: no-repeat;
    overflow: hidden;
}

.executive-elite-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25); /* semi-transparent dark overlay */
    z-index: 1;
}

.executive-elite-hero * {
    position: relative;
    z-index: 2; /* text above overlay */
}

.family-promise-hero {
    position: relative;
    background-image: url("../images/top-view-hands-with-paper-cut-family.jpg"); /* change image if needed */
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    justify-content: flex-start; /* left-aligned text */
    align-items: center; /* vertically centered */
    text-align: left;
    color: #f5f5f5; /* soft white text */
    padding-left: 60px; /* space from left edge */
    background-repeat: no-repeat;
    overflow: hidden;
}

.family-promise-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.30); /* semi-transparent dark overlay */
    z-index: 1;
}

.family-promise-hero * {
    position: relative;
    z-index: 2; /* text above overlay */
}


/* REMOVE the duplicate rules at the end and replace with: */

/* Fix footer collapse on life-insurance page */
/* Reusable base style */
/* ✅ Hero General

/* ✅ Master Hero Section Styling */
/* ✅ COMMON layout for all hero sections */
/* COMMON STYLE FOR ALL MUTUAL FUND HERO SECTIONS */
.mutual-hero {
    display: flex;
    align-items: center;          /* Vertical center */
    justify-content: flex-start;  /* Text at left */
    text-align: left;             /* Align text left */
    padding: 100px 60px;
    color: #fff;
    height: 480px;
}

/* ===== MUTUAL FUND PLANS ===== */

/* Equity Momentum Fund */
.equity-momentum-hero {
    background:linear-gradient(rgba(0,0,0,0.30), rgba(0,0,0,0.30)), url("../images/photorealistic-money-with-plant.jpg") bottom/cover no-repeat;
}

/* Balanced Advantage Fund */
.balanced-advantage-hero {
    background:linear-gradient(rgba(0,0,0,0.30), rgba(0,0,0,0.30)), url("../images/woman-interacting-with-money.jpg") center/cover no-repeat;
}

/* Income Plus Fund */
.income-plus-hero {
    background: linear-gradient(rgba(0,0,0,0.30), rgba(0,0,0,0.30)),url("../images/hand-putting-mix-coins-seed-clear-bottle-copyspace-business-investment-growth-concept.jpg") center/cover no-repeat;
}

/* Tax Saver ELSS */
.tax-saver-elss-hero {
    background: linear-gradient(rgba(0,0,0,0.30), rgba(0,0,0,0.30)),url("../images/rising-cost-living-concern-concept.jpg") bottom/cover no-repeat;
}

/* Smart SIP Plan */
.smart-sip-hero {
    background: linear-gradient(rgba(0,0,0,0.30), rgba(0,0,0,0.30)),url("../images/full-shot-people-coins.jpg") center/cover no-repeat;
}

/* Global Opportunities Fund */
.global-opportunities-hero {
    background: linear-gradient(rgba(0,0,0,0.30), rgba(0,0,0,0.30)),url("../images/coin-bitcoin-jar-with-coins.jpg") center/cover no-repeat;
}

/* Common section style */
.health-plan-hero {
  position: relative;
  width: 100%;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: white;
  text-align: left;
  padding: 50px;
  box-sizing: border-box;
}

/* Dark overlay with image (single line) */

/* Family Care Max */
.family-care-max-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.35)), url("../images/9a679fff-ba77-4844-90e0-2d1d7a9fbd18.jpg") center/cover no-repeat;
}

/* Prime Individual Plan */
.prime-individual-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.35)), url("../images/doctor-checking-one-her-patients.jpg") center/cover no-repeat;
}

/* Senior Secure Plan */
.senior-secure-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.45)), url("../images/medium-shot-patients-ophthalmologist-s-office.jpg") center/cover no-repeat;
}

/* Critical Shield Plan */
.critical-shield-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url("../images/health-benefits-claim-benefits-form-concept.jpg") center/cover no-repeat;
}

/* Corporate Wellness Plan */
.corporate-wellness-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url("../images/young-man-being-ill-hospital-bed.jpg") center/cover no-repeat;
}

/* Global Student Plan */
.global-student-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url("../images/happy-doctor-greeting-handshaking-with-senior-patient-his-office-focus-is-senior-man.jpg") center/cover no-repeat;
}

/* Text container inside hero */
.health-text-left {
  position: relative;
  z-index: 2;
  max-width: 50%;
}

.health-text-left h1 {
  font-size: 2.5rem;
  margin-bottom: 0.6rem;
}

.health-text-left p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* For all service images (icons or photos) */
.service-image {
    height: 180px; /* fixes height */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f4;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ensures it fits neatly */
}

/* Text content */
.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    color: #004aad;
    margin-bottom: 0.5rem;
}

.service-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.read-more-btn {
    display: inline-block;
    background: var(--primary-color, #004aad);
    color: #fff;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
}

/* Contact form + map layout */
.contact-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    justify-content: space-between;
}

/* Contact form takes 50% */
.contact-form {
    flex: 1;
}

/* MAP FIX */
.map-container {
    flex: 1;
    width: 100%;
    height: 700px;       /* Increase height if needed */
    border-radius: 10px;
    overflow: hidden;
}

/* Force iframe to fill the map */
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* Fix hamburger menu position */
@media (max-width: 992px) {
    .menu-toggle {
        position: absolute;
        top: 10px;
        right: 15px; /* always inside the screen */
        z-index: 2000;
    }

    .header-container {
        position: relative;
    }
}

/* Fix Read More button not showing on mobile */
@media (max-width: 768px) {
    .plan-card {
        height: auto !important;
    }

    .plan-overlay {
        position: static !important;
        opacity: 1 !important;
        padding: 1.2rem !important;
        background: none !important;
    }

    .plan-read-more {
        display: inline-block;
        margin-top: 1rem;
    }
}


@media (max-width: 480px) {
    .header-container .logo {
        width: 150px !important;
        height: auto !important;
    }
}


html, body {
    max-width: 100%;
    overflow-x: hidden !important;
}


/* Perfect responsive UL styling for About page */
.about-content ul {
    padding-left: 1.2rem;
    padding-right: 1rem;
    list-style-position: outside;
}

.about-content ul li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    line-height: 1.7;
    word-wrap: break-word;
}

/* Mobile specific spacing */
@media (max-width: 768px) {
    .about-content {
        padding: 0 1rem; /* add side spacing */
    }

    .about-content ul {
        padding-left: 1.4rem;
        padding-right: 0.5rem;
    }

    .about-content ul li {
        font-size: 1rem;
        line-height: 1.8;
    }
}

/* Fix banner text overflowing on mobile */
.health-plan-hero h1,
.life-plan-hero h1,
.mutual-fund-hero h1,
.critical-shield-hero h1,
.plan-banner h1,
.product-banner h1 {
    font-size: 2rem;
    line-height: 1.2;
}

.health-plan-hero p,
.life-plan-hero p,
.mutual-fund-hero p,
.critical-shield-hero p,
.plan-banner p,
.product-banner p {
    font-size: 1rem;
    line-height: 1.4;
    max-width: 90%;
}

/* Mobile view */
@media (max-width: 600px) {
    .health-plan-hero,
    .life-plan-hero,
    .mutual-fund-hero,
    .critical-shield-hero,
    .plan-banner,
    .product-banner {
        padding: 1.2rem;
    }

    .health-plan-hero h1,
    .life-plan-hero h1,
    .mutual-fund-hero h1,
    .critical-shield-hero h1,
    .plan-banner h1,
    .product-banner h1 {
        font-size: 1.6rem;
    }

    .health-plan-hero p,
    .life-plan-hero p,
    .mutual-fund-hero p,
    .critical-shield-hero p,
    .plan-banner p,
    .product-banner p {
        font-size: 0.95rem;
        line-height: 1.5;
        max-width: 95%;
    }
}
/*
.map-container {
    width: 100%;
    height: 0;
    padding-bottom: 60%; /* controls aspect ratio — 60% = landscape 
    position: relative;
    overflow: hidden;
    border-radius: 10px; /* optional 
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
 */

 a.invest-btn {
    display: inline-block;
    background: white;                      /* normal background */
    color: var(--primary-color);            /* normal text blue */
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--primary-color); /* blue border */
    transition: all 0.3s ease;
}

/* Hover Effect */
a.invest-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color)); /* gradient bg */
    color: white;                               /* text turns white */
    border-color: transparent;                  /* optional: remove border on hover */
}

/* Fix bullet alignment on mobile for all pages */
.showcase-text ul {
    padding-left: 1.4rem;     /* standard bullet spacing */
    margin: 0;
}

.showcase-text ul li {
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

/* Mobile correction */
@media (max-width: 600px) {
    .showcase-text ul {
        padding-left: 1.1rem;   /* bring bullets slightly inward */
    }

    .showcase-text ul li {
        margin-left: 0;         /* prevent bullet shifting */
        padding-left: 0;
    }
}


/* WhatsApp Floating Button (Top Icon) */
.whatsapp-float {
    position: fixed;
    bottom: 150px;     /* ↑ Move higher */
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 999999;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
    filter: none !important;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Chatbot Floating Button (Bottom Icon) */
.chatbot-container {
    position: fixed;
    bottom: 70px;      /* ↓ lower than WhatsApp */
    right: 25px;
    z-index: 999998;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .whatsapp-float {
        bottom: 130px;  /* adjust for smaller screen */
        right: 18px;
        width: 55px;
        height: 55px;
    }

    .chatbot-container {
        bottom: 40px;   /* chatbot remains below */
        right: 18px;
    }

    .whatsapp-float img {
        width: 26px;
        height: 26px;
    }
}



/* ----------------------------------------
   FULL MOBILE RESPONSIVE FIX FOR ALL CARDS
   - Plan Cards
   - Services Cards
   - Mission / Vision Cards
-----------------------------------------*/
@media (max-width: 600px) {

    /* Prevent entire page from overflowing */
    html, body {
        overflow-x: hidden !important;
    }

    /* General card grid fix */
    .plan-grid,
    .services-grid,
    .mission-vision-values {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }

    /* Universal card width & layout */
    .plan-card,
    .service-card,
    .mvv-card,
    .service-style {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        border-radius: 12px;
        overflow: hidden;
        box-sizing: border-box;
    }

    /* All Images Responsive */
    .plan-card img,
    .service-card img,
    .mvv-card img,
    .service-style img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover;
        border-radius: inherit;
        display: block;
    }

    /* Mission / Vision text spacing */
    .mvv-card h3,
    .mvv-card p {
        padding: 0 10px;
        text-align: start;
    }

    /* Service card inner text */
    .service-content {
        padding: 12px;
    }

    /* Overlay text fix */
    .plan-overlay {
        padding: 15px !important;
    }

    /* Read More buttons spacing */
    .plan-read-more,
    .service-card a {
        margin-top: 0.7rem;
        display: inline-block;
    }
}

/* Universal Plan Banner Fix */
.health-plan-hero,
.corporate-wellness-hero {
    position: relative;
    width: 100%;
    padding: 4rem 2rem; /* default desktop spacing */
    color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.health-text-left {
    max-width: 600px;
}

.health-text-left h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.health-text-left p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 90%;
}

/* MOBILE FIX */
@media (max-width: 600px) {
    .health-plan-hero,
    .corporate-wellness-hero {
        padding: 3rem 1.2rem; /* adjust spacing */
    }

    .health-text-left {
        max-width: 100%;
    }

    .health-text-left h1 {
        font-size: 1.6rem !important;     /* smaller */
        line-height: 1.3 !important;
        word-break: break-word;           /* prevents overflow */
    }

    .health-text-left p {
        font-size: 0.95rem !important;
        line-height: 1.4;
        max-width: 100%;
    }
}


/* Desktop default – affects only Health Insurance page */
.health-page .partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

/* Mobile – vertical stacking ONLY on Health Insurance page */
@media (max-width: 600px) {
    .health-page .partners-logos {
        flex-direction: column;
        gap: 1.5rem;
    }

    .health-page .partner-card img {
        width: 160px;
        height: auto;
        display: block;
    }
}


/* ----------------------------------------
   TABLET RESPONSIVE FIX (Tab buttons & layouts)
   For screens between 601px – 1024px
-----------------------------------------*/
@media (min-width: 601px) and (max-width: 1024px) {

    /* Fix tab buttons */
    .products-tabs {
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
        padding: 0 10px;
    }

    .products-tab {
        font-size: 1rem;
        padding: 0.7rem 1.6rem;
        border-radius: 25px;
    }

    /* Fix product cards grid */
    .plan-grid {
        grid-template-columns: repeat(2, 1fr);   /* 2 cards per row */
        gap: 1.5rem;
        padding: 0 15px;
    }

    /* Fix service cards */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);   /* 2 services per row */
        gap: 1.5rem;
        padding: 0 15px;
    }

    /* Fix mission / vision cards */
    .mission-vision-values {
        grid-template-columns: repeat(2, 1fr);   /* 2 cards side-by-side */
        gap: 1.5rem;
        padding: 0 15px;
    }

    /* Cards auto-fit without overflow */
    .plan-card,
    .service-card,
    .mvv-card {
        width: 100%;
        max-width: 100%;
    }

    /* Fix banner text on tablet */
    .health-text-left h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .health-text-left p {
        font-size: 1.05rem;
    }
}
/* MOBILE equal height improvement */
@media (max-width: 600px) {
    .service-card img,
    .plan-card img,
    .mvv-card img {
        height: 150px;
    }
}

/* TABLET equal height improvement */
@media (min-width: 601px) and (max-width: 1024px) {
    .service-card img,
    .plan-card img,
    .mvv-card img {
        height: 170px;
    }
}
/* Fix ONLY the 3 contact cards – Tablet View */
@media (min-width: 600px) and (max-width: 1024px) {

    .contact-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .contact-cards .contact-info-card {
        background: #fff;
        padding: 1.5rem;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);

        display: flex;
        flex-direction: column;
        justify-content: space-between;
        text-align: center;

        height: 100%;
        min-height: 240px;
    }

    .contact-cards .contact-info-card .contact-icon {
        font-size: 2.4rem;
        margin-bottom: 0.8rem;
    }

    .contact-cards .contact-info-card p {
        line-height: 1.6;
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* Prevent showcase image from touching the header */
.showcase-image {
    margin-top: 90px; /* adjust value based on header height */
}

.showcase-image img {
    width: 100%;
    display: block;
}
@media (max-width: 600px) {
    .showcase-image {
        margin-top: 70px;
    }
    body {
        padding-top: 70px;
    }
}
.showcase-text {
    margin-top: 90px;   /* push text below the fixed header */
}
@media (max-width: 600px) {
    .showcase-text {
        margin-top: 70px;
    }
}



/* Push text down ONLY on plan pages */
.health-showcase-text {
    margin-top: 30px;   /* desktop spacing */
}

/* For mobile */
@media (max-width: 600px) {
    .health-showcase-text {
        margin-top: 70px;
    }
}


/* Remove ALL default arrows on mobile */
@media (max-width: 768px) {

    nav ul li.dropdown {
        list-style-type: none;
        list-style: none;
    }

    /* Removes triangle marker some browsers add */
    nav ul li.dropdown::marker {
        display: none;
        content: "";
    }

    /* Removes automatic dropdown arrow added to links */
    nav ul li.dropdown > a {
        appearance: none !important;
        -webkit-appearance: none !important;
        background: none !important;
    }

    /* If your theme injects an icon using ::after */
    nav ul li.dropdown > a::after {
        content: "" !important;
        display: none !important;
    }
}

@media (max-width: 768px) {
    html, body {
        margin: 0 !important;
        padding: 0 !important;
    }

    header,
    .header-container {
        margin-top: 1 !important;
        padding-top: 1 !important;
    }
}

@media (max-width: 768px) {
    .hamburger {
        width: 26px !important;
        height: 26px !important;
    }

    .hamburger img,
    .hamburger svg {
        width: 100% !important;
        height: 100% !important;
    }
}


