/* Base Styles & Variables */
@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400;500;600;700&display=swap');

:root {
    --primary-color: rgb(7, 173, 250);
    --secondary-color: #004085;
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-gray: #666666;
    --bg-light: #f8f9fa;
    --success-color: #28a745;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Golos Text', sans-serif;
    line-height: 1.6;
}

/* Common Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-tag {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.highlight {
    color: var(--primary-color);
}

/* Navigation & Header Styles */
.top-welcome-bar {
    background-color: #07adfa;
    color: var(--text-light);
    text-align: left;
    padding: 8px 5%;
    font-weight: 200;
}

.contact-bar {
    background-color: #f8f9fa;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
    color: var(--secondary-color);
}

.social-links a {
    color: var(--primary-color);
    margin-left: 15px;
    text-decoration: none;
}

/* Navigation Bar Styles */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo img {
    height: 50px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    display: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links li a {
    color: var(--secondary-color);
    text-decoration: none;
    padding: 0 20px;
    font-weight: 500;
}

.quote-btn {
    display: block;    
}

/* Hero Section Styles */
/* Hero Slider Styles */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 80vh;
}

.slider-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform 0.8s ease-in-out;
  height: 100%;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
}

.blue-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,86,179,0.9) 0%, rgba(0,86,179,0.2) 100%);
  display: flex;
  align-items: center;
  padding: 0 5%;
}

.content {
    color: var(--text-light);
    max-width: 600px;
    padding-right: 20px;
}

.content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 900;
}

.content p {
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 1.2em;
}

.button-group {
    display: flex;
    gap: 20px;
}

.primary-btn, .secondary-btn {
    padding: 15px 36px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 400;
    font-size: 1.1em;
}

.primary-btn {
    background-color: #07adfa;
    color: var(--text-light);
    border: none;
}

