/*
Theme Name: Twenty Thirteen Child
Theme URI: https://wordpress.org/themes/twentythirteen/
Template: twentythirteen
Author: the WordPress team
Author URI: https://wordpress.org/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Tags: blog,one-column,two-columns,right-sidebar,custom-header,custom-menu,editor-style,featured-images,footer-widgets,microformats,post-formats,rtl-language-support,sticky-post,translation-ready,accessibility-ready,block-patterns
Version: 4.5.1772449762
Updated: 2026-03-02 11:09:22

*/

:root {
    --primary-blue: #1f9cc5;
    --primary-dark: #0d7a9e;
    --navy: #0a2540;
    --navy-light: #1a3a5c;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-gradient: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
body {
    box-sizing: border-box;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Top Info Bar */
.top-info-bar {
    background: linear-gradient(90deg, var(--navy) 0%, var(--navy-light) 100%);
    color: white;
    padding: 10px 0;
    font-size: 0.875rem;
}

.top-info-bar a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.top-info-bar a:hover {
    color: var(--primary-blue);
}

.contact-info span {
    margin-right: 25px;
}

.contact-info i {
    color: var(--primary-blue);
    margin-right: 8px;
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-text {
    display: inline-block;
    animation: marquee 30s linear infinite;
    padding-left: 100%;
}

.marquee-text span {
    padding: 0 30px;
    color: #ffffff;
}

.marquee-text span::before {
    content: "✓";
    color: var(--primary-blue);
    margin-right: 8px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Header */
.main-header {
    background: white;
    transition: var(--transition);
    padding: 10px 0;
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
    padding: 6px 0;
}

.navbar-brand img {
    height: 75px;
    transition: var(--transition);
}

.main-header.scrolled .navbar-brand img {
    height: 60px;
}

.navbar-nav .nav-link {
    color: var(--navy);
    font-weight: 500;
    padding: 10px 18px !important;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--primary-blue);
    transform: scaleX(0);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-blue);
}

.btn-get-quote {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(31, 156, 197, 0.3);
}

.btn-get-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(31, 156, 197, 0.4);
    color: white;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.92) 0%, rgba(13, 122, 158, 0.88) 100%);
    background-size: cover;
    background-position: center;
    min-height: 100%;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
       content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(0 0 0 / 80%) 0%, rgb(0 0 0 / 60%) 100%);
}

/* @keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
} */

.hero-tag {
    display: inline-block;
    background: rgba(31, 156, 197, 0.2);
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(31, 156, 197, 0.3);
}

.hero-heading {
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-heading span {
    background: linear-gradient(90deg, var(--primary-blue), #5dd3f3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 550px;
}

.certification-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.cert-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.cert-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.cert-badge i {
    color: var(--primary-blue);
    font-size: 1.3rem;
}

.cert-badge span {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(31, 156, 197, 0.4);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(31, 156, 197, 0.5);
    color: white;
}

.btn-secondary-hero {
    background: transparent;
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-blue);
    color: white;
}

/* Contact Form Card */
.hero-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 10;
}

.hero-form-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-blue), transparent, var(--primary-blue));
    border-radius: 26px;
    z-index: -1;
    opacity: 0.3;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-notice {
    font-size: 0.8rem;
    color: #dc2626;
    margin-bottom: 25px;
    font-weight: 500;
}

.form-control {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 0.95rem;
    transition: var(--transition);
    background: #f8fafc;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(31, 156, 197, 0.1);
    background: white;
}

.form-label {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.radio-group {
    display: flex;
    gap: 20px;
}

.form-check-input:checked {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-submit-form {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    width: 100%;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(31, 156, 197, 0.3);
}

.btn-submit-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(31, 156, 197, 0.4);
}

/* Section Styles */
.section-padding {
    padding: 100px 0;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
}

.section-subheading {
    color: var(--text-muted);
    font-size: 1.1rem;
    /* max-width: 600px; */
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(31, 156, 197, 0.1) 0%, rgba(31, 156, 197, 0.05) 100%);
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(31, 156, 197, 0.2);
}

/* About Section */
.about-section {
    background: white;
    position: relative;
}

.about-image-wrapper {
    /* position: relative; */
    border-radius: 24px;
    /* overflow: hidden; */
    box-shadow: var(--shadow-lg);
}

.about-image {
    width: 100%;
    height: 500px;
    border-radius: 24px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--navy) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    color: white;
}

.about-image-placeholder i {
    font-size: 5rem;
    opacity: 0.8;
}

.about-image-placeholder span {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.8;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.about-badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
}

.about-badge-text {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
}

