/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #122B7D;
    --secondary-color: #00C853;
    --accent-color: #0062ff;
    --text-dark: #000000;
    --text-light: #666666;
    --bg-light: #F1F8FF;
    --bg-white: #FFFFFF;
    --border-color: #DAE7F3;
    --shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0px 5px 15px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    margin-top: 155px;
}

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

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #122B7D 0%, #1a3a9e 50%, #122B7D 100%);
    padding: 20px 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), 0 8px 30px rgba(18, 43, 125, 0.3);
    border-bottom: 5px solid var(--secondary-color);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
    z-index: 0;
}

.main-header .container {
    position: relative;
    z-index: 1;
}

/* Top Banner */
.top-banner {
    position: fixed;
    top: 105px;
    left: 0;
    right: 0;
    width: 100%;
    background: #91D148;
    padding: 10px 0;
    z-index: 998;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--border-color);
    overflow: visible;
}

.top-banner .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner-text {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    white-space: nowrap;
    letter-spacing: 0.5px;
    overflow: visible;
    word-wrap: break-word;
}

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

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.logo-link .logo-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
    vertical-align: middle;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
    transition: transform 0.3s ease;
}

.logo-link:hover .logo-img {
    transform: scale(1.05);
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.logo-text {
    font-size: 38px;
    font-weight: 800;
    color: var(--bg-white);
    letter-spacing: 1.5px;
    line-height: 1;
    display: flex;
    align-items: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.logo-subtext {
    font-size: 11px;
    font-weight: 600;
    color: var(--bg-white);
    letter-spacing: 1px;
    line-height: 1;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.logo-link:hover .logo-text {
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 255, 255, 0.3);
    transform: translateX(2px);
}

.logo-link:hover .logo-subtext {
    opacity: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--bg-white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-menu a:hover::before {
    opacity: 1;
}

.nav-menu a:hover {
    color: var(--bg-white);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-menu a.active {
    color: var(--bg-white);
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.3) 0%, rgba(0, 200, 83, 0.2) 100%);
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(0, 200, 83, 0.5);
}

.nav-menu a.active::before {
    opacity: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #00E676 100%);
    color: var(--bg-white) !important;
    padding: 14px 36px;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00E676 0%, var(--secondary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--bg-white);
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #E2F2FF 0%, #FFFFFF 100%);
    padding: 40px 0 90px 0;
    margin-top: 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--text-dark);
    max-width: 100%;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.6;
    max-width: 95%;
}

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

.btn {
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

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

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

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

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 16px 45px;
    font-size: 18px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    width: 100%;
    height: 100%;
    min-height: 580px;
    max-height: 650px;
}

.hero-video {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    min-height: 580px;
    max-height: 650px;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

/* Problem Section */
.problem-section {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.wave-background {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.wave-background svg {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
}

.wave-1 {
    z-index: 1;
    animation: wave-animation 15s ease-in-out infinite;
}

.wave-2 {
    z-index: 2;
    animation: wave-animation 12s ease-in-out infinite reverse;
    opacity: 0.7;
}

.wave-3 {
    z-index: 3;
    animation: wave-animation 18s ease-in-out infinite;
    opacity: 0.6;
}

.wave-4 {
    z-index: 4;
    animation: wave-animation 10s ease-in-out infinite reverse;
    opacity: 0.5;
}

@keyframes wave-animation {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(-25px) translateY(10px);
    }
}

.problem-section .container {
    position: relative;
    z-index: 1;
}

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

.problem-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.problem-video {
    width: 100%;
    max-width: 300px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: var(--bg-light);
}

.problem-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.problem-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

/* Solution Section */
.solution-section {
    background: var(--bg-white);
    padding: 80px 0;
}

.solution-alternate {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.solution-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-item-reverse {
    grid-template-columns: 1fr 1fr;
}

.solution-item-reverse .solution-visual {
    order: 1;
}

.solution-item-reverse .solution-content {
    order: 2;
}

.solution-content {
    display: flex;
    flex-direction: column;
}

.solution-number {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

.solution-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.solution-content p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.solution-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

.solution-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 20px;
}

.solution-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.solution-video {
    width: 100%;
    max-width: 500px;
    height: 400px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.solution-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 600px;
    border-radius: 20px;
    object-fit: contain;
    box-shadow: var(--shadow);
    display: block;
}

.solution-placeholder {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #E8F4FD 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.solution-placeholder i {
    font-size: 120px;
    color: var(--primary-color);
    opacity: 0.3;
}

/* About Preview Section */
.about-preview {
    background: linear-gradient(135deg, #F1F8FF 0%, #E8F4F8 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(18, 43, 125, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.about-preview::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text-card {
    max-width: 900px;
    text-align: center;
    background: var(--bg-white);
    padding: 60px 50px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-color);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.card-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.card-waves .wave-svg {
    position: absolute;
    width: 100%;
    height: auto;
}

.card-waves .wave-top {
    top: -50px;
    left: 0;
    opacity: 0.6;
}

.card-waves .wave-bottom {
    bottom: -50px;
    left: 0;
    opacity: 0.4;
    transform: rotate(180deg);
}

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

.about-icon-wrapper {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 8px 25px rgba(18, 43, 125, 0.3);
    animation: float 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.about-icon-wrapper .doctor-icon {
    width: 60px;
    height: 60px;
    color: var(--bg-white);
}

.about-text-card > * {
    position: relative;
    z-index: 1;
}

.about-text-card h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.qualifications-badge {
    display: inline-block;
    background: linear-gradient(135deg, #E8F4F8 0%, #F1F8FF 100%);
    padding: 12px 30px;
    border-radius: 25px;
    border: 2px solid var(--primary-color);
    margin-bottom: 15px;
}

.qualifications {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: 0.5px;
}

.specialization {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    letter-spacing: 0.3px;
}

.about-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    margin: 25px auto;
    border-radius: 2px;
}

.about-description {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 35px;
    font-weight: 500;
    font-size: 17px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-placeholder {
    width: 350px;
    height: 350px;
    background: var(--bg-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.about-placeholder i {
    font-size: 100px;
    color: var(--primary-color);
    opacity: 0.3;
}

.doctor-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

/* CTA Section */
.cta-section {
    background: #0AA6A6;
    color: var(--bg-white);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--bg-white);
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: #E7006B;
}

.cta-section .btn-primary:hover {
    background: #c5005a;
}

/* Footer */
.main-footer {
    background: #164289;
    color: var(--bg-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    align-items: start;
    justify-items: stretch;
}

.footer-section {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10px;
}

@media (min-width: 769px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr) !important;
        display: grid !important;
    }
}

.footer-section {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 25px;
    color: var(--bg-white);
    font-weight: 700;
    text-align: center;
    font-size: 20px;
    width: 100%;
    margin-top: 0;
    align-self: center;
}

.footer-section:first-child {
    justify-content: center;
    align-items: center;
}

.footer-section:first-child h3,
.footer-section:first-child h4 {
    text-align: center;
    align-self: center;
}

.footer-section:first-child a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
    transition: transform 0.3s ease;
}

.footer-section:first-child a:hover .footer-logo {
    transform: scale(1.05);
}

.footer-section:first-child p {
    text-align: center;
    margin-top: 0;
    color: var(--bg-white);
    line-height: 1.6;
    font-size: 17px;
    margin-bottom: 0;
}

.footer-section p {
    color: var(--bg-white);
    font-size: 17px;
    font-weight: 500;
    margin: 0;
    text-align: center;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-section ul li {
    margin-bottom: 12px;
    font-size: 17px;
    color: var(--bg-white);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
}

.footer-section ul li i {
    color: var(--bg-white);
    font-size: 17px;
    flex-shrink: 0;
    width: 20px;
    margin-top: 2px;
}

.footer-section ul li a {
    color: var(--bg-white) !important;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    flex: 1;
    line-height: 1.5;
}

.footer-section ul li a:hover {
    color: var(--secondary-color) !important;
    text-decoration: underline;
}


.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-tagline {
    font-weight: 700;
    font-size: 18px;
    color: var(--bg-white);
    text-align: center;
    margin: 0;
    padding: 0;
    width: 100%;
}

.footer-copyright {
    text-align: center;
    font-size: 14px;
    color: var(--bg-white);
    opacity: 0.8;
    margin: 0;
    padding: 0;
}

/* Page Specific Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a9e 100%);
    color: var(--bg-white);
    padding: 120px 0 60px;
    text-align: center;
    margin-top: 0;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.page-content {
    padding: 80px 0;
}

.about-section {
    position: relative;
    overflow: hidden;
    background: var(--bg-white);
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.content-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

/* Service Tabs */
.service-tabs-container {
    margin-bottom: 40px;
}

.service-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.service-tab {
    padding: 15px 35px;
    background: var(--bg-white);
    border: 3px solid var(--primary-color);
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.service-tab:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.service-tab.active {
    background: var(--primary-color);
    color: var(--bg-white);
    box-shadow: var(--shadow-lg);
}

.service-tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.service-tab-content.active {
    display: block;
}

.service-card {
    border: 3px solid var(--primary-color);
    background: #E8F4F8;
    transition: all 0.3s ease;
}

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

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

.who-can-benefit-card {
    background: #E8F4F8;
}

/* Testimonial Background Section */
.testimonial-bg-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.testimonial-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    background-image: url('../New folder/7.png');
    background-size: cover;
    background-position: 60% center;
    background-repeat: no-repeat;
    opacity: 0.7;
    z-index: 0;
}

.testimonial-bg-section .container {
    position: relative;
    z-index: 1;
}

/* Patient Ratings Section */
.patient-ratings-section {
    background: #F5F5F5;
    border: 3px solid var(--primary-color);
}

.ratings-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.overall-rating {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rating-circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 8px 20px rgba(0, 200, 83, 0.3);
}

.rating-number {
    font-size: 72px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 15px;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.rating-stars {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.rating-stars i {
    font-size: 24px;
    color: var(--bg-white);
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
}

.rating-reviews {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.detailed-ratings {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.rating-item {
    display: grid;
    grid-template-columns: 180px 1fr 80px;
    gap: 20px;
    align-items: center;
}

.rating-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.rating-bar-container {
    width: 100%;
    height: 12px;
    background: #E0E0E0;
    border-radius: 10px;
    overflow: hidden;
}

.rating-bar {
    height: 100%;
    background: var(--secondary-color);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.rating-score {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: right;
}

/* Service Areas Section */
.service-areas-card {
    background: var(--bg-white);
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.service-area-item {
    background: linear-gradient(135deg, #E8F4F8 0%, #F1F8FF 100%);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
}

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

.service-area-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0px 4px 10px rgba(220, 53, 69, 0.3);
    border: 3px solid #DC3545;
}

.service-area-icon i {
    font-size: 36px;
    color: #DC3545;
}

.service-area-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-area-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
}

.content-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.content-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.content-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 700;
}

.content-card ul {
    list-style: none;
    padding-left: 0;
}

.content-card ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.content-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 20px;
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
    justify-items: center;
    justify-content: center;
}

.gallery-item {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Benefits Section */
.benefits-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

.benefits-text-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-text-item {
    background: #E8F4F8;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
}

.benefit-text-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.benefit-text-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
}

.benefits-images-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.benefit-image-item {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    position: relative;
}

.benefit-number {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
}

.benefit-image-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.benefit-text-item,
.benefit-image-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.benefit-text-item:hover,
.benefit-image-item:hover {
    transform: scale(1.02);
}

/* Benefit Modal */
.benefit-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.benefit-modal-content {
    background: var(--bg-white);
    border-radius: 20px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

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

.benefit-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 36px;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-modal-close:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: rotate(90deg);
}

.benefit-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

.benefit-modal-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-modal-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.benefit-modal-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-modal-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

.benefit-modal-text ul {
    list-style: none;
    padding: 0;
}

.benefit-modal-text ul li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 16px;
}

.benefit-modal-text ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 20px;
}

/* Why Choose MedSynk Section */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.why-choose-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-3px);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
}

.why-choose-header {
    width: 100%;
    height: 6px;
    background: var(--primary-color);
}

.why-choose-content {
    padding: 30px 25px;
}

.why-choose-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-choose-icon span {
    color: var(--bg-white);
    font-size: 18px;
    font-weight: 700;
}

.why-choose-icon i {
    color: var(--bg-white);
    font-size: 22px;
}

.why-choose-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
    line-height: 1.3;
}

.why-choose-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
}

/* Contact Form */
.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

/* Know More Form Section */
.know-more-section {
    background: var(--bg-white);
    border: 3px solid var(--primary-color);
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.1);
}

.know-more-form {
    max-width: 900px;
    margin: 0 auto;
}

.know-more-form .form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.know-more-form .form-group label i {
    color: var(--primary-color);
    font-size: 16px;
}

.form-group label i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Why Contact Us Section */
.why-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
    justify-items: center;
}

.why-contact-card {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: #E8F4F8;
    border: 3px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.why-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
}

.why-contact-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0px 4px 10px rgba(0, 200, 83, 0.3);
}

.why-contact-icon i {
    font-size: 36px;
    color: var(--bg-white);
}

.why-contact-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.why-contact-card p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 14px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 15px 0;
    }

    .logo-img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 22px;
    }

    .hero-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-text {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 42px;
        max-width: 100%;
        text-align: center;
    }

    .hero-video {
        width: 100%;
        height: 100%;
        min-height: 400px;
        max-height: 500px;
    }
    
    .hero-image {
        min-height: 400px;
        max-height: 500px;
    }
    
    .hero-section {
        min-height: auto;
        padding: 80px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-text h1 {
        font-size: 36px;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }

    .about-placeholder {
        width: 100%;
        max-width: 300px;
        height: 300px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-item {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }
    
    .solution-item-reverse .solution-visual {
        order: 2;
    }
    
    .solution-item-reverse .solution-content {
        order: 1;
    }
    
    .solution-item .solution-visual {
        order: 2;
    }
    
    .solution-item .solution-content {
        order: 1;
    }
    
    .benefits-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefits-images-column {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-choose-content {
        text-align: center;
    }
    
    .why-choose-icon {
        margin-left: auto;
        margin-right: auto;
    }
    
    .why-choose-card h3 {
        text-align: center;
    }
    
    .why-choose-card p {
        text-align: center;
    }
    
    .service-areas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ratings-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .rating-circle {
        width: 240px;
        height: 240px;
    }
    
    .rating-number {
        font-size: 60px;
    }
    
    .rating-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .rating-score {
        text-align: left;
    }
    
    .key-benefit-content {
        flex-direction: column;
        padding-left: 30px;
    }
    
    .key-benefit-item:hover {
        transform: translateY(-5px);
    }
    
    .know-more-form {
        display: block;
    }
    
    .know-more-form > div[style*="grid"] {
        grid-template-columns: 1fr !important;
    }
    
    .content-card > div[style*="grid"] {
        grid-template-columns: 1fr !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-section ul li {
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto 15px;
    }
    
    .why-contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        justify-items: center;
    }
    
    .why-contact-card {
        width: 100%;
        max-width: 280px;
        height: auto;
        min-height: 280px;
        padding: 25px 20px;
    }
    
    .why-contact-card h3 {
        font-size: 18px;
    }
    
    .why-contact-card p {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .know-more-form > div[style*="grid"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .content-card > div[style*="grid"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px;
        padding: 10px 12px;
    }
    
    .benefit-modal-body {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .benefit-modal-text h2 {
        font-size: 24px;
    }
    
    .benefit-modal-image img {
        max-width: 100%;
    }
}

/* Testimonial Scroll Section */
.testimonial-scroll-container {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
    position: relative;
}

.testimonial-scroll-wrapper {
    display: flex;
    gap: 30px;
    animation: scroll-testimonials 30s linear infinite;
    width: fit-content;
}

.testimonial-card {
    flex: 0 0 350px;
    min-width: 350px;
}

@keyframes scroll-testimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-scroll-container:hover .testimonial-scroll-wrapper {
    animation-play-state: paused;
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin: 15px 0;
}

.testimonial-stars i {
    color: #FFD700;
    font-size: 18px;
}

/* Key Benefits Highlighted Section */
.key-benefits-section {
    background: var(--bg-white);
}

.key-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.key-benefit-item {
    position: relative;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.key-benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.key-benefit-bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: var(--secondary-color);
}

.key-benefit-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 30px;
    padding-left: 40px;
}

.key-benefit-icon-wrapper {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0px 2px 8px rgba(0, 200, 83, 0.3);
}

.key-benefit-icon-wrapper i {
    color: var(--bg-white);
    font-size: 22px;
}

.key-benefit-text {
    flex: 1;
}

.key-benefit-text h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.key-benefit-text p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
}
    .solution-item-reverse {
        direction: ltr;
    }
    
    .solution-video,
    .solution-image,
    .solution-placeholder {
        max-width: 100%;
        height: 300px;
    }
    
    .solution-number {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    .solution-content h3 {
        font-size: 28px;
    }

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

    .footer-logo {
        max-width: 150px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    /* Contact page responsive */
    .page-content > .container > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .section-header h2 {
        font-size: 28px;
    }
}

/* Floating Contact Icons */
.floating-contact-icons {
    position: fixed;
    left: 20px;
    bottom: 100px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    animation: float 3s ease-in-out infinite;
}

.floating-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.floating-icon.whatsapp {
    background: #25D366;
}

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

.floating-icon i {
    font-size: 28px;
    color: white;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    body {
        margin-top: 110px;
    }
    
    .main-header {
        padding: 12px 0;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .nav-menu a {
        font-size: 16px;
    }
    
    .top-banner {
        top: 75px;
        padding: 8px 0;
        overflow: visible;
    }
    
    .top-banner .container {
        padding: 0 15px;
    }
    
    .banner-text {
        font-size: 11px;
        padding: 0;
        white-space: normal;
        line-height: 1.4;
        overflow: visible;
        word-wrap: break-word;
    }
    
    .floating-contact-icons {
        left: 15px;
        bottom: 80px;
    }
    
    .floating-icon {
        width: 50px;
        height: 50px;
    }
    
    .floating-icon i {
        font-size: 24px;
    }
}