.secondary-btn {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.slider-controls button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    border: none;
    color: white;
    padding: 15px;
    cursor: pointer;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* WhatsApp Chat Button */
.whatsapp-chat {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    background: #42c161;
    color: #ffffff;
    padding: 12px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.whatsapp-chat i {
    font-size: 24px;
    margin-right: 0;
    color: white;
}

.whatsapp-chat span {
    display: none;
    margin-left: 8px;
}

/* WhatsApp Button Styles */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #42c161;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    cursor: pointer;
    z-index: 99;
}
    */

.whatsapp-text {
    position: absolute;
    right: 80px;
    background: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: none;
}

.whatsapp-btn:hover .whatsapp-text {
    display: block;
}

/* Features Section Styles */
.features {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.feature-card {
    flex: 1;
    padding: 30px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 10px;
    cursor: pointer;
}

.feature-card:not(:last-child) {
    border-right: 2px solid rgba(7, 173, 250, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #07adfa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
}

.feature-content {
    flex: 1;
}

.feature-card h3 {
    color: #004085;
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-card p {
    color: #666;
    font-size: 0.9em;
    line-height: 1.6;
    transition: all 0.3s ease;
}

/* Hover effects */
.feature-card:hover {
    background-color: #07adfa;
    transform: translateY(-5px);
}

.feature-card:hover .feature-icon {
    background-color: white;
}

.feature-card:hover .feature-icon i {
    color: #07adfa;
}

.feature-card:hover h3,
.feature-card:hover p {
    color: white;
}

/* About Section Styles */
.about-section {
    padding: 80px 5%;
    background-color: var(--text-light);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.fast-claims-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    background: white;
    padding: 12px 24px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-weight: 500;
}

.testimonial-box {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 300px;
}

.testimonial-box i {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 10px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.5em;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.features-list {
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 20px;
}

.stats-container {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.stat-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.stat-box h3 {
    color: var(--primary-color);
    font-size: 2em;
    margin-bottom: 5px;
}

.stat-box p {
    color: var(--secondary-color);
}

.more-about-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 36px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.more-about-btn:hover {
    background: var(--secondary-color);
}

/* Services Section Styles */
.services-section {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.services-header .section-tag {
    color: #07adfa;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.services-header h2 {
    font-size: 2.5em;
    color: #004085;
    margin-bottom: 20px;
}

.services-header .highlight {
    color: #07adfa;
}

.services-header p {
    color: #666;
    line-height: 1.6;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-icon {
    position: absolute;
    top: 180px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: #07adfa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-icon i {
    color: white;
    font-size: 24px;
}

.service-content {
    padding: 30px 20px 20px;
}

.service-content h3 {
    color: #004085;
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-content p {
    color: #666;
    font-size: 0.9em;
    line-height: 1.5;
    margin-bottom: 10px;
}

.learn-more {
    color: #07adfa;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.learn-more i {
    transition: transform 0.3s ease;
}

.learn-more:hover i {
    transform: translateX(5px);
}
/* =======================
   SERVICE PAGE STYLING
======================= */
.service-hero {
    background: linear-gradient(rgba(0, 51, 102, 0.75), rgba(0, 51, 102, 0.75)), url('../images/general/health001.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.service-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.service-hero p {
    font-size: 1.2rem;
}

/* Main Service Content */
.service-content {
    max-width: 1200px;
    margin: 45px auto;
    padding: 0 20px;
    color: #333;
}

.service-content h2,
.service-content h3 {
    color: #003366;
}

/* Overview Section */
.service-overview {
    text-align: left;
    margin-bottom: 60px;
}

.service-overview p {
    line-height: 1.7;
    margin: 15px 0;
}

/* Coverage Grid */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.coverage-item {
    background: var(--text-light);
    color: var(--text-dark);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.coverage-item:hover {
    transform: translateY(-5px);
}

.coverage-item h4 {
    color: #003366;
    margin-bottom: 10px;
}
.coverage-item li{
    list-style: none;

}
.coverage-item .fas{
    background: rgb(0, 51, 102,0.5);
    border-radius: 5px;
    padding: 10px 10px;
    color: var(--text-light);
}

/* FAQ Section */
.faq-section {
    margin-top: 80px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    display: none;
    margin-top: 10px;
    color: #555;
}

.faq-item.active .faq-answer {
    display: block;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: #003366;
    color: #fff;
    padding: 80px 20px;
    margin-top: 80px;
    border-radius: 10px;
}
.cta-section p{
    color: var(--bg-light);
    font-size: 1.1em;
}

.cta-section .primary-btn,
.cta-section .secondary-btn {
    display: inline-block;
    margin: 10px;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}

.cta-section .primary-btn {
    background: #fff;
    color: #003366;
}

.cta-section .secondary-btn {
    border: 2px solid #fff;
    color: #fff;
}

.cta-section .secondary-btn:hover {
    background: #fff;
    color: #003366;
}

/* Footer Styles */
.footer {
    background-color: #07adfa;
    color: var(--text-light);
    font-family: 'Golos Text', sans-serif;
}

.newsletter-section {
    background-color: #004085;
    padding: 50px 5%;
}

.newsletter-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content i {
    font-size: 2.5em;
    color: white;
    margin-bottom: 15px;
}

.newsletter-content h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: white;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-family: 'Golos Text', sans-serif;
}

.subscribe-btn {
    background-color: #004085;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    background-color: white;
    color: #004085;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    gap: 30px;
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1.2em;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.logo-column p {
    margin: 20px 0;
    line-height: 1.6;
    color: white;
}

.footer-logo {
    height: 50px;
    filter: brightness(0.95);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    background: #004085;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: white;
    text-decoration: none;
}

.contact-info a {
    color: white;
    text-decoration: none;
}

.contact-info a:hover {
    color: #004085;
}

.footer-bottom {
    background-color: #004085;
    padding: 20px 5%;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom hr {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 10px 0;
}

.footer-bottom a {
    color: #07adfa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: white;
}

/* About Page Styles */
.about-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 64, 133, 0.8), rgba(0, 64, 133, 0.8)), url('../images/general/bg002.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
}

.about-hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-hero-content p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
}

.company-overview {
    padding: 80px 5%;
    background: var(--text-light);
}

.overview-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.overview-content h2 {
    color: var(--secondary-color);
    font-size: 2.5em;
    margin-bottom: 20px;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 10px;
}

.stat-item h3 {
    color: var(--primary-color);
    font-size: 2em;
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--secondary-color);
}

.our-values {
    padding: 80px 5%;
    background: var(--bg-light);
}

.our-values h2 {
    text-align: center;
    color: var(--secondary-color);
    font-size: 2.5em;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--text-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card i {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.team-section {
    padding: 80px 5%;
    background: var(--text-light);
}

.team-section h2 {
    text-align: center;
    color: var(--secondary-color);
    font-size: 2.5em;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.team-member p {
    color: var(--text-gray);
}

/* Contact Page Styles */
.contact-hero {
    position: relative;
    padding: 100px 5%;
    text-align: center;
    background-image: url('../images/contact/contact002.webp');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 64, 133, 0.8) 0%, rgba(7,173,250,0.5) 100%);
}

.contact-header {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.contact-header .section-tag {
    display: inline-block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
}

.contact-header h1 {
    font-size: 3em;
    margin: 20px 0;
    line-height: 1.2;
    color: #ffffff;
}

.contact-header .highlight {
    color: #07adfa;
}

.contact-header p {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Contact Section Styles */
.contact-section {
    padding: 50px 5%;
    background-color: var(--text-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Golos Text', sans-serif;
    font-size: 1em;
}

.form-group textarea {
    resize: vertical;
    min-height: 200px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
}

.contact-info {
    position: relative;
}

.contact-info img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.5em;
}

.info-content h3 {
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 1.1em;
}

.info-content p {
    color: var(--text-gray);
}

/* Branches Section Styles */
.branches-section {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-header .highlight {
    color: var(--primary-color);
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.branch-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.branch-card:hover {
    transform: translateY(-10px);
}

.branch-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.branch-icon i {
    font-size: 30px;
    color: white;
}

.branch-card h3 {   
    color: var(--secondary-color);
    margin-bottom: 15px;    
    font-size: 1.3em;
}

.branch-card .address {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.direction-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.direction-btn:hover {
    background: var(--secondary-color);
}

/* Map Section Styles */
.map-section {
    padding: 0;
    background-color: var(--bg-light);
}

.map-container {
    width: 100%;
    height: 450px;
    margin-bottom: 20px;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    padding: 0;
    background-color: var(--bg-light);
}

/* Quote Page Styles */
.quote-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 64, 133, 0.95) 0%, rgba(0, 64, 133, 0.5) 100%);
    padding: 120px 5%;
    color: var(--text-light);
    overflow: hidden;
}

.quote-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/general/life001.webp');
    opacity: 0.1;
    z-index: 1;
}

.quote-hero .hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.quote-hero h1 {
    font-size: 3.5em;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
}

.quote-hero h1 .highlight {
    color: #ffffff;
    text-shadow: 0 0 30px rgba(7, 173, 250, 0.5);
}

.quote-hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}
.quote-hero .contact-btn {
    background: var(--primary-color);
    color: var(--bg-light);
    border: none;
    outline: none;
    padding: 15px 36px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.badge-item i {
    font-size: 24px;
    color: #ffffff;
}

.badge-item span {
    font-weight: 500;
}

/* Quote Form Section */
.quote-form-section {
    padding: 80px 5%;
    background: var(--bg-light);
}

.form-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 40px;
    text-align: center;
    color: white;
}

.form-header h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.form-header p {
    font-size: 1.1em;
    opacity: 0.9;
}

.form-body {
    padding: 50px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-indicator {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.step.active {
    background: var(--primary-color);
    color: white;
    transform: scale(1.2);
}

.step.completed {
    background: var(--success-color);
    color: white;
}

.step.completed::after {
    content: '✓';
}

/* Form Field Styles */
.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary-color);
}

.form-field label .required {
    color: red;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Golos Text', sans-serif;
    font-size: 1em;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(7, 173, 250, 0.1);
}

.form-field textarea {
    min-height: 120px;
    resize: vertical;
}

/* Insurance Type Grid */
.insurance-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.insurance-option {
    position: relative;
}

.insurance-option input[type="radio"] {
    display: none;
}

.insurance-option label {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.insurance-option label:hover {
    border-color: var(--primary-color);
    background: rgba(7, 173, 250, 0.05);
}

.insurance-option input[type="radio"]:checked + label {
    border-color: var(--primary-color);
    background: rgba(7, 173, 250, 0.1);
}

.insurance-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.insurance-icon i {
    font-size: 24px;
    color: white;
}

.insurance-label {
    flex: 1;
}

.insurance-label h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 1em;
}

.insurance-label p {
    color: var(--text-gray);
    font-size: 0.85em;
    line-height: 1.4;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.btn-prev,
.btn-next,
.btn-submit {
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-prev {
    background: var(--bg-light);
    color: var(--secondary-color);
}

.btn-prev:hover {
    background: #e0e0e0;
}

.btn-next,
.btn-submit {
    background: var(--primary-color);
    color: white;
    flex: 1;
}

.btn-next:hover,
.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(7, 173, 250, 0.3);
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Coverage Options Section */
.coverage-options {
    padding: 80px 5%;
    background: white;
}

.coverage-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.coverage-header h2 {
    font-size: 2.8em;
    color: var(--secondary-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.coverage-header .highlight {
    color: var(--primary-color);
}

.coverage-header p {
    font-size: 1.15em;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Information Content Layout */
.coverage-content {
    max-width: 1200px;
    margin: 0 auto;
}

.info-section {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 40px;
    border-left: 5px solid var(--primary-color);
}

.info-section h3 {
    color: var(--secondary-color);
    font-size: 2em;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-section h3 i {
    color: var(--primary-color);
    font-size: 0.9em;
}

.info-section p {
    color: var(--text-gray);
    font-size: 1.1em;
    line-height: 1.9;
    margin-bottom: 25px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
}

.info-item i {
    color: var(--primary-color);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 5px;
}

.info-item-content h4 {
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-size: 1.1em;
}

.info-item-content p {
    color: var(--text-gray);
    font-size: 0.95em;
    line-height: 1.6;
    margin: 0;
}

/* Compact Service Cards */
.services-container.compact {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card.featured {
    grid-column: span 1;
}

/* Why Choose Styles */
.why-choose-section {
    padding: 80px 5%;
    background: var(--bg-light);
}

/* Trust Indicators */
.trust-section {
    padding: 60px 5%;
    background: var(--secondary-color);
    color: white;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    flex: 1;
    min-width: 200px;
}

.trust-item .number {
    font-size: 3em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.trust-item .label {
    font-size: 1.1em;
    opacity: 0.9;
}

/* Mobile Menu Styles */
@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        height: 100vh;
        background: var(--secondary-color);
        padding: 80px 30px 40px;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li a {
        color: white;
        font-size: 1.1em;
        padding: 12px 0;
        display: block;
    }

    .nav-links .contact-info {
        margin-top: 40px;
        color: white;
    }

    .nav-links .contact-info a {
        color: white;
        font-size: 1em;
    }

    .quote-btn.mobile {
        width: 100%;
        margin-top: 30px;
    }

    .nav-left {
        display: flex;
        align-items: center;
        gap: 12px;
        justify-content: space-between;
    }

    /* show hamburger next to logo (reuses index style) */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 34px;
        height: 24px;
        padding: 4px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1200;
    }

    .menu-toggle span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--secondary-color);
        border-radius: 3px;
        transition: transform 0.25s ease, opacity 0.2s ease;
    }

    /* animated "X" when active */
    .menu-toggle.active span:first-child {
        transform: rotate(45deg) translate(4px, 4px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:last-child {
        transform: rotate(-45deg) translate(4px, -4px);
    }

    /* ensure logo area stays visible and white like index */
    .main-nav,
    .logo {
        background: #fff;
    }
    .logo img {
        height: 42px;
        width: auto;
        display: block;
    }
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .nav-links {
        gap: 15px;
    }
    
    .services-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-container {
        gap: 30px;
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .main-nav {
        padding: 10px 5%;
    }
    
    .content h1 {
        font-size: 3.5em;
    }
    
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-container {
        flex-direction: column;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .insurance-type-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .contact-bar {
        flex-direction: column;
        gap: 10px;
        display: none;
    }
    
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 1001;
    }
    
    .menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--secondary-color);
        transition: all 0.3s ease;
    }
    
    .nav-left {
        width: 100%;
        justify-content: space-between;
    }
    
    .main-nav {
        padding: 15px 5%;
        position: relative;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: -280px; /* Start off-screen */
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 80px;
        gap: 30px;
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
    }
    
    .nav-links.active {
        display: flex;
        right: 0;
    }
    
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        z-index: 998;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .menu-overlay.active {
        display: block;
        opacity: 1;
    }
    
    .quote-btn.mobile {
        margin-top: auto;
        margin-bottom: 30px;
    }
    
    .content h1 {
        font-size: 2.8em;
    }
    
    .features-container {
        flex-direction: column;
    }
    
    .feature-card:not(:last-child) {
        border-right: none;
        border-bottom: 2px solid rgba(7, 173, 250, 0.2);
    }
    
    .services-container {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .branches-grid {
        grid-template-columns: 1fr;
    }
    
    .coverage-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {
    .content h1 {
        font-size: 2.2em;
    }
    
    .button-group {
        flex-direction: column;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .overview-stats {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        flex-direction: column;
    }
}

@media screen and (max-width: 375px) {
    h1 {
        font-size: 2em;
    }
    
    h2 {
        font-size: 1.8em;
    }
    
    .quote-btn,
    .primary-btn,
    .secondary-btn {
        padding: 12px 24px;
        font-size: 0.9em;
    }
    
    .stat-number {
        font-size: 2.5em;
    }
}

/* Landscape Mode */
@media screen and (max-height: 480px) and (orientation: landscape) {
    .hero-slider {
        height: 100vh;
    }
    
    .content h1 {
        font-size: 2em;
    }
    
    .content p {
        font-size: 0.9em;
    }
}

/* Get Quote Button Styles */
.quote-btn {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 12px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

.quote-btn:hover {
    background: #0599e0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(7, 173, 250, 0.3);
}

/* Mobile Navigation Styles */
@media screen and (max-width: 768px) {
    .main-nav {
        padding: 15px 20px;
        background: var(--bg-light);
    }

    .nav-left {
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .logo img {
        height: 40px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        height: 100vh;
        background: var(--secondary-color);
        padding: 80px 30px 40px;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li a {
        color: white;
        font-size: 1.1em;
        padding: 12px 0;
        display: block;
    }

    .nav-links .contact-info {
        margin-top: 40px;
        color: white;
    }

    .nav-links .contact-info a {
        color: white;
        font-size: 1em;
        align-items: center;
    }

    .quote-btn.mobile {
        width: 100%;
        margin-top: 30px;
    }

    .nav-left {
        display: flex;
        align-items: center;
        gap: 12px;
        justify-content: space-between;
    }

    /* show hamburger next to logo (reuses index style) */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 34px;
        height: 24px;
        padding: 4px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1200;
    }

    .menu-toggle span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--secondary-color);
        border-radius: 3px;
        transition: transform 0.25s ease, opacity 0.2s ease;
    }

    /* animated "X" when active */
    .menu-toggle.active span:first-child {
        transform: rotate(45deg) translate(4px, 4px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:last-child {
        transform: rotate(-45deg) translate(4px, -4px);
    }

    /* ensure logo area stays visible and white like index */
    .main-nav,
    .logo {
        background: #fff;
    }
    .logo img {
        height: 42px;
        width: auto;
        display: block;
    }
}

/* Footer Styles */
@media screen and (max-width: 768px) {
    .footer-content {
        text-align: center;
    }

    .social-links {
        justify-content: center;
        margin: 20px 0;
    }

    .get-in-touch {
        text-align: center;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom hr {
        margin: 15px 0;
        border: none;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .footer-bottom p {
        margin: 10px 0;
    }
}

/* Testimonials section */
.testimonials-section {
    padding: 64px 0;
    background: var(--bg-light);
    color: var(--text-dark);
}

.testimonials-section .section-tag {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--primary-color);
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.testimonials-section h2 {
    font-size: 2.1rem;
    line-height: 1.12;
    margin: 6px 0 18px;
    color: var(--secondary-color);
    max-width: 900px;
}

.testimonials-section .section-desc {
    max-width: 760px;
    color: var(--text-muted, #6b7280);
    margin-bottom: 30px;
}

/* Slider wrapper */
.testimonial-slider {
    max-width: 980px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* Track (optional if JS injects multiple cards) */
.testimonial-track {
    display: flex;
    gap: 22px;
    transition: transform 0.6s cubic-bezier(.22,.9,.24,1);
}

/* Each testimonial card */
.testimonial-card {
    flex: 0 0 100%;
    background: #ffffff;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(11,22,40,0.06);
    border-left: 6px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 180px;
}

/* Quote text */
.testimonial-text {
    font-size: 1.02rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: normal;
    margin: 0;
}

/* Author block */
.author-info {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.author-info img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(11,22,40,0.08);
    border: 2px solid rgba(0,0,0,0.04);
}

.author-info h4 {
    margin: 0;
    font-size: 0.98rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted, #6b7280);
}

/* Slider nav arrows (vertical on the right) */
.slider-nav {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 6;
}

.prev-btn,
.next-btn {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    cursor: pointer;
    display: inline-grid;
    place-items: center;
    box-shadow: 0 6px 18px rgba(7,31,64,0.12);
    transition: all 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(7, 173, 250, 0.3);
}

/* Active slide indicator (dots) */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
}

/* Animation for slide transition */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Apply animation to active slide */
.testimonial-card.active {
    animation: slideIn 0.6s forwards;
}

.testimonial-card.prev {
    animation: slideOut 0.6s forwards;
}

/* Media Queries for responsiveness */
@media screen and (max-width: 768px) {
    .testimonials-section {
        padding: 40px 0;
    }

    .testimonials-section h2 {
        font-size: 1.8rem;
    }

    .testimonial-card {
        padding: 20px;
    }

    .author-info img {
        width: 48px;
        height: 48px;
    }

    .author-info h4 {
        font-size: 0.9rem;
    }

    .author-info p {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 576px) {
    .testimonials-section h2 {
        font-size: 1.6rem;
    }

    .testimonial-card {
        padding: 18px;
    }

    .author-info img {
        width: 40px;
        height: 40px;
    }

    .author-info h4 {
        font-size: 0.8rem;
    }

    .author-info p {
        font-size: 0.7rem;
    }
}

/* Partners slider */
.partners-section {
    padding: 36px 0 28px;
    background: linear-gradient(180deg, rgba(246,246,247,1), rgba(255,255,255,1));
}

.partners-title {
    text-align: center;
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 18px;
    font-weight: 700;
}

/* slider wrapper */
.partners-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* track: flex row with duplicated items for seamless loop */
.partners-track {
    display: flex;
    gap: 28px;
    align-items: center;
    width: max-content;
    animation: partners-scroll 22s linear infinite;
    will-change: transform;
}

/* individual item */
.partner-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(11,22,40,0.06);
}

/* logo sizing */
.partner-item img {
    display: block;
    max-height: 44px;
    width: auto;
    object-fit: contain;
}

/* pause on hover/focus for accessibility */
.partners-slider:hover .partners-track,
.partners-slider:focus-within .partners-track {
    animation-play-state: paused;
}

/* keyframes: move left by half the track (because items duplicated) */
@keyframes partners-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive adjustments */
@media screen and (max-width: 992px) {
    .partner-item { padding: 10px; }
    .partner-item img { max-height: 40px; }
    .partners-track { gap: 20px; animation-duration: 20s; }
}

@media screen and (max-width: 576px) {
    .partners-section { padding: 24px 0; }
    .partner-item img { max-height: 34px; }
    .partners-track { gap: 14px; animation-duration: 18s; }
}

/* give the track a large minimum width so translateX(-50%) works reliably */
.partners-track { min-width: 200%; }