.about-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #f1f5f9;
}

.about-list li:last-child {
    border-bottom: none;
}

.about-list li i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    width: 35px;
    height: 35px;
    background: rgba(31, 156, 197, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-list li span {
    font-weight: 500;
    color: var(--navy);
}

@media (min-width: 992px) {
    .about-section .sticky-top {
        top: 100px;
    }
}

/* Why Choose Us */
.why-choose-section {
    background: var(--bg-gradient);
    position: relative;
    /* overflow: hidden; */
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(31, 156, 197, 0.1) 0%, transparent 70%);
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid #f1f5f9;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(31, 156, 197, 0.1) 0%, rgba(31, 156, 197, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
    transition: var(--transition);
}

.feature-card:hover .feature-icon i {
    color: white;
}

.feature-card h5 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.why-image-wrapper {
    /* position: relative; */
    height: auto;
    min-height: 400px;
    border-radius: 24px;
    /* overflow: hidden; */
    box-shadow: var(--shadow-lg);
}

.why-image {
    width: 100%;
    border-radius: 24px;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, var(--navy) 0%, var(--primary-dark) 100%);
    /* display: flex;
    align-items: center;
    justify-content: center; */
}

.why-image  img {
    border-radius: 24px;
}

@media(min-width:767px){
    .why-choose-section .sticky-top {
        top: 100px;
    }
}

/* Product Range */
.products-section {
    background: white;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid #f1f5f9;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 180px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image i {
    font-size: 4rem;
    color: var(--primary-blue);
    transition: var(--transition);
}

.product-card:hover .product-image i {
    transform: scale(1.1);
}

.product-content {
    padding: 25px;
    text-align: center;
}

.product-content h5 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
}

.btn-know-more {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-know-more:hover {
    color: var(--primary-dark);
    gap: 12px;
}

/* CTA Strip */
.cta-strip {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--navy) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.cta-strip::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}

.cta-strip h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
}

.btn-cta {
    background: white;
    color: var(--primary-blue);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    color: var(--primary-dark);
}

/* Key Features */
.key-features-section {
    background: var(--bg-gradient);
}

.key-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 16px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.key-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.key-feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.key-feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.key-feature-content h5 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.key-feature-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Benefits Section */
.benefits-section {
    background: white;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #f1f5f9;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefit-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: linear-gradient(135deg, rgba(31, 156, 197, 0.1) 0%, rgba(31, 156, 197, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.benefit-content h5 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
}

.benefit-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.benefits-image {
    border-radius: 24px;
    /* overflow: hidden; */
    box-shadow: var(--shadow-lg);
    height: auto;
    min-height: auto;
    background: linear-gradient(135deg, var(--navy) 0%, var(--primary-dark) 100%);
    /* display: flex;
    align-items: center;
    justify-content: center; */
}
.benefits-image img{
     border-radius: 24px;
}
@media (min-width: 992px) {
    .benefits-section .sticky-top {
        top: 100px;
    }
}

/* Therapeutic Segments */
.therapeutic-section {
    background: var(--bg-gradient);
}

.therapeutic-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid #f1f5f9;
    height: 100%;
}

.therapeutic-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.therapeutic-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(31, 156, 197, 0.1) 0%, rgba(31, 156, 197, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.therapeutic-card:hover .therapeutic-icon {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
}

.therapeutic-icon i {
    font-size: 1.8rem;
    color: var(--primary-blue);
    transition: var(--transition);
}

.therapeutic-card:hover .therapeutic-icon i {
    color: white;
}

.therapeutic-card h5 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
    font-size: 1rem;
}

/* Testimonials */
.testimonials-section {
    background: white;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow-md);
    border: 1px solid #f1f5f9;
    margin: 20px 10px;
}

.testimonial-stars {
    color: #fbbf24;
    margin-bottom: 20px;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-info h6 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3px;
}

.testimonial-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.owl-dots {
    text-align: center;
    margin-top: 30px;
}

.owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: #e2e8f0;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    transition: var(--transition);
}

.owl-dots .owl-dot.active span {
    background: var(--primary-blue);
    width: 30px;
    border-radius: 10px;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.95) 0%, rgba(13, 122, 158, 0.92) 100%);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 0;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(0 0 0 / 80%) 0%, rgb(0 0 0 / 60%) 100%);
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.contact-info-card h3 {
    color: white;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-item-content h6 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item-content p,
.contact-item-content a {
    color: white;
    font-size: 1rem;
    margin: 0;
    text-decoration: none;
}

.contact-item-content a:hover {
    color: var(--primary-blue);
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
}

.map-placeholder {
    color: white;
    text-align: center;
}
.map-wrapper iframe {
    width: 100%;
    height: 250px;
}
.map-placeholder i {
    font-size: 3rem;
    opacity: 0.5;
    margin-bottom: 15px;
}

.contact-form-section {
    background: white;
    border-radius: 24px;
    padding: 45px;
    box-shadow: var(--shadow-xl);
}

.contact-form-section h3 {
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 30px;
}

/* Footer */
.main-footer {
    background: var(--navy);
    padding: 80px 0 30px;
}

.footer-logo {
    margin-bottom: 5px;
}

.footer-logo img {
    height: 75px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-heading {
    color: white;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

.footer-links a i {
    font-size: 0.8rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-item i {
    color: var(--primary-blue);
    margin-top: 5px;
}

.footer-contact-item p,
.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-size: 0.9rem;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    color: white;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-heading {
        font-size: 2.5rem;
    }

    .hero-form-card {
        margin-top: 50px;
    }

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

    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 16px;
        box-shadow: var(--shadow-lg);
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .top-info-bar .row {
        flex-direction: column;
        text-align: center;
    }

    .contact-info {
        margin-bottom: 10px;
    }

    .hero-heading {
        font-size: 2rem;
    }

    .hero-section {
        padding: 80px 0 60px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .certification-badges {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .cta-strip h2 {
        font-size: 1.8rem;
    }
}

/* Logo Text Styling */
.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--navy) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.logo-text-white {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
}

/* Trust Marquee Section */
.trust-marquee-section {
    /* background: linear-gradient(90deg, var(--navy) 0%, var(--navy-light) 100%); */
    padding: 25px 0;
    border-top: 1px solid rgba(31, 156, 197, 0.2);
    border-bottom: 1px solid rgba(31, 156, 197, 0.2);
    overflow: hidden;
}

.marquee-container-trust {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-text-trust {
    display: inline-block;
    animation: marquee-trust 35s linear infinite;
    padding-left: 100%;
}

.marquee-text-trust span {
    padding: 0 50px;
        background: linear-gradient(90deg, var(--navy) 0%, var(--navy-light) 100%);
         -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* color: rgba(255, 255, 255, 0.85); */
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.marquee-text-trust span::before {
    content: "";
    margin-right: 0;
}

@keyframes marquee-trust {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 767px) {
    .marquee-text-trust span {
        padding: 0 30px;
        font-size: 0.85rem;
    }

    .trust-marquee-section {
        padding: 30px 0;
    }
}

/* Mobile Quick Menu - Rezicure */
    #rz-mobile-quick-menu {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #0a2540;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 999;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        overflow: hidden;
    }

    .rz-quick-btn {
        flex: 1;
        text-align: center;
        padding: 12px 5px;
        font-size: 13px;
        font-weight: 600;
        color: #fff;
        text-decoration: none;
        transition: all 0.3s ease;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .rz-quick-btn:last-child {
        border-right: none;
    }

    .rz-quick-btn i {
        display: block;
        font-size: 18px;
        margin-bottom: 4px;
    }

    .rz-call {
        background: linear-gradient(135deg, #0d7a9e, #0a2540);
    }

    .rz-whatsapp {
        background: #25D366;
    }

    .rz-query {
        background: linear-gradient(135deg, #0a2540, #0d7a9e);
    }

    .rz-quick-btn:hover {
        transform: translateY(-2px);
        color: #fff;
        opacity: 0.95;
    }

    @media(max-width:767px) {

        body,
        section,
        header,
        footer {
            overflow-x: hidden;
        }

        .main-footer {
            padding: 80px 0 30px;
        }

        .back-to-top {
            bottom: 80px;
            right: 20px;
        }

        .contact-info-card {
            padding: 20px;
        }

        .contact-item-content a {
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .navbar-brand img {
            height: 60px;
        }

        .main-header.scrolled .navbar-brand img {
            height: 50px;
        }

        .contact-info span {
            margin-right: 5px;
        }

        .contact-info i {
            margin-right: 5px;
            font-size: 12px;
        }

        .top-info-bar a {
            font-size: 11px;
        }

        .marquee-container {
            display: none;
        }

        .hero-tag {
            font-size: 11px;
        }

        .certification-badges {
            gap: 10px;
        }

        .cert-badge {
            padding: 5px 15px;
            gap: 10px;
        }

        .cert-badge span {
            font-size: 12px;
        }

        .btn-primary-hero,
        .btn-secondary-hero {
            padding: 10px 25px;
            font-size: 14px;
        }

        .btn-cta {
            padding: 15px 30px;
        }
    }