/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: #000345;
    color: #FFFFFF;
}

/* Typography Styles */
h1, h2, h3 {
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Navbar Styles */
.navbar {
    background-color: rgba(0, 3, 69, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(0, 3, 69, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.logo-text span {
    color: #ffb500;
}

/* Nav Menu */
.nav-bar {
    background-color: rgba(255, 181, 0, 0.1);
    border-radius: 40px;
    padding: 0 25px;
    height: 50px;
    display: flex;
    align-items: center;
    margin: 0 20px;
    backdrop-filter: blur(5px);
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-item {
    margin: 0 15px;
    position: relative;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 0;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #ffb500;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #ffb500;
}

/* Dropdown Icon */
.dropdown-icon {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown-parent:hover .dropdown-icon,
.mobile-dropdown-toggle.active .mobile-dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background-color: rgba(0, 3, 69, 0.95);
    border-radius: 10px;
    width: 220px;
    padding: 15px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 100;
    margin-top: 10px;
    backdrop-filter: blur(10px);
}

.dropdown-parent:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Dropdown Arrow */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 8px 8px 8px;
    border-style: solid;
    border-color: transparent transparent rgba(0, 3, 69, 0.95) transparent;
}

.dropdown-item {
    display: block;
    padding: 5px 0;
}

.dropdown-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    padding: 8px 25px;
    display: block;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    color: #ffb500;
    background-color: rgba(255, 255, 255, 0.05);
}

/* Call Button */
.call-btn {
    background-color: #ffb500;
    color: #000345;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 181, 0, 0.3);
    letter-spacing: 0.5px;
}

.call-btn i {
    margin-left: 10px;
}

.call-btn:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1002;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    background-color: rgba(0, 3, 69, 0.98);
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    padding: 30px 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
    z-index: 1001;
}

.mobile-nav.show {
    transform: translateX(0);
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-nav-item {
    margin: 15px 0;
    width: 100%;
    text-align: center;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    display: block;
    padding: 10px 0;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #ffb500;
}

/* Mobile Dropdown */
.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-dropdown-icon {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.mobile-dropdown-menu {
    display: none;
    list-style: none;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin: 10px 0;
    padding: 10px;
    transition: all 0.3s ease;
}

.mobile-dropdown-menu.show {
    display: block;
}

.mobile-dropdown-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 18px;
    padding: 10px;
    display: block;
    transition: color 0.3s ease;
    text-align: center;
}

.mobile-dropdown-link:hover {
    color: #ffb500;
}

.mobile-call-btn {
    background-color: #ffb500;
    color: #000345;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 0;
    width: fit-content;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 181, 0, 0.3);
}

.mobile-call-btn i {
    margin-left: 10px;
    font-size: 18px;
}

.mobile-call-btn:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

/* Helper class for body when mobile menu is open */
.no-scroll {
    overflow: hidden;
}

/* Menu toggle in active state */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
    background-color: #ffb500;
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
    background-color: #ffb500;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-bar {
        display: none;
    }
    
    .call-btn {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .mobile-nav {
        display: block;
    }
}

@media (max-width: 768px) {
    .mobile-nav-link {
        font-size: 20px;
    }
    
    .mobile-dropdown-link {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .container {
        height: 70px;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .mobile-nav {
        top: 70px;
        height: calc(100vh - 70px);
    }
    
    .mobile-nav-link {
        font-size: 18px;
    }
    
    .mobile-dropdown-link {
        font-size: 14px;
        padding: 8px;
    }
}

.none{
    text-decoration: none;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #ffffff;
}


























/* Innovative Full Screen Slider Styles */
.ortho-fullscreen-slider {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background-color: #000345;
    margin-top: 80px; /* Account for fixed navbar */
}

/* 3D Perspective Container */
.slider-perspective {
    width: 100%;
    height: 100%;
    perspective: 1200px;
    transform-style: preserve-3d;
    position: relative;
}

/* Slides Container */
.slides-container {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Individual Slide */
.exp-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), 
                visibility 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.exp-slide-active {
    opacity: 1;
    visibility: visible;
    z-index: 5;
}

/* Parallax Background Layers */
.parallax-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    will-change: transform;
}

.bg-layer {
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 1.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.exp-slide-active .bg-layer {
    transform: scale(1);
}

.overlay-layer {
    background: linear-gradient(135deg, rgba(0, 3, 69, 0.9) 0%, rgba(0, 3, 69, 0.138) 50%, rgba(0, 3, 69, 0.5) 100%);
    z-index: 1;
}

.accent-layer {
    background: radial-gradient(circle at 25% 25%, rgba(255, 181, 0, 0.15) 0%, transparent 60%);
    z-index: 2;
    opacity: 0;
    transition: opacity 1s ease;
}

.exp-slide-active .accent-layer {
    opacity: 1;
}

/* Slide Content */
.exp-slide-content {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 5;
    display: flex;
    align-items: center;
    padding: 0 10vw;
}

.exp-slide-inner {
    position: relative;
    max-width: 700px;
    transform: translateY(50px);
    opacity: 0;
    transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1), 
                opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.exp-slide-active .exp-slide-inner {
    transform: translateY(0);
    opacity: 1;
}

/* Slide Number */
.exp-slide-number {
    font-size: 10rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: -100px;
    left: -20px;
    line-height: 1;
    z-index: -1;
}

/* Slide Title */
.exp-slide-title1 {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 20px;
    overflow: hidden;
}

.title-line1 {
    display: block;
    overflow: hidden;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s, 
                opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s;
}

.exp-slide-active .title-line1 {
    transform: translateY(0);
    opacity: 1;
}

.title-line1.highlight {
    color: #ffb500;
}

/* Divider */
.exp-divider {
    width: 80px;
    height: 4px;
    background-color: #ffb500;
    margin: 30px 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
}

.exp-slide-active .exp-divider {
    transform: scaleX(1);
}

/* Slide Text */
.exp-slide-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 90%;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.7s, 
                opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.7s;
}

.exp-slide-active .exp-slide-text {
    transform: translateY(0);
    opacity: 1;
}

/* Interactive Button */
.exp-slide-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
    transition-property: background-color, border-color, transform, opacity;
    transition-duration: 0.3s, 0.3s, 1s, 1s;
    transition-timing-function: ease, ease, cubic-bezier(0.215, 0.61, 0.355, 1), cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-delay: 0s, 0s, 0.8s, 0.8s;
}

.exp-slide-active .exp-slide-btn {
    transform: translateY(0);
    opacity: 1;
}

.exp-slide-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #ffb500;
    transition: width 0.3s ease;
    z-index: -1;
}

.exp-slide-btn:hover {
    border-color: #ffb500;
    color: #000345;
}

.exp-slide-btn:hover::before {
    width: 100%;
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.exp-slide-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Stats Section */
.exp-stats {
    display: flex;
    margin-top: 40px;
    gap: 40px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.9s, 
                opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.9s;
}

.exp-slide-active .exp-stats {
    transform: translateY(0);
    opacity: 1;
}

.stat-item {
    position: relative;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffb500;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-symbol {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation Container */
.exp-nav-container {
    position: absolute;
    right: 5vw;
    bottom: 5vh;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Current/Total Indicator */
.exp-counter {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.current-slide {
    font-size: 1.5rem;
    color: #ffffff;
}

.counter-progress {
    width: 60px;
    padding: 0 10px;
}

.progress-track {
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    position: relative;
}

.progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 33.33%; /* Will be updated with JS */
    background-color: #ffb500;
    transition: width 0.4s ease;
}

.total-slides {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Interactive Navigation */
.exp-navigation {
    margin: 0 20px;
}

.nav-preview-container {
    display: flex;
    gap: 15px;
}

.nav-preview {
    width: 60px;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
    transform: scale(0.9);
}

.nav-preview:hover {
    opacity: 1;
    transform: scale(1);
}

.nav-preview.active {
    opacity: 1;
    transform: scale(1);
}

.preview-img {
    width: 100%;
    height: 40px;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
    margin-bottom: 5px;
}

.preview-text {
    font-size: 0.75rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}

/* Slide Controls */
.exp-controls {
    display: flex;
    gap: 15px;
}

.exp-prev-btn,
.exp-next-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
}

.exp-prev-btn:hover,
.exp-next-btn:hover {
    transform: scale(1.1);
}

.btn-circle {
    stroke: rgba(255, 255, 255, 0.3);
    transition: stroke 0.3s ease;
}

.exp-prev-btn:hover .btn-circle,
.exp-next-btn:hover .btn-circle {
    stroke: #ffb500;
}

.btn-arrow {
    fill: none;
    stroke: #ffffff;
    stroke-width: 1.5px;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s ease;
}

.exp-prev-btn:hover .btn-arrow,
.exp-next-btn:hover .btn-arrow {
    stroke: #ffb500;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 1s cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s forwards;
    opacity: 0;
}

.scroll-text {
    margin-bottom: 10px;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffb500;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .exp-slide-title1 {
        font-size: 3.25rem;
    }
    
    .exp-slide-number {
        font-size: 8rem;
        top: -80px;
    }
}

@media (max-width: 992px) {
    .exp-slide-content {
        padding: 0 8vw;
    }
    
    .exp-slide-inner {
        max-width: 600px;
    }
    
    .exp-slide-title1 {
        font-size: 2.75rem;
    }
    
    .exp-slide-number {
        font-size: 7rem;
        top: -70px;
    }
    
    .exp-nav-container {
        right: 3vw;
    }
}

@media (max-width: 768px) {
    .exp-slide-content {
        padding: 0 6vw;
        justify-content: center;
        text-align: center;
    }
    
    .exp-slide-inner {
        max-width: 500px;
    }
    
    .exp-slide-number {
        display: none;
    }
    
    .exp-slide-title1 {
        font-size: 2.25rem;
    }
    
    .exp-divider {
        margin: 20px auto;
    }
    
    .exp-slide-text {
        margin: 0 auto 25px;
        font-size: 1rem;
    }
    
    .exp-stats {
        justify-content: center;
    }
    
    .exp-nav-container {
        right: 50%;
        transform: translateX(50%);
        bottom: 3vh;
    }
    
    .nav-preview-container {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 576px) {
    .exp-slide-title {
        font-size: 1.875rem;
    }
    
    .exp-stat-number {
        font-size: 2rem;
    }
    
    .exp-stat-symbol {
        font-size: 1.25rem;
    }
    
    .exp-slide-btn {
        padding: 14px 28px;
    }
    
    .exp-counter {
        gap: 5px;
    }
    
    .counter-progress {
        width: 40px;
    }
    
    .current-slide, .total-slides {
        font-size: 1.25rem;
    }
}









/* Enhanced Single Doctor Profile Section - White Background */
.doctor-profile-section {
    background-color: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Background decoration */
.doctor-profile-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background-color: rgba(255, 181, 0, 0.03);
    border-radius: 50%;
    z-index: 1;
}

.doctor-profile-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(0, 3, 69, 0.03);
    border-radius: 50%;
    z-index: 1;
}

.profile-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.profile-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Profile Text */
.profile-text {
    flex: 1;
    max-width: 650px;
}

.profile-heading {
    margin-bottom: 30px;
}

.profile-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: #ffb500;
    margin-bottom: 10px;
    position: relative;
    padding-left: 40px;
}

.profile-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background-color: #ffb500;
    transform: translateY(-50%);
}

.profile-name {
    font-size: 2.75rem;
    font-weight: 800;
    color: #000345;
    line-height: 1.2;
    margin: 0 0 15px 0;
}

.profile-designation {
    display: flex;
    align-items: center;
    font-size: 1.125rem;
    color: #555555;
}

.designation-separator {
    width: 6px;
    height: 6px;
    background-color: #ffb500;
    border-radius: 50%;
    margin: 0 12px;
}

/* Profile Description */
.profile-description {
    margin-bottom: 30px;
}

.profile-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 20px;
}

.profile-description p:last-child {
    margin-bottom: 0;
}

/* Profile Actions */
.profile-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

/* Updated Read More button to be a link */
.read-more-btn {
    background-color: transparent;
    border: 1px solid #000345;
    color: #000345;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.read-more-btn:hover {
    background-color: #000345;
    color: #ffffff;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.read-more-btn:hover .btn-icon {
    transform: translateX(5px);
}

.appointment-btn {
    background-color: #ffb500;
    color: #000345;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 181, 0, 0.2);
}

.appointment-btn:hover {
    background-color: #000345;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 3, 69, 0.2);
}

/* Profile Credentials */
.profile-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

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

.credential-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 181, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffb500;
    font-size: 1.25rem;
}

.credential-info {
    display: flex;
    flex-direction: column;
}

.credential-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777777;
    margin-bottom: 3px;
}

.credential-text {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #000345;
}

/* Enhanced Profile Image */
.profile-image {
    flex: 1;
    max-width: 450px;
}

.image-frame {
    position: relative;
    padding-bottom: 40px;
    padding-right: 40px;
}

.image-frame img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
    position: relative;
    z-index: 3;
    border: 5px solid #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Enhanced background shade */
.image-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 90%;
    height: 90%;
    border-radius: 15px;
    background-color: rgba(0, 3, 69, 0.05);
    z-index: 1;
}

/* Added decorative border */
.image-frame::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 90%;
    height: 90%;
    border: 2px solid #ffb500;
    border-radius: 15px;
    z-index: 2;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .profile-name {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .doctor-profile-section {
        padding: 80px 0;
    }
    
    .profile-content {
        flex-direction: column-reverse;
        gap: 40px;
    }
    
    .profile-text, .profile-image {
        max-width: 100%;
    }
    
    .profile-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .profile-name {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .doctor-profile-section {
        padding: 60px 0;
    }
    
    .profile-credentials {
        gap: 20px;
    }
    
    .credential {
        width: 100%;
    }
    
    .image-frame {
        padding-bottom: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 576px) {
    .profile-name {
        font-size: 1.875rem;
    }
    
    .profile-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .read-more-btn, .appointment-btn {
        width: 100%;
        justify-content: center;
    }
    
    .image-frame {
        padding-bottom: 25px;
        padding-right: 25px;
    }
}
































/* Innovative Joint Replacement Section Styles */
.innovative-joint-section {
    position: relative;
    background-color: #f3f0ff; /* Light purple background */
    padding: 120px 0;
    overflow: hidden;
}

/* Background Elements */
.wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='320' viewBox='0 0 1440 320'%3E%3Cpath fill='%23e6e0ff' fill-opacity='1' d='M0,192L48,176C96,160,192,128,288,128C384,128,480,160,576,176C672,192,768,192,864,176C960,160,1056,128,1152,112C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    z-index: 0;
}

.diagonal-overlay {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60%;
    height: 120%;
    background-color: rgba(255, 181, 0, 0.05); /* Extremely subtle yellow tint */
    transform: rotate(-15deg);
    z-index: 0;
}

.joint-inner-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
}

/* Section Header */
.joint-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    background-color: #ffb500;
    border-radius: 50%;
    display: block;
}

.indicator-text {
    font-size: 1rem;
    font-weight: 600;
    color: #000345;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.joint-heading {
    font-size: 2.75rem;
    font-weight: 800;
    color: #000345;
    margin: 0;
    position: relative;
    display: inline-block;
}

.joint-heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ffb500;
}

/* Content Grid Layout */
.joint-content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 30px;
    grid-template-areas:
        "image feature1 feature2"
        "image cta cta";
}

/* Feature Image Card */
.joint-image-card {
    grid-area: image;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    aspect-ratio: 3/4;
}

.image-card-inner {
    position: relative;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

.joint-image-card:hover .image-card-inner {
    transform: scale(1.02);
}

.joint-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 6px solid white;
}

.floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    color: #ffb500;
}

.badge-info {
    display: flex;
    flex-direction: column;
}

.badge-number {
    font-size: 1.25rem;
    font-weight: 800;
    color: #000345;
    line-height: 1;
}

.badge-text {
    font-size: 0.6875rem;
    font-weight: 500;
    color: #444444;
    line-height: 1.2;
}

/* Feature Boxes */
.joint-feature-box {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.joint-feature-box:nth-of-type(1) {
    grid-area: feature1;
}

.joint-feature-box:nth-of-type(2) {
    grid-area: feature2;
}

.joint-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    color: #ffb500;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000345;
    margin: 0 0 15px 0;
}

.feature-text {
    font-size: 0.9375rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* CTA Box */
.joint-cta-box {
    grid-area: cta;
    background: linear-gradient(135deg, #000345 0%, #001c67 100%);
    color: white;
    border-radius: 10px;
    padding: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.cta-lead {
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.cta-button {
    background-color: #ffb500;
    color: #000345;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.cta-button:hover {
    background-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

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

@media (max-width: 992px) {
    .innovative-joint-section {
        padding: 90px 0;
    }
    
    .joint-content-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "image image"
            "feature1 feature2"
            "cta cta";
    }
    
    .joint-image-card {
        aspect-ratio: 16/9;
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .innovative-joint-section {
        padding: 70px 0;
    }
    
    .joint-heading {
        font-size: 2rem;
    }
    
    .joint-content-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "image"
            "feature1"
            "feature2"
            "cta";
        gap: 20px;
    }
    
    .joint-cta-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .joint-heading {
        font-size: 1.75rem;
    }
    
    .section-indicator {
        margin-bottom: 10px;
    }
    
    .indicator-text {
        font-size: 0.875rem;
    }
    
    .joint-feature-box {
        padding: 25px;
    }
    
    .floating-badge {
        top: 15px;
        right: 15px;
        padding: 8px 12px;
    }
}








































/* Creative Sports Medicine Section */
.sports-medicine-section {
    position: relative;
    padding: 120px 0;
    background-color: #f5f8fc; /* Light blue-gray background */
    overflow: hidden;
}

/* Hexagonal Background Pattern */
.hex-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill='%23000345' fill-opacity='0.02'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.7;
    z-index: 1;
}

.sports-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Circular Header */
.circular-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 70px;
    position: relative;
}

.circle-outer {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 181, 0, 0.15) 0%, rgba(255, 181, 0, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.circle-inner {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #ffb500;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(255, 181, 0, 0.2);
}

.section-number {
    font-size: 2rem;
    font-weight: 800;
    color: #000345;
}

.sports-heading {
    font-size: 2.75rem;
    font-weight: 800;
    color: #000345;
    text-align: center;
    margin: 0;
    position: relative;
}

.accent-text {
    color: #ffb500;
    position: relative;
}

.accent-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ffb500;
}

/* Card Stack Container */
.card-stack-container {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
}

/* Main Visual Element */
.sports-visual {
    flex: 1;
    position: relative;
}

.visual-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.main-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    z-index: 3;
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.sports-visual:hover .main-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 3, 69, 0.7) 100%);
    z-index: 2;
}

.perspective-border {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 3px solid #ffb500;
    border-radius: 15px;
    z-index: 1;
    transform: perspective(500px) rotateY(-5deg);
}

.stat-badge {
    position: absolute;
    top: 20px;
    right: 0;
    background-color: #000345;
    color: white;
    padding: 15px 20px;
    border-radius: 0 10px 10px 0;
    z-index: 4;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffb500;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 5px;
}

/* Staggered Cards */
.sports-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-top: 30px;
}

.sports-card {
    background-color: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.sports-card:nth-child(1) {
    transform: translateX(-30px);
}

.sports-card:nth-child(3) {
    transform: translateX(-30px);
}

.sports-card:hover {
    transform: translateY(-5px) translateX(0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    color: #ffb500;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000345;
    margin: 0 0 10px 0;
}

.card-text {
    font-size: 0.9375rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Bottom Content Area */
.sports-bottom-content {
    background: linear-gradient(135deg, #000345 0%, #001a5e 100%);
    border-radius: 20px;
    padding: 40px;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.bottom-text {
    font-size: 1.125rem;
    line-height: 1.7;
    margin: 0 0 30px 0;
    max-width: 800px;
}

.action-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.sports-cta {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    background-color: #ffb500;
    color: #000345;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sports-cta:hover {
    background-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.cta-icon {
    transition: transform 0.3s ease;
}

.sports-cta:hover .cta-icon {
    transform: translateX(5px);
}

.partners-showcase {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.partner-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

.partner-logos {
    display: flex;
    gap: 15px;
}

.partner-logo {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

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

@media (max-width: 992px) {
    .sports-medicine-section {
        padding: 90px 0;
    }
    
    .card-stack-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .sports-card:nth-child(1),
    .sports-card:nth-child(3) {
        transform: translateX(0);
    }
    
    .visual-container {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .sports-medicine-section {
        padding: 70px 0;
    }
    
    .circular-header {
        margin-bottom: 50px;
    }
    
    .sports-heading {
        font-size: 2rem;
    }
    
    .circle-outer {
        width: 80px;
        height: 80px;
    }
    
    .circle-inner {
        width: 60px;
        height: 60px;
    }
    
    .section-number {
        font-size: 1.5rem;
    }
    
    .sports-bottom-content {
        padding: 30px;
    }
    
    .bottom-text {
        font-size: 1rem;
    }
    
    .action-area {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sports-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .sports-heading {
        font-size: 1.75rem;
    }
    
    .perspective-border {
        display: none;
    }
    
    .stat-badge {
        padding: 10px 15px;
    }
    
    .stat-value {
        font-size: 1.25rem;
    }
}












































/* Professional Auto-Rotating Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background-color: #000345;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

/* Background Pattern */
.testimonials-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: 1;
}

.testimonials-accent-shape {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60%;
    height: 70%;
    background: radial-gradient(ellipse at center, rgba(255, 181, 0, 0.1) 0%, rgba(255, 181, 0, 0) 70%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Section Header */
.testimonials-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: #ffb500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 20px 0;
}

.title-accent {
    width: 60px;
    height: 3px;
    background-color: #ffb500;
    margin: 0 auto;
}

/* Testimonials Carousel Container */
.testimonials-carousel-container {
    display: flex;
    gap: 60px;
}

/* Left Side: Controls and Counter */
.testimonials-controls {
    flex: 0 0 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 0;
}

.controls-top {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-counter {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.current-slide {
    color: #ffb500;
}

.counter-divider {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 5px;
}

.total-slides {
    color: rgba(255, 255, 255, 0.5);
}

.carousel-controls {
    display: flex;
    gap: 15px;
}

.control-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background-color: transparent;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-button:hover {
    background-color: #ffb500;
    border-color: #ffb500;
    color: #000345;
    transform: translateY(-3px);
}

.control-button:active {
    transform: translateY(0);
}

/* Progress Bar */
.progress-container {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 30px 0;
}

.progress-bar {
    width: 25%; /* Will be controlled via JS */
    height: 100%;
    background-color: #ffb500;
    border-radius: 2px;
    transition: width 0.3s linear;
}

/* Quote Icon */
.quote-icon {
    color: rgba(255, 255, 255, 0.05);
    font-size: 5rem;
    margin-top: auto;
}

/* Right Side: Testimonial Slides */
.testimonials-slider {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(40px);
    transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.6s ease;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.testimonial-content {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(10px);
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 30px 0;
    position: relative;
}

/* Author Section */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 181, 0, 0.2);
}

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

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.author-detail {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 8px 0;
}

.rating {
    display: flex;
    gap: 5px;
}

.star {
    width: 18px;
    height: 18px;
    fill: #ffb500;
}

/* Automatic Animation */
@keyframes progressAnimation {
    from { width: 0; }
    to { width: 100%; }
}

.progress-bar.animate {
    animation: progressAnimation 5s linear forwards;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .testimonials-section {
        padding: 90px 0;
    }
    
    .testimonials-carousel-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .testimonials-controls {
        flex: none;
        width: 100%;
        flex-direction: row;
        align-items: center;
        padding: 0;
    }
    
    .controls-top {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    
    .quote-icon {
        display: none;
    }
    
    .progress-container {
        margin: 0 20px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 70px 0;
    }
    
    .testimonials-header {
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .testimonial-content {
        padding: 30px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonials-controls {
        flex-direction: column;
        gap: 20px;
    }
    
    .control-button {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .progress-container {
        margin: 15px 0;
    }
}
















































/* Innovative Orthopedic Trauma Section Styles */
.trauma-section {
    padding: 120px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Interactive Background Elements */
.trauma-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.animated-line {
    position: absolute;
    background-color: rgba(0, 3, 69, 0.03);
    border-radius: 100px;
    transform-origin: center;
}

.line-1 {
    width: 3px;
    height: 50%;
    top: 0;
    left: 15%;
    animation: lineMovement1 15s infinite alternate ease-in-out;
}

.line-2 {
    width: 70%;
    height: 2px;
    top: 40%;
    right: -20%;
    animation: lineMovement2 20s infinite alternate ease-in-out;
}

.line-3 {
    width: 3px;
    height: 60%;
    bottom: 0;
    right: 25%;
    animation: lineMovement3 18s infinite alternate ease-in-out;
}

@keyframes lineMovement1 {
    0% { transform: translateY(0) rotate(0); }
    100% { transform: translateY(20%) rotate(5deg); }
}

@keyframes lineMovement2 {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-15%) translateY(50px); }
}

@keyframes lineMovement3 {
    0% { transform: translateY(0) rotate(0); }
    100% { transform: translateY(-15%) rotate(-3deg); }
}

.focus-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    top: -150px;
    right: -150px;
    background: radial-gradient(circle, rgba(255, 181, 0, 0.05) 0%, rgba(255, 181, 0, 0) 70%);
    animation: circleBreathing 10s infinite alternate ease-in-out;
}

@keyframes circleBreathing {
    0% { transform: scale(1); opacity: 0.05; }
    100% { transform: scale(1.2); opacity: 0.02; }
}

.trauma-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Staggered Title Element */
.trauma-title-block {
    margin-bottom: 60px;
    position: relative;
}

.title-tag-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.service-tag {
    background-color: rgba(255, 181, 0, 0.15);
    color: #000345;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.title-line {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 181, 0, 0.5), rgba(255, 181, 0, 0));
    max-width: 100px;
}

.trauma-heading {
    font-size: 3rem;
    font-weight: 800;
    color: #000345;
    line-height: 1.1;
    margin: 0;
}

.emphasis-text {
    color: #ffb500;
    position: relative;
    display: inline-block;
}

.emphasis-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: rgba(255, 181, 0, 0.2);
    z-index: -1;
}

/* Asymmetric Content Layout */
.trauma-content-layout {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

/* Left Column: Imagery and Stats */
.trauma-imagery-column {
    flex: 1;
    position: relative;
}

.imagery-stack {
    position: relative;
    max-width: 500px;
}

.trauma-image-main {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.trauma-image-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.trauma-image-main:hover img {
    transform: scale(1.05);
}

.image-highlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 3, 69, 0) 0%, rgba(0, 3, 69, 0.3) 100%);
    z-index: 2;
}

.trauma-stat-cards {
    display: flex;
    gap: 20px;
    margin-top: -30px;
    position: relative;
    z-index: 2;
}

.stat-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    flex: 1;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ffb500;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-symbol {
    font-size: 1.25rem;
    font-weight: 600;
}

.stat-label {
    font-size: 0.875rem;
    color: #555555;
    font-weight: 500;
}

/* Right Column: Content Cards */
.trauma-content-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.trauma-content-card {
    background-color: #fafafa;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.intro-card {
    background-color: #000345;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.intro-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 181, 0, 0.3) 0%, rgba(255, 181, 0, 0) 70%);
    border-radius: 50%;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.7;
    margin: 0 0 25px 0;
}

.trauma-action-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffb500;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.trauma-action-link:hover {
    color: #ffffff;
}

.link-icon {
    transition: transform 0.3s ease;
}

.trauma-action-link:hover .link-icon {
    transform: translateX(5px);
}

/* Treatment cards with rotated layout */
.treatment-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    transform: rotate(-2deg);
}

.treatment-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.treatment-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-indicator {
    width: 4px;
    height: 40px;
    background-color: #ffb500;
    border-radius: 2px;
    flex-shrink: 0;
}

.card-content {
    flex: 1;
}

.treatment-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000345;
    margin: 0 0 10px 0;
}

.treatment-text {
    font-size: 0.9375rem;
    color: #555555;
    line-height: 1.6;
    margin: 0;
}

/* Bottom Feature Element */
.trauma-emergency-feature {
    background: linear-gradient(to right, #ffb500, #ff9500);
    color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    gap: 30px;
    align-items: center;
    box-shadow: 0 15px 30px rgba(255, 181, 0, 0.2);
}

.emergency-icon {
    background-color: rgba(255, 255, 255, 0.2);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.emergency-content {
    flex: 1;
}

.emergency-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.emergency-text {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.emergency-contact {
    background-color: #ffffff;
    color: #000345;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.emergency-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    color: #ffb500;
}

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

@media (max-width: 992px) {
    .trauma-section {
        padding: 90px 0;
    }
    
    .trauma-content-layout {
        flex-direction: column;
        gap: 40px;
    }
    
    .imagery-stack {
        max-width: 100%;
    }
    
    .treatment-cards-wrapper {
        transform: rotate(0);
    }
}

@media (max-width: 768px) {
    .trauma-section {
        padding: 70px 0;
    }
    
    .trauma-heading {
        font-size: 2rem;
    }
    
    .trauma-emergency-feature {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 25px;
    }
    
    .emergency-contact {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .trauma-heading {
        font-size: 1.75rem;
    }
    
    .stat-card {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .treatment-card {
        padding: 20px;
    }
}





































/* Modern Trending Footer with Large Quote Styles */
.trendy-footer {
    width: 100%;
    background-color: #ffffff;
    position: relative;
}

/* Large Quote Section */
.quote-container {
    background-color: #f3f7ff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.quote-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000345' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.quote-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
}

.quote-icon {
    color: #ffb500;
    margin-bottom: 30px;
    transform: scale(1.2);
}

.large-quote {
    margin: 0;
    padding: 0;
    position: relative;
}

.large-quote p {
    font-size: 2.75rem;
    font-weight: 300;
    line-height: 1.3;
    color: #000345;
    margin: 0 0 40px 0;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.large-quote cite {
    font-style: normal;
    font-size: 1.125rem;
    color: #555555;
    font-weight: 500;
    display: block;
}

/* Footer Main Content */
.footer-main {
    background-color: #000345;
    color: #ffffff;
    padding: 100px 0 60px;
    position: relative;
}

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

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

/* Logo & About */
.footer-logo {
    margin-bottom: 20px;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.logo-text span {
    color: #ffb500;
}

.footer-about {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #ffb500;
    color: #000345;
    transform: translateY(-3px);
}

/* Footer Columns */
.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 25px 0;
    color: #ffffff;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #ffb500;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    display: inline-block;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background-color: #ffb500;
    transition: width 0.3s ease, padding-left 0.3s ease;
    opacity: 0;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 20px;
}

.footer-links a:hover::before {
    width: 12px;
    opacity: 1;
}

/* Contact List */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-item span:last-child {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Footer CTA */
.footer-cta {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-text {
    max-width: 60%;
}

.cta-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #ffffff;
}

.cta-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.cta-button {
    background-color: #ffb500;
    color: #000345;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 181, 0, 0.2);
}

.cta-button:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.2);
}

/* Footer Bottom / Copyright */
.footer-bottom {
    background-color: #000230;
    padding: 25px 0;
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffb500;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .large-quote p {
        font-size: 2.25rem;
    }
}

@media (max-width: 992px) {
    .quote-container {
        padding: 90px 0;
    }
    
    .large-quote p {
        font-size: 2rem;
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-text {
        max-width: 100%;
    }
    
    .footer-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .cta-button {
        align-self: flex-start;
    }
}

@media (max-width: 768px) {
    .quote-container {
        padding: 70px 0;
    }
    
    .large-quote p {
        font-size: 1.75rem;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom .footer-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .large-quote p {
        font-size: 1.5rem;
    }
    
    .quote-icon {
        transform: scale(1);
    }
    
    .footer-cta {
        padding: 30px;
    }
    
    .cta-text h3 {
        font-size: 1.25rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
}







































/* Professional Inner Page Banner Styles */
.inner-page-banner {
    position: relative;
    background-color: #000345;
    padding: 100px 0 80px;
    margin-top: 80px; /* Accounting for fixed navbar */
    overflow: hidden;
}

/* Dynamic Background Elements */
.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 4, 87, 1) 0%, rgba(0, 10, 140, 0.8) 100%);
    z-index: 1;
}

.accent-shape {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 70%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255, 181, 0, 0.15) 0%, rgba(255, 181, 0, 0) 70%);
    transform: rotate(-30deg);
    z-index: 2;
}

.dots-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: 3;
}

/* Banner Container */
.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

/* Banner Content */
.banner-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Left Content Column */
.banner-text-column {
    flex: 1;
    max-width: 600px;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #ffb500;
}

.breadcrumb-separator {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-current {
    color: #ffb500;
    font-weight: 500;
}

/* Page Title */
.page-title {
    font-size: 3.25rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 25px 0;
    line-height: 1.1;
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #ffb500, rgba(255, 181, 0, 0.3));
}

/* Page Description */
.page-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 35px 0;
}

/* Action Button */
.banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #ffb500;
    color: #000345;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 181, 0, 0.2);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.banner-cta:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.banner-cta:hover .btn-icon {
    transform: translateX(3px);
}

/* Right Visual Column */
.banner-visual-column {
    flex: 1;
    position: relative;
}

/* Visual Element */
.banner-visual {
    position: relative;
    width: 100%;
}

.visual-highlight {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 75%;
    height: 75%;
    background-color: rgba(255, 181, 0, 0.1);
    border-radius: 10px;
    z-index: 1;
}

.banner-image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1);
    transition: transform 0.8s ease;
}

.banner-image-container:hover .banner-image {
    transform: scale(1.05);
}

/* Floating Badges */
.banner-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    padding: 8px 18px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 3;
    animation: badgePulse 3s infinite alternate ease-in-out;
}

.badge-1 {
    top: 20px;
    left: -15px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 30px;
    right: -15px;
    animation-delay: 1.5s;
}

@keyframes badgePulse {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-8px);
    }
}

.badge-icon {
    color: #ffb500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #000345;
    white-space: nowrap;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .page-title {
        font-size: 2.75rem;
    }
}

@media (max-width: 992px) {
    .inner-page-banner {
        padding: 80px 0 60px;
    }
    
    .banner-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .banner-text-column {
        max-width: 100%;
        text-align: center;
    }
    
    .page-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .visual-highlight {
        display: none;
    }
    
    .banner-image-container {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .banner-badge {
        position: absolute;
    }
    
    .badge-1 {
        top: 20px;
        left: 20px;
    }
    
    .badge-2 {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .inner-page-banner {
        padding: 70px 0 50px;
    }
    
    .page-title {
        font-size: 2.25rem;
    }
    
    .page-description {
        font-size: 1rem;
    }
    
    .breadcrumb-nav {
        justify-content: center;
    }
    
    .banner-cta {
        padding: 12px 24px;
    }
    
    .banner-badge {
        padding: 6px 14px;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .inner-page-banner {
        padding: 60px 0 40px;
    }
    
    .page-title {
        font-size: 1.875rem;
    }
    
    .page-title::after {
        width: 60px;
        height: 3px;
    }
    
    .banner-image-container {
        margin: 0 10px;
    }
    
    .banner-badge.badge-1 {
        top: 10px;
        left: 10px;
    }
    
    .banner-badge.badge-2 {
        bottom: 10px;
        right: 10px;
    }
}























/* Professional Physician Profile Section Styles */
.pro-physician-section {
    position: relative;
    padding: 120px 0;
    background-color: #ffffff;
    overflow: hidden;
}

/* Background Elements */
.pro-physician-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.pro-shape-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 28% 72% 70% 30% / 30% 30% 70% 70%;
    background-color: rgba(0, 3, 69, 0.02);
    z-index: 1;
    animation: rotateBg 25s linear infinite;
}

.pro-shape-2 {
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    background-color: rgba(255, 181, 0, 0.03);
    z-index: 1;
    animation: rotateBg 20s linear infinite reverse;
}

.pro-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000345' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 1;
}

@keyframes rotateBg {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.pro-physician-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Top Header */
.pro-physician-header {
    text-align: center;
    margin-bottom: 70px;
}

.pro-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 181, 0, 0.1);
    color: #000345;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.pro-badge-icon {
    color: #ffb500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pro-header-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #000345;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.pro-header-accent {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #ffb500, rgba(255, 181, 0, 0.3));
    margin: 0 auto;
}

/* Main Grid Layout */
.pro-physician-grid {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(400px, 2fr);
    gap: 60px;
}

/* Left Column: Visual Elements */
.pro-physician-visual {
    position: relative;
}

.pro-image-container {
    position: relative;
    margin-bottom: 40px;
}

.pro-image-wrapper {
    position: relative;
    z-index: 2;
}

.pro-doctor-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: block;
}

.pro-image-badge {
    position: absolute;
    top: 20px;
    right: -20px;
    background-color: #ffb500;
    color: #000345;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(255, 181, 0, 0.2);
    z-index: 3;
}

.pro-badge-years {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.pro-badge-text {
    font-size: 0.75rem;
    font-weight: 600;
}

.pro-image-border {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 3px solid #ffb500;
    border-radius: 10px;
    z-index: 1;
}

/* Credentials */
.pro-credentials {
    margin-bottom: 40px;
}

.pro-credential-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 16px;
    background-color: #f8f9fd;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pro-credential-item:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.pro-credential-icon {
    background-color: rgba(255, 181, 0, 0.1);
    min-width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffb500;
}

.pro-credential-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #000345;
    margin: 0 0 5px 0;
}

.pro-credential-content p {
    font-size: 0.9375rem;
    color: #555555;
    margin: 0;
}

/* Appointment Button */
.pro-cta-container {
    text-align: center;
}

.pro-appointment-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #000345;
    color: #ffffff;
    padding: 16px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 3, 69, 0.2);
}

.pro-appointment-btn svg {
    transition: transform 0.3s ease;
}

.pro-appointment-btn:hover {
    background-color: #ffb500;
    color: #000345;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 181, 0, 0.3);
}

.pro-appointment-btn:hover svg {
    transform: translateX(4px);
}

/* Right Column: Information */
.pro-identity-card {
    background: linear-gradient(135deg, #000345 0%, #001a5e 100%);
    color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 15px 30px rgba(0, 3, 69, 0.15);
}

.pro-identity-header {
    margin-bottom: 25px;
}

.pro-doctor-name {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.pro-doctor-titles {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.pro-title-separator {
    width: 5px;
    height: 5px;
    background-color: #ffb500;
    border-radius: 50%;
    display: block;
}

.pro-specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pro-specialty-tag {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffb500;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Section Title Styling */
.pro-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000345;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 20px 0;
}

.pro-title-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 181, 0, 0.1);
    border-radius: 8px;
    color: #ffb500;
}

/* Doctor Biography */
.pro-biography {
    margin-bottom: 40px;
}

.pro-biography-content {
    color: #444444;
    font-size: 1rem;
    line-height: 1.7;
}

.pro-biography-content p {
    margin: 0 0 20px 0;
}

.pro-biography-content p:last-child {
    margin-bottom: 0;
}

/* Areas of Expertise */
.pro-expertise {
    margin-bottom: 40px;
}

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

.pro-expertise-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.pro-expertise-icon {
    min-width: 48px;
    height: 48px;
    background-color: rgba(0, 3, 69, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000345;
}

.pro-expertise-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #000345;
    margin: 0 0 8px 0;
}

.pro-expertise-content p {
    font-size: 0.9375rem;
    color: #555555;
    line-height: 1.6;
    margin: 0;
}

/* Patient Satisfaction */
.pro-satisfaction {
    background-color: #f8f9fd;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.pro-satisfaction-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.pro-satisfaction-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000345;
    margin: 0;
}

.pro-satisfaction-rating {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pro-rating-stars {
    display: flex;
    align-items: center;
}

.pro-star {
    width: 20px;
    height: 20px;
    fill: #ffb500;
    margin-right: 2px;
}

.pro-star:last-child {
    margin-right: 0;
}

.pro-rating-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #000345;
}

.pro-rating-value span {
    font-size: 1rem;
    font-weight: 400;
    color: #777777;
}

.pro-satisfaction-metrics {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pro-metric {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pro-metric-label {
    width: 40%;
    font-size: 0.9375rem;
    color: #444444;
}

.pro-metric-bar {
    flex: 1;
    height: 8px;
    background-color: rgba(0, 3, 69, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.pro-metric-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(to right, #ffb500, #ff9500);
    border-radius: 4px;
    width: 0;
    transition: width 1.5s ease-in-out;
}

.pro-metric-value {
    width: 10%;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #000345;
    text-align: right;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .pro-header-title {
        font-size: 2.5rem;
    }
    
    .pro-doctor-name {
        font-size: 1.75rem;
    }
    
    .pro-expertise-grid {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .pro-physician-section {
        padding: 90px 0;
    }
    
    .pro-physician-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .pro-physician-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .pro-image-container {
        margin-bottom: 30px;
    }
    
    .pro-expertise-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pro-satisfaction-metrics {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .pro-physician-section {
        padding: 70px 0;
    }
    
    .pro-header-title {
        font-size: 2rem;
    }
    
    .pro-identity-card {
        padding: 25px;
    }
    
    .pro-doctor-name {
        font-size: 1.5rem;
    }
    
    .pro-doctor-titles {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .pro-title-separator {
        display: none;
    }
    
    .pro-satisfaction-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .pro-physician-section {
        padding: 60px 0;
    }
    
    .pro-header-title {
        font-size: 1.75rem;
    }
    
    .pro-image-badge {
        padding: 8px 15px;
        right: -10px;
    }
    
    .pro-badge-years {
        font-size: 1.5rem;
    }
    
    .pro-section-title {
        font-size: 1.25rem;
    }
    
    .pro-metric {
        flex-wrap: wrap;
    }
    
    .pro-metric-label {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .pro-metric-bar {
        flex: 1;
    }
    
    .pro-metric-value {
        width: auto;
        margin-left: 10px;
    }
    
    .pro-credential-item {
        padding: 12px;
    }
    
    .pro-credential-icon {
        min-width: 40px;
        height: 40px;
    }
}







































/* Doctor Credentials Timeline Section Styles */
.doc-credentials-section {
    position: relative;
    padding: 120px 0;
    background-color: #f8f9fd;
    overflow: hidden;
}

/* Background Elements */
.doc-cred-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.doc-cred-circle {
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 181, 0, 0.05) 0%, rgba(255, 181, 0, 0) 70%);
    z-index: 1;
}

.doc-cred-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000345' fill-opacity='0.02' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
}

.doc-cred-line {
    position: absolute;
    width: 2px;
    height: 60%;
    top: 20%;
    left: 100px;
    background: linear-gradient(to bottom, rgba(0, 3, 69, 0.01), rgba(0, 3, 69, 0.05), rgba(0, 3, 69, 0.01));
    z-index: 1;
}

.doc-cred-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Section Header */
.doc-cred-header {
    text-align: center;
    margin-bottom: 60px;
}

.doc-cred-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffb500;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
}

.doc-cred-subtitle::before,
.doc-cred-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: rgba(255, 181, 0, 0.5);
}

.doc-cred-subtitle::before {
    left: -40px;
}

.doc-cred-subtitle::after {
    right: -40px;
}

.doc-cred-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000345;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.doc-cred-divider {
    width: 60px;
    height: 3px;
    background-color: #ffb500;
    margin: 0 auto;
}

/* Tabbed Navigation */
.doc-cred-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    position: relative;
}

.doc-tab-btn {
    background-color: transparent;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    color: #555555;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.doc-tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 3, 69, 0.05);
    border-radius: 30px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    z-index: -1;
}

.doc-tab-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.doc-tab-btn.active {
    background-color: #000345;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 3, 69, 0.15);
}

/* Tab Content */
.doc-tab-content {
    position: relative;
    min-height: 400px;
}

.doc-tab-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.doc-tab-pane.active {
    display: block;
    opacity: 1;
}

/* Timeline Styles */
.doc-timeline {
    position: relative;
    padding-left: 50px;
}

.doc-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    width: 2px;
    height: 100%;
    background-color: rgba(0, 3, 69, 0.1);
    z-index: 1;
}

.doc-timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
}

.doc-timeline-item:last-child {
    margin-bottom: 0;
}

.doc-timeline-date {
    position: absolute;
    left: -50px;
    top: 0;
    width: 110px;
    text-align: right;
    padding-right: 30px;
}

.doc-year {
    font-size: 1rem;
    font-weight: 700;
    color: #000345;
    white-space: nowrap;
}

.doc-timeline-connector {
    position: absolute;
    left: -25px;
    top: 0;
    height: 100%;
    z-index: 2;
}

.doc-connector-dot {
    width: 16px;
    height: 16px;
    background-color: #ffb500;
    border-radius: 50%;
    border: 3px solid #f8f9fd;
    box-shadow: 0 0 0 2px rgba(255, 181, 0, 0.2);
    margin-left: -8px;
}

.doc-connector-line {
    width: 2px;
    height: calc(100% - 16px);
    background-color: rgba(0, 3, 69, 0.1);
    margin-left: -1px;
    margin-top: 16px;
}

.doc-timeline-content {
    flex: 1;
}

.doc-timeline-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 25px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.doc-timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.doc-card-header {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.doc-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000345;
    margin: 0;
}

.doc-card-badge {
    display: inline-block;
    padding: 5px 12px;
    background-color: rgba(255, 181, 0, 0.1);
    color: #000345;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 20px;
}

.doc-card-body {
    margin-bottom: 20px;
}

.doc-card-body p {
    margin: 0 0 15px 0;
    color: #555555;
    line-height: 1.7;
    font-size: 0.9375rem;
}

.doc-card-body p:last-child {
    margin-bottom: 0;
}

.doc-card-list {
    margin: 0;
    padding-left: 20px;
}

.doc-card-list li {
    margin-bottom: 8px;
    color: #555555;
    font-size: 0.9375rem;
}

.doc-card-list li:last-child {
    margin-bottom: 0;
}

.doc-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.doc-card-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #777777;
    font-size: 0.875rem;
}

.doc-card-location svg {
    width: 16px;
    height: 16px;
    color: #ffb500;
}

/* Certifications Grid */
.doc-cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.doc-cert-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.doc-cert-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.doc-cert-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(0, 3, 69, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000345;
    flex-shrink: 0;
}

.doc-cert-icon svg {
    width: 24px;
    height: 24px;
}

.doc-cert-content {
    flex: 1;
}

.doc-cert-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #000345;
    margin: 0 0 5px 0;
}

.doc-cert-content p {
    font-size: 0.9375rem;
    color: #555555;
    margin: 0 0 10px 0;
}

.doc-cert-year {
    font-size: 0.875rem;
    color: #777777;
    display: block;
}

/* Awards List */
.doc-awards-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.doc-award-item {
    display: flex;
    gap: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.doc-award-item:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.doc-award-year {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffb500;
    min-width: 80px;
    text-align: center;
    padding-top: 5px;
}

.doc-award-content {
    flex: 1;
}

.doc-award-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000345;
    margin: 0 0 5px 0;
}

.doc-award-content p {
    font-size: 1rem;
    color: #555555;
    margin: 0 0 10px 0;
}

.doc-award-desc {
    font-size: 0.9375rem;
    color: #777777;
    font-style: italic;
    display: block;
}

/* Statistics */
.doc-cred-stats {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #000345 0%, #001a5e 100%);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 3, 69, 0.15);
}

.doc-stat-item {
    text-align: center;
    color: #ffffff;
}

.doc-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffb500;
    line-height: 1;
    margin-bottom: 10px;
}

.doc-stat-label {
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .doc-cred-title {
        font-size: 2.25rem;
    }
    
    .doc-cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .doc-credentials-section {
        padding: 90px 0;
    }
    
    .doc-cred-tabs {
        flex-wrap: wrap;
    }
    
    .doc-cert-grid {
        grid-template-columns: 1fr;
    }
    
    .doc-timeline {
        padding-left: 30px;
    }
    
    .doc-timeline-date {
        position: relative;
        left: 0;
        top: -30px;
        width: auto;
        text-align: left;
        padding-right: 0;
    }
    
    .doc-cred-stats {
        flex-wrap: wrap;
        padding: 30px;
    }
    
    .doc-stat-item {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .doc-credentials-section {
        padding: 70px 0;
    }
    
    .doc-cred-title {
        font-size: 2rem;
    }
    
    .doc-tab-btn {
        padding: 10px 20px;
        font-size: 0.9375rem;
        width: calc(50% - 10px);
        text-align: center;
    }
    
    .doc-timeline-item {
        flex-direction: column;
    }
    
    .doc-award-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .doc-award-year {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .doc-credentials-section {
        padding: 60px 0;
    }
    
    .doc-cred-title {
        font-size: 1.75rem;
    }
    
    .doc-timeline::before {
        left: 20px;
    }
    
    .doc-timeline-connector {
        left: -20px;
    }
    
    .doc-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .doc-cred-stats {
        padding: 25px;
    }
    
    .doc-stat-item {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .doc-stat-item:last-child {
        margin-bottom: 0;
    }
}






































/* Advanced Doctor FAQ Section Styles */
.med-faq-section {
    position: relative;
    padding: 120px 0;
    background-color: #ffffff;
    overflow: hidden;
}

/* Background Elements */
.med-faq-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.med-bg-shape {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 600px;
    height: 600px;
    border-radius: 34% 66% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(135deg, rgba(0, 3, 69, 0.03) 0%, rgba(0, 3, 69, 0) 100%);
    z-index: 1;
    animation: rotateShape 40s linear infinite;
}

@keyframes rotateShape {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.med-bg-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000345' fill-opacity='0.01' fill-rule='evenodd'%3E%3Cpath d='M0 0h4v4H0V0zm4 4h4v4H4V4z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
}

.med-faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Section Header */
.med-faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.med-header-accent {
    width: 64px;
    height: 64px;
    background-color: rgba(255, 181, 0, 0.1);
    color: #ffb500;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.med-header-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000345;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.med-title-accent {
    color: #ffb500;
    position: relative;
    display: inline-block;
}

.med-title-accent::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(255, 181, 0, 0.2);
    z-index: -1;
}

.med-header-intro {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #555555;
}

/* Interactive FAQ Carousel */
.med-faq-carousel {
    margin-bottom: 50px;
}

.med-carousel-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.med-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    padding: 10px 0;
}

.med-category-card {
    min-width: 220px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: perspective(800px) rotateY(0deg);
    transform-style: preserve-3d;
    position: relative;
}

.med-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 3, 69, 0.03);
    border-radius: 10px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.med-category-card:hover {
    transform: perspective(800px) rotateY(10deg) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.med-category-card:hover::before {
    opacity: 1;
}

.med-category-card.med-active {
    background-color: #000345;
    color: #ffffff;
    transform: perspective(800px) rotateY(0deg) translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 3, 69, 0.2);
}

.med-card-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(255, 181, 0, 0.1);
    color: #ffb500;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.med-category-card.med-active .med-card-icon {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.med-card-icon svg {
    width: 28px;
    height: 28px;
}

.med-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000345;
    margin: 0;
    transition: all 0.3s ease;
}

.med-category-card.med-active .med-card-title {
    color: #ffffff;
}

/* Carousel Controls */
.med-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.med-prev-btn,
.med-next-btn {
    width: 48px;
    height: 48px;
    background-color: rgba(0, 3, 69, 0.05);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000345;
    cursor: pointer;
    transition: all 0.3s ease;
}

.med-prev-btn:hover,
.med-next-btn:hover {
    background-color: #000345;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 3, 69, 0.1);
}

.med-prev-btn svg,
.med-next-btn svg {
    width: 20px;
    height: 20px;
}

/* FAQ Content Area */
.med-faq-content {
    background-color: #f8f9fd;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

/* Search Bar */
.med-search-container {
    margin-bottom: 30px;
}

.med-search-bar {
    display: flex;
    background-color: #ffffff;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.med-search-input {
    flex: 1;
    border: none;
    padding: 15px 20px;
    font-size: 1rem;
    color: #333333;
    background: transparent;
    font-family: inherit;
}

.med-search-input:focus {
    outline: none;
}

.med-search-btn {
    background-color: #000345;
    color: #ffffff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.med-search-btn:hover {
    background-color: #ffb500;
    transform: rotate(90deg);
}

.med-search-btn svg {
    width: 20px;
    height: 20px;
}

.med-search-results {
    margin-top: 10px;
    padding: 0 20px;
    font-size: 0.875rem;
    color: #777777;
}

/* FAQ Accordion */
.med-faq-group {
    display: none;
}

.med-faq-group.active {
    display: block;
}

.med-faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.3s ease;
}

.med-faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.med-faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.med-faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #000345;
    margin: 0;
    flex: 1;
    padding-right: 15px;
}

.med-question-toggle {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.med-plus,
.med-minus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #000345;
    transition: all 0.3s ease;
}

.med-plus {
    width: 2px;
    height: 14px;
    opacity: 1;
}

.med-minus {
    width: 14px;
    height: 2px;
}

.med-faq-item.active .med-plus {
    opacity: 0;
}

.med-faq-item.active .med-minus {
    background-color: #ffb500;
}

.med-faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
}

.med-faq-item.active .med-faq-question {
    background-color: #f8f9fd;
}

.med-faq-item.active .med-faq-answer {
    max-height: 2000px;
    padding: 0 25px 25px;
    transition: all 1s cubic-bezier(1, 0, 1, 0);
}

.med-faq-answer p {
    margin: 0 0 15px 0;
    line-height: 1.7;
    color: #555555;
}

.med-faq-answer p:last-child {
    margin-bottom: 0;
}

.med-faq-answer ul,
.med-faq-answer ol {
    margin: 0 0 15px 0;
    padding-left: 20px;
}

.med-faq-answer li {
    margin-bottom: 8px;
    color: #555555;
}

.med-faq-answer li:last-child {
    margin-bottom: 0;
}

.med-faq-answer strong {
    color: #000345;
    font-weight: 600;
}

/* No Results Message */
.med-no-results {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.med-no-results-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(255, 181, 0, 0.1);
    color: #ffb500;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.med-no-results h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000345;
    margin: 0 0 15px 0;
}

.med-no-results p {
    color: #555555;
    max-width: 500px;
    margin: 0 auto;
}

.med-no-results a {
    color: #ffb500;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.med-no-results a:hover {
    color: #000345;
    text-decoration: underline;
}

/* CTA Section */
.med-faq-cta {
    margin-top: 60px;
    background: linear-gradient(135deg, #000345 0%, #001c67 100%);
    border-radius: 15px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 3, 69, 0.15);
}

.med-cta-content {
    flex: 1;
}

.med-cta-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.med-cta-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.med-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ffb500;
    color: #000345;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(255, 181, 0, 0.3);
}

.med-cta-button:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
}

.med-cta-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.med-cta-button:hover svg {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .med-header-title {
        font-size: 2.25rem;
    }
    
    .med-faq-content {
        padding: 30px;
    }
}

@media (max-width: 992px) {
    .med-faq-section {
        padding: 90px 0;
    }
    
    .med-faq-cta {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .med-cta-content {
        margin-bottom: 20px;
    }
    
    .med-category-card {
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .med-faq-section {
        padding: 70px 0;
    }
    
    .med-header-title {
        font-size: 2rem;
    }
    
    .med-header-intro {
        font-size: 1rem;
    }
    
    .med-carousel-track {
        padding-bottom: 20px;
    }
    
    .med-category-card {
        min-width: 150px;
        padding: 20px 15px;
    }
    
    .med-card-icon {
        width: 50px;
        height: 50px;
    }
    
    .med-card-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .med-card-title {
        font-size: 1rem;
    }
    
    .med-faq-question h3 {
        font-size: 1rem;
    }
    
    .med-faq-content {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .med-faq-section {
        padding: 60px 0;
    }
    
    .med-header-title {
        font-size: 1.75rem;
    }
    
    .med-faq-carousel {
        margin-bottom: 30px;
    }
    
    .med-category-card {
        min-width: 130px;
        padding: 15px 10px;
    }
    
    .med-search-bar {
        flex-direction: column;
        padding: 10px;
        border-radius: 15px;
    }
    
    .med-search-input {
        width: 100%;
        padding: 10px 15px;
        border-radius: 10px;
        margin-bottom: 10px;
    }
    
    .med-search-btn {
        width: 100%;
        border-radius: 10px;
        height: 45px;
    }
    
    .med-faq-question {
        padding: 15px 20px;
    }
    
    .med-faq-answer {
        padding: 0 20px;
    }
    
    .med-faq-item.active .med-faq-answer {
        padding: 0 20px 20px;
    }
    
    .med-faq-cta {
        padding: 25px;
    }
}








/* Interactive Timeline Joint Replacement Services Styles */
.jtl-services-section {
    position: relative;
    padding: 120px 0;
    background-color: #ffffff;
    overflow: hidden;
}

/* Background Elements */
.jtl-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.jtl-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000345' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 1;
}

.jtl-bg-shape {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    background: radial-gradient(circle, rgba(0, 3, 69, 0.03) 0%, rgba(0, 3, 69, 0) 70%);
    z-index: 1;
    animation: rotateShape 40s linear infinite;
}

@keyframes rotateShape {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.jtl-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Section Header */
.jtl-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.jtl-header-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, #ffb500, rgba(255, 181, 0, 0.2));
    margin: 0 auto 20px;
}

.jtl-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #000345;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.jtl-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #555555;
    max-width: 600px;
    margin: 0 auto;
}

/* Timeline Navigator */
.jtl-timeline-navigator {
    position: relative;
    margin-bottom: 50px;
}

.jtl-services-list {
    margin-bottom: 20px;
}

.jtl-service-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px 0;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.jtl-service-item:not(:last-child) {
    border-bottom: 1px dashed rgba(0, 3, 69, 0.1);
}

.jtl-service-indicator {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid rgba(0, 3, 69, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.jtl-service-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ffb500;
    transition: all 0.3s ease;
}

.jtl-service-item.active .jtl-service-indicator,
.jtl-service-item:hover .jtl-service-indicator {
    border-color: #ffb500;
    box-shadow: 0 0 0 4px rgba(255, 181, 0, 0.1);
}

.jtl-service-item.active .jtl-service-indicator::before,
.jtl-service-item:hover .jtl-service-indicator::before {
    transform: translate(-50%, -50%) scale(1);
}

.jtl-service-label {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.jtl-label-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffb500;
    opacity: 0.7;
    transition: all 0.3s ease;
    min-width: 40px;
}

.jtl-label-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #555555;
    transition: all 0.3s ease;
}

.jtl-service-item.active .jtl-label-number,
.jtl-service-item:hover .jtl-label-number {
    opacity: 1;
}

.jtl-service-item.active .jtl-label-text,
.jtl-service-item:hover .jtl-label-text {
    color: #000345;
}

/* Progress Track */
.jtl-progress-track {
    position: relative;
    height: 4px;
    background-color: rgba(0, 3, 69, 0.05);
    border-radius: 2px;
    margin-bottom: 20px;
    overflow: hidden;
}

.jtl-progress-line {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 16.666%; /* For 6 items, each representing 16.666% */
    background: linear-gradient(to right, #ffb500, #ff9500);
    border-radius: 2px;
    transition: all 0.5s ease;
}

.jtl-progress-marker {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ffb500;
    box-shadow: 0 0 0 4px rgba(255, 181, 0, 0.3);
    z-index: 2;
    transition: all 0.5s ease;
}

/* Navigation Controls */
.jtl-navigation-controls {
    display: flex;
    justify-content: space-between;
}

.jtl-prev-btn,
.jtl-next-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background-color: #ffffff;
    color: #000345;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.jtl-prev-btn svg,
.jtl-next-btn svg {
    width: 24px;
    height: 24px;
}

.jtl-prev-btn:hover,
.jtl-next-btn:hover {
    background-color: #000345;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.jtl-prev-btn:disabled,
.jtl-next-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Service Details Area */
.jtl-service-details {
    background-color: #f8f9fd;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.jtl-detail-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.jtl-detail-panel.active {
    display: block;
    opacity: 1;
}

.jtl-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    min-height: 450px;
}

/* Panel Visual Area */
.jtl-panel-visual {
    background-color: #000345;
    position: relative;
    display: flex;
    flex-direction: column;
}

.jtl-panel-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.jtl-panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jtl-image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 181, 0, 0.9);
    color: #000345;
    padding: 8px 15px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.jtl-badge-icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Stats Display */
.jtl-panel-stats {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    margin-top: auto;
    background-color: rgba(0, 0, 0, 0.2);
    flex: 1;
}

.jtl-stat-item {
    text-align: center;
    color: #ffffff;
}

.jtl-stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffb500;
    line-height: 1;
    margin-bottom: 5px;
}

.jtl-stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Panel Content Area */
.jtl-panel-content {
    padding: 40px;
    background-color: #ffffff;
}

.jtl-panel-title {
    font-size: 2rem;
    font-weight: 800;
    color: #000345;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.jtl-panel-subtitle {
    font-size: 1.125rem;
    color: #555555;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 3, 69, 0.1);
}

.jtl-panel-description {
    margin-bottom: 30px;
}

.jtl-panel-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444444;
    margin: 0 0 20px 0;
}

/* Feature List */
.jtl-feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
    margin-bottom: 10px;
}

.jtl-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.jtl-feature-icon {
    min-width: 20px;
    height: 20px;
    background-color: rgba(255, 181, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffb500;
}

.jtl-feature-icon svg {
    width: 12px;
    height: 12px;
}

.jtl-feature-text {
    font-size: 0.9375rem;
    color: #555555;
}

/* Panel Button */
.jtl-panel-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #000345;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.jtl-panel-button:hover {
    background-color: #ffb500;
    color: #000345;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 181, 0, 0.2);
}

.jtl-panel-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.jtl-panel-button:hover svg {
    transform: translateX(5px);
}

/* Consultation CTA */
.jtl-consultation-cta {
    background: linear-gradient(135deg, #000345 0%, #001c67 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 3, 69, 0.15);
}

.jtl-cta-content {
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.jtl-cta-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffb500;
    flex-shrink: 0;
}

.jtl-cta-icon svg {
    width: 28px;
    height: 28px;
}

.jtl-cta-text {
    flex: 1;
    color: #ffffff;
}

.jtl-cta-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.jtl-cta-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.jtl-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ffb500;
    color: #000345;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(255, 181, 0, 0.3);
}

.jtl-cta-button:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.jtl-cta-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.jtl-cta-button:hover svg {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .jtl-title {
        font-size: 2.5rem;
    }
    
    .jtl-panel-grid {
        grid-template-columns: 1fr 1.2fr;
    }
    
    .jtl-panel-content {
        padding: 30px;
    }
    
    .jtl-panel-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 992px) {
    .jtl-services-section {
        padding: 90px 0;
    }
    
    .jtl-title {
        font-size: 2.25rem;
    }
    
    .jtl-panel-grid {
        grid-template-columns: 1fr;
    }
    
    .jtl-panel-visual {
        height: auto;
    }
    
    .jtl-panel-image {
        height: 250px;
    }
    
    .jtl-feature-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .jtl-cta-content {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .jtl-cta-button {
        margin-top: 20px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .jtl-services-section {
        padding: 70px 0;
    }
    
    .jtl-title {
        font-size: 2rem;
    }
    
    .jtl-subtitle {
        font-size: 1rem;
    }
    
    .jtl-service-label {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    
    .jtl-label-number {
        font-size: 1rem;
    }
    
    .jtl-label-text {
        font-size: 1rem;
    }
    
    .jtl-service-indicator {
        width: 20px;
        height: 20px;
    }
    
    .jtl-service-indicator::before {
        width: 10px;
        height: 10px;
    }
    
    .jtl-service-item {
        gap: 15px;
        padding: 15px 0;
    }
    
    .jtl-panel-title {
        font-size: 1.5rem;
    }
    
    .jtl-panel-content {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .jtl-services-section {
        padding: 60px 0;
    }
    
    .jtl-title {
        font-size: 1.75rem;
    }
    
    .jtl-service-item {
        gap: 10px;
    }
    
    .jtl-panel-stats {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .jtl-panel-title {
        font-size: 1.25rem;
    }
    
    .jtl-panel-subtitle {
        font-size: 1rem;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    
    .jtl-panel-description p {
        font-size: 0.9375rem;
    }
    
    .jtl-feature-text {
        font-size: 0.875rem;
    }
    
    .jtl-cta-content {
        padding: 25px;
    }
    
    .jtl-cta-icon {
        width: 50px;
        height: 50px;
    }
    
    .jtl-cta-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .jtl-cta-text h3 {
        font-size: 1.25rem;
    }
}


























































/* Orthopedic Procedure and Recovery Section Styles */


/* Main Section Container */
.ortpro-section {
    padding: 100px 0;
    background-color: var(--ortpro-white);
    position: relative;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
}

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

/* Section Header Styles */
.ortpro-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.ortpro-section-subtitle {
    color: var(--ortpro-secondary);
    font-weight: 600;
    font-size: 1.125rem;
    display: inline-block;
    margin-bottom: 10px;
    position: relative;
}

.ortpro-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--ortpro-primary);
}

.ortpro-title-separator {
    width: 60px;
    height: 3px;
    background-color: var(--ortpro-secondary);
    margin: 0 auto 20px;
}

.ortpro-section-desc {
    max-width: 800px;
    margin: 0 auto;
    color: var(--ortpro-text-medium);
    font-size: 1.125rem;
}

/* Tabs Navigation */
.ortpro-procedure-tabs {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ortpro-tabs-navigation {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.ortpro-tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background-color: var(--ortpro-light-bg);
    color: var(--ortpro-text-medium);
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--ortpro-transition);
    font-family: 'Outfit', sans-serif;
}

.ortpro-tab-btn .ortpro-tab-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(0, 3, 69, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--ortpro-transition);
}

.ortpro-tab-btn:hover {
    background-color: rgba(0, 3, 69, 0.05);
    color: var(--ortpro-primary);
}

.ortpro-tab-btn.active {
    background-color: var(--ortpro-primary);
    color: var(--ortpro-white);
}

.ortpro-tab-btn.active .ortpro-tab-icon {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Tab Content */
.ortpro-tabs-content {
    position: relative;
    min-height: 500px;
}

.ortpro-tab-pane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.ortpro-tab-pane.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ortpro-pane-grid {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(300px, 1.5fr);
    gap: 40px;
    align-items: start;
}

.ortpro-pane-image {
    border-radius: var(--ortpro-border-radius);
    overflow: hidden;
    box-shadow: var(--ortpro-box-shadow);
}

.ortpro-pane-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.ortpro-pane-image:hover img {
    transform: scale(1.03);
}

.ortpro-pane-content {
    padding: 20px 0;
}

.ortpro-step-indicator {
    display: inline-block;
    background-color: var(--ortpro-secondary);
    color: var(--ortpro-primary);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.ortpro-pane-title {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: var(--ortpro-primary);
}

.ortpro-intro-text {
    color: var(--ortpro-text-medium);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Timeline Styles */
.ortpro-timeline {
    margin: 30px 0;
}

.ortpro-timeline-item {
    display: flex;
    margin-bottom: 20px;
    position: relative;
}

.ortpro-timeline-marker {
    width: 36px;
    height: 36px;
    background-color: var(--ortpro-primary);
    color: var(--ortpro-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 15px;
    position: relative;
    z-index: 2;
}

.ortpro-timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 36px;
    left: 18px;
    width: 2px;
    height: calc(100% - 16px);
    background-color: rgba(0, 3, 69, 0.1);
    z-index: 1;
}

.ortpro-timeline-content {
    padding-bottom: 10px;
}

.ortpro-timeline-content h4 {
    font-size: 1.125rem;
    margin-bottom: 5px;
    color: var(--ortpro-primary);
}

.ortpro-timeline-content p {
    color: var(--ortpro-text-medium);
    font-size: 0.9375rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Checklist Container */
.ortpro-checklist-container {
    background-color: var(--ortpro-light-bg);
    border-radius: var(--ortpro-border-radius);
    padding: 25px;
    margin: 25px 0;
}

.ortpro-checklist-title {
    font-size: 1.125rem;
    margin-bottom: 15px;
    color: var(--ortpro-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ortpro-checklist-title i {
    color: var(--ortpro-secondary);
}

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

.ortpro-checklist li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: var(--ortpro-text-medium);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.ortpro-checklist li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--ortpro-secondary);
}

/* Note Boxes */
.ortpro-important-note, 
.ortpro-helpful-note,
.ortpro-warning-note {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: var(--ortpro-border-radius);
    margin: 25px 0;
}

.ortpro-important-note {
    background-color: rgba(0, 3, 69, 0.03);
    border-left: 3px solid var(--ortpro-secondary);
}

.ortpro-helpful-note {
    background-color: rgba(76, 175, 80, 0.05);
    border-left: 3px solid var(--ortpro-success);
}

.ortpro-warning-note {
    background-color: rgba(255, 87, 34, 0.05);
    border-left: 3px solid var(--ortpro-warning);
}

.ortpro-note-icon {
    flex-shrink: 0;
    font-size: 1.25rem;
    margin-top: 3px;
}

.ortpro-important-note .ortpro-note-icon {
    color: var(--ortpro-secondary);
}

.ortpro-helpful-note .ortpro-note-icon {
    color: var(--ortpro-success);
}

.ortpro-warning-note .ortpro-note-icon {
    color: var(--ortpro-warning);
}

.ortpro-note-content h4 {
    font-size: 1.125rem;
    margin-bottom: 5px;
}

.ortpro-note-content p {
    color: var(--ortpro-text-medium);
    margin-bottom: 10px;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.ortpro-note-content ul {
    margin: 0;
    padding-left: 20px;
}

.ortpro-note-content li {
    color: var(--ortpro-text-medium);
    font-size: 0.9375rem;
    margin-bottom: 5px;
    line-height: 1.6;
}

/* Procedure Phases */
.ortpro-procedure-phases {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

.ortpro-phase {
    background-color: var(--ortpro-light-bg);
    border-radius: var(--ortpro-border-radius);
    padding: 0;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.ortpro-phase-header {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(0, 3, 69, 0.05);
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ortpro-phase-icon {
    width: 40px;
    height: 40px;
    background-color: var(--ortpro-primary);
    color: var(--ortpro-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.ortpro-phase-header h4 {
    font-size: 1.125rem;
    margin-bottom: 0;
    color: var(--ortpro-primary);
}

.ortpro-phase-content {
    padding: 20px;
}

.ortpro-phase-content p {
    color: var(--ortpro-text-medium);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-top: 0;
}

.ortpro-phase-content ul,
.ortpro-phase-content ol {
    margin: 10px 0;
    padding-left: 20px;
}

.ortpro-phase-content li {
    color: var(--ortpro-text-medium);
    font-size: 0.9375rem;
    margin-bottom: 6px;
    line-height: 1.6;
}

.ortpro-time-estimate {
    background-color: rgba(0, 3, 69, 0.05);
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ortpro-primary);
    margin-top: 10px;
}

/* Feature Boxes */
.ortpro-surgery-features {
    display: flex;
    gap: 25px;
    margin-top: 30px;
}

.ortpro-feature {
    flex: 1;
    background-color: var(--ortpro-white);
    border-radius: var(--ortpro-border-radius);
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: var(--ortpro-transition);
}

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

.ortpro-feature-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(0, 3, 69, 0.05);
    color: var(--ortpro-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 1.125rem;
}

.ortpro-feature-text h5 {
    font-size: 1.125rem;
    margin-top: 0;
    margin-bottom: 5px;
    color: var(--ortpro-primary);
}

.ortpro-feature-text p {
    color: var(--ortpro-text-medium);
    font-size: 0.9375rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Recovery Stages */
.ortpro-recovery-stages {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

.ortpro-stage-card {
    background-color: var(--ortpro-white);
    border-radius: var(--ortpro-border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--ortpro-transition);
}

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

.ortpro-stage-header {
    background-color: var(--ortpro-primary);
    color: var(--ortpro-white);
    padding: 15px 20px;
}

.ortpro-stage-header h4 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--ortpro-white);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.ortpro-stage-header h4 span {
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.8;
}

.ortpro-stage-content {
    padding: 20px;
}

.ortpro-stage-content p {
    color: var(--ortpro-text-medium);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-top: 0;
}

.ortpro-stage-content ul {
    margin: 10px 0;
    padding-left: 20px;
}

.ortpro-stage-content li {
    color: var(--ortpro-text-medium);
    font-size: 0.9375rem;
    margin-bottom: 6px;
    line-height: 1.6;
}

.ortpro-milestone {
    background-color: rgba(76, 175, 80, 0.1);
    border-left: 3px solid var(--ortpro-success);
    padding: 12px 15px;
    margin-top: 15px;
    color: var(--ortpro-text-dark);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 0 var(--ortpro-border-radius) var(--ortpro-border-radius) 0;
}

/* Recovery Timeline Chart */
.ortpro-recovery-chart {
    margin: 40px 0;
    background-color: var(--ortpro-light-bg);
    padding: 25px;
    border-radius: var(--ortpro-border-radius);
}

.ortpro-chart-title {
    font-size: 1.25rem;
    margin-bottom: 25px;
    color: var(--ortpro-primary);
    text-align: center;
}

.ortpro-chart-container {
    position: relative;
    padding: 40px 0 70px;
}

.ortpro-chart-line {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgba(0, 3, 69, 0.1);
}

.ortpro-chart-marker {
    position: absolute;
    transform: translateX(-50%);
}

.ortpro-marker-point {
    width: 15px;
    height: 15px;
    background-color: var(--ortpro-secondary);
    border-radius: 50%;
    border: 3px solid var(--ortpro-white);
    box-shadow: 0 0 0 2px var(--ortpro-secondary);
    margin: 0 auto 10px;
}

.ortpro-marker-label {
    text-align: center;
    white-space: nowrap;
    font-size: 0.875rem;
    color: var(--ortpro-text-medium);
    transform: translateX(-50%);
    width: 100px;
    margin-top: 15px;
}

.ortpro-marker-label strong {
    display: block;
    color: var(--ortpro-primary);
    margin-bottom: 3px;
}

/* Aftercare Styles */
.ortpro-aftercare-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.ortpro-aftercare-card {
    background-color: var(--ortpro-white);
    border-radius: var(--ortpro-border-radius);
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--ortpro-transition);
}

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

.ortpro-card-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 3, 69, 0.05);
    color: var(--ortpro-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 15px;
    font-size: 1.25rem;
    transition: var(--ortpro-transition);
}

.ortpro-aftercare-card:hover .ortpro-card-icon {
    background-color: var(--ortpro-primary);
    color: var(--ortpro-white);
}

.ortpro-aftercare-card h4 {
    font-size: 1.125rem;
    margin-bottom: 15px;
    color: var(--ortpro-primary);
}

.ortpro-aftercare-card ul {
    margin: 0;
    padding-left: 20px;
}

.ortpro-aftercare-card li {
    color: var(--ortpro-text-medium);
    font-size: 0.9375rem;
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Implant Lifespan Section */
.ortpro-implant-lifespan {
    background-color: var(--ortpro-light-bg);
    border-radius: var(--ortpro-border-radius);
    padding: 25px;
    margin: 30px 0;
}

.ortpro-implant-lifespan h4 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--ortpro-primary);
    text-align: center;
}

.ortpro-stats-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 15px;
}

.ortpro-stat-item {
    text-align: center;
}

.ortpro-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ortpro-primary);
    line-height: 1;
    margin-bottom: 5px;
}

.ortpro-stat-label {
    font-size: 0.9375rem;
    color: var(--ortpro-text-medium);
}

.ortpro-stat-note {
    text-align: center;
    color: var(--ortpro-text-medium);
    font-size: 0.875rem;
    font-style: italic;
    margin-bottom: 0;
}

/* CTA Download Section */
.ortpro-resource-cta {
    margin-top: 60px;
    background: linear-gradient(135deg, var(--ortpro-primary) 0%, #001c67 100%);
    border-radius: var(--ortpro-border-radius);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    color: var(--ortpro-white);
    box-shadow: var(--ortpro-box-shadow);
}

.ortpro-cta-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.ortpro-cta-content {
    flex: 1;
}

.ortpro-cta-content h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--ortpro-white);
}

.ortpro-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.ortpro-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--ortpro-secondary);
    color: var(--ortpro-primary);
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--ortpro-transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.ortpro-download-btn:hover {
    background-color: var(--ortpro-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .ortpro-section-title {
        font-size: 2.25rem;
    }
    
    .ortpro-pane-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 992px) {
    .ortpro-section {
        padding: 80px 0;
    }
    
    .ortpro-pane-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ortpro-surgery-features {
        flex-direction: column;
    }
    
    .ortpro-aftercare-grid {
        grid-template-columns: 1fr;
    }
    
    .ortpro-resource-cta {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .ortpro-download-btn {
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .ortpro-section {
        padding: 60px 0;
    }
    
    .ortpro-section-title {
        font-size: 2rem;
    }
    
    .ortpro-tab-btn {
        width: calc(50% - 5px);
        justify-content: center;
    }
    
    .ortpro-tabs-navigation {
        gap: 10px;
    }
    
    .ortpro-pane-title {
        font-size: 1.375rem;
    }
    
    .ortpro-stats-container {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .ortpro-section-title {
        font-size: 1.75rem;
    }
    
    .ortpro-section-desc {
        font-size: 1rem;
    }
    
    .ortpro-tab-btn {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .ortpro-chart-container {
        padding: 30px 0 100px;
    }
    
    .ortpro-marker-label {
        transform: translateX(-50%) rotate(-45deg);
        text-align: left;
        width: 120px;
    }
}





































/* Contact Doctor Section Styles */

/* Base variables */
:root {
    --doct-primary: #000345;
    --doct-secondary: #ffb500;
    --doct-white: #ffffff;
    --doct-light-bg: #f5f8fd;
    --doct-gray-bg: #f0f2f8;
    --doct-text-dark: #222222;
    --doct-text-medium: #555555;
    --doct-text-light: #777777;
    --doct-border-radius: 10px;
    --doct-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --doct-transition: all 0.3s ease;
}

/* Main Section Styles */
.doct-contact-section {
    padding: 100px 0;
    background-color: var(--doct-white);
    position: relative;
    overflow: hidden;
}

/* Background Elements */
.doct-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.doct-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000345' fill-opacity='0.02' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
}

.doct-bg-shape {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255, 181, 0, 0.03) 0%, rgba(255, 181, 0, 0) 70%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(-15deg);
    z-index: 1;
}

.doct-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Section Header */
.doct-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.doct-section-subtitle {
    color: var(--doct-secondary);
    font-weight: 600;
    font-size: 1.125rem;
    display: inline-block;
    margin-bottom: 10px;
    position: relative;
}

.doct-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--doct-primary);
}

.doct-title-separator {
    width: 60px;
    height: 3px;
    background-color: var(--doct-secondary);
    margin: 0 auto 20px;
}

.doct-section-desc {
    max-width: 800px;
    margin: 0 auto;
    color: var(--doct-text-medium);
    font-size: 1.125rem;
}

/* Contact Grid Layout */
.doct-contact-grid {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(400px, 1.5fr);
    gap: 40px;
    margin-bottom: 40px;
}

/* Doctor Profile Card */
.doct-profile-card {
    background-color: var(--doct-white);
    border-radius: var(--doct-border-radius);
    overflow: hidden;
    box-shadow: var(--doct-box-shadow);
    display: flex;
    flex-direction: column;
}

/* Profile Header with Image */
.doct-profile-header {
    position: relative;
    padding: 25px;
    background-color: var(--doct-light-bg);
    display: flex;
    gap: 20px;
    align-items: center;
}

.doct-profile-image {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--doct-white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.doct-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doct-profile-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background-color: var(--doct-secondary);
    color: var(--doct-primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.doct-profile-credentials {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.doct-experience {
    display: flex;
    flex-direction: column;
}

.doct-experience-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--doct-primary);
    line-height: 1;
}

.doct-experience-text {
    font-size: 0.875rem;
    color: var(--doct-text-medium);
}

.doct-certification {
    display: flex;
    align-items: center;
    gap: 8px;
}

.doct-certification-icon {
    color: var(--doct-secondary);
}

.doct-certification-text {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--doct-text-medium);
}

/* Profile Content */
.doct-profile-content {
    padding: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.doct-doctor-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--doct-primary);
    margin: 0 0 5px 0;
}

.doct-doctor-title {
    font-size: 1.125rem;
    color: var(--doct-text-medium);
    margin-bottom: 20px;
}

.doct-doctor-bio {
    margin-bottom: 20px;
}

.doct-doctor-bio p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--doct-text-medium);
    margin-bottom: 0;
}

.doct-specialties {
    margin-bottom: 20px;
}

.doct-specialties-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--doct-primary);
    margin-bottom: 10px;
}

.doct-specialties-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.doct-specialty-tag {
    background-color: var(--doct-light-bg);
    color: var(--doct-primary);
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 20px;
    transition: var(--doct-transition);
}

.doct-specialty-tag:hover {
    background-color: var(--doct-primary);
    color: var(--doct-white);
}

.doct-profile-actions {
    margin-top: 15px;
}

.doct-profile-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--doct-primary);
    font-weight: 600;
    transition: var(--doct-transition);
}

.doct-profile-link i {
    transition: var(--doct-transition);
}

.doct-profile-link:hover {
    color: var(--doct-secondary);
}

.doct-profile-link:hover i {
    transform: translateX(5px);
}

/* Profile Contact */
.doct-profile-contact {
    padding: 25px;
    background-color: var(--doct-light-bg);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.doct-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.doct-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.doct-contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 3, 69, 0.05);
    color: var(--doct-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.doct-contact-text {
    display: flex;
    flex-direction: column;
}

.doct-contact-label {
    font-size: 0.75rem;
    color: var(--doct-text-light);
    text-transform: uppercase;
}

.doct-contact-value {
    font-size: 0.9375rem;
    color: var(--doct-text-medium);
    font-weight: 500;
}

.doct-social-links {
    display: flex;
    gap: 10px;
}

.doct-social-link {
    width: 36px;
    height: 36px;
    background-color: var(--doct-white);
    color: var(--doct-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--doct-transition);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.doct-social-link:hover {
    background-color: var(--doct-primary);
    color: var(--doct-white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Form Card */
.doct-form-card {
    background-color: var(--doct-white);
    border-radius: var(--doct-border-radius);
    overflow: hidden;
    box-shadow: var(--doct-box-shadow);
    padding: 30px;
}

.doct-form-header {
    margin-bottom: 25px;
}

.doct-form-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--doct-primary);
    margin: 0 0 10px 0;
}

.doct-form-subtitle {
    font-size: 0.9375rem;
    color: var(--doct-text-medium);
    margin-bottom: 0;
}

/* Form Styles */
.doct-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.doct-form-group {
    position: relative;
}

.doct-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.doct-form-label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--doct-text-dark);
    margin-bottom: 8px;
}

.doct-required {
    color: #e53935;
}

.doct-form-input,
.doct-form-select,
.doct-form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: var(--doct-white);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9375rem;
    color: var(--doct-text-dark);
    transition: var(--doct-transition);
}

.doct-form-input:focus,
.doct-form-select:focus,
.doct-form-textarea:focus {
    outline: none;
    border-color: var(--doct-secondary);
    box-shadow: 0 0 0 3px rgba(255, 181, 0, 0.1);
}

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

.doct-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.doct-form-checkbox {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.doct-checkbox-label {
    font-size: 0.875rem;
    color: var(--doct-text-medium);
    line-height: 1.5;
}

.doct-privacy-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background-color: rgba(0, 3, 69, 0.03);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 5px;
}

.doct-privacy-note i {
    color: var(--doct-secondary);
    margin-top: 3px;
}

.doct-privacy-note p {
    font-size: 0.8125rem;
    color: var(--doct-text-medium);
    margin: 0;
}

.doct-form-actions {
    margin-top: 10px;
}

.doct-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--doct-primary);
    color: var(--doct-white);
    font-weight: 600;
    font-size: 1rem;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--doct-transition);
    box-shadow: 0 5px 15px rgba(0, 3, 69, 0.15);
}

.doct-submit-btn:hover {
    background-color: var(--doct-secondary);
    color: var(--doct-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 181, 0, 0.2);
}

.doct-submit-btn i {
    transition: var(--doct-transition);
}

.doct-submit-btn:hover i {
    transform: translateX(5px);
}

.doct-alternative-contact {
    margin-top: 30px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.doct-alternative-contact p {
    font-size: 0.9375rem;
    color: var(--doct-text-medium);
    margin-bottom: 10px;
}

.doct-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--doct-primary);
    font-weight: 600;
    transition: var(--doct-transition);
}

.doct-phone-link:hover {
    color: var(--doct-secondary);
}

/* Consultation Note */
.doct-consultation-note {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: rgba(0, 3, 69, 0.03);
    border-left: 3px solid var(--doct-secondary);
    padding: 20px;
    border-radius: 0 var(--doct-border-radius) var(--doct-border-radius) 0;
}

.doct-note-icon {
    font-size: 1.25rem;
    color: var(--doct-secondary);
    margin-top: 3px;
}

.doct-note-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--doct-primary);
    margin: 0 0 5px 0;
}

.doct-note-content p {
    font-size: 0.9375rem;
    color: var(--doct-text-medium);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .doct-section-title {
        font-size: 2.25rem;
    }
    
    .doct-doctor-name {
        font-size: 1.5rem;
    }
}

@media (max-width: 992px) {
    .doct-contact-section {
        padding: 80px 0;
    }
    
    .doct-contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .doct-profile-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .doct-profile-image {
        width: 150px;
        height: 150px;
    }
    
    .doct-profile-credentials {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .doct-contact-section {
        padding: 60px 0;
    }
    
    .doct-section-title {
        font-size: 2rem;
    }
    
    .doct-section-desc {
        font-size: 1rem;
    }
    
    .doct-form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .doct-form-card {
        padding: 25px;
    }
    
    .doct-consultation-note {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .doct-section-title {
        font-size: 1.75rem;
    }
    
    .doct-profile-credentials {
        flex-direction: column;
        gap: 15px;
    }
    
    .doct-profile-contact {
        padding: 20px;
    }
    
    .doct-submit-btn {
        width: 100%;
        justify-content: center;
    }
}






































/* Map Location Section Styles */

/* Base Variables */
:root {
    --lmap-primary: #000345;
    --lmap-secondary: #ffb500;
    --lmap-light-blue: #f5f8fd;
    --lmap-white: #ffffff;
    --lmap-gray-light: #f0f2f8;
    --lmap-gray-medium: #e0e3f0;
    --lmap-text-dark: #222222;
    --lmap-text-medium: #555555;
    --lmap-text-light: #777777;
    --lmap-border-radius: 10px;
    --lmap-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --lmap-transition: all 0.3s ease;
}

/* Section Container */
.lmap-section {
    padding: 100px 0;
    background-color: var(--lmap-white);
    position: relative;
    overflow: hidden;
}

/* Background Elements */
.lmap-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.lmap-accent-shape-1 {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 181, 0, 0.05) 0%, rgba(255, 181, 0, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.lmap-accent-shape-2 {
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 3, 69, 0.03) 0%, rgba(0, 3, 69, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.lmap-dots-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    background-image: radial-gradient(var(--lmap-primary) 2px, transparent 2px);
    background-size: 40px 40px;
    z-index: 1;
}

.lmap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Section Header */
.lmap-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.lmap-section-subtitle {
    color: var(--lmap-secondary);
    font-weight: 600;
    font-size: 1.125rem;
    display: inline-block;
    margin-bottom: 10px;
    position: relative;
}

.lmap-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--lmap-primary);
}

.lmap-title-separator {
    width: 60px;
    height: 3px;
    background-color: var(--lmap-secondary);
    margin: 0 auto 20px;
}

/* Content Wrapper */
.lmap-content-wrapper {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(400px, 1.5fr);
    gap: 40px;
    margin-bottom: 60px;
}

/* Location Panel Styles */
.lmap-locations-panel {
    background-color: var(--lmap-white);
    border-radius: var(--lmap-border-radius);
    box-shadow: var(--lmap-box-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 600px; /* Fixed height to match map */
}

/* Tabs Navigation */
.lmap-tabs {
    display: flex;
    overflow-x: auto;
    background-color: var(--lmap-gray-light);
    scrollbar-width: none; /* Firefox */
}

.lmap-tabs::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.lmap-tab-button {
    flex: 1;
    min-width: 150px;
    padding: 15px 20px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--lmap-text-medium);
    border-bottom: 3px solid transparent;
    transition: var(--lmap-transition);
    position: relative;
}

.lmap-tab-button:hover {
    background-color: rgba(0, 3, 69, 0.03);
    color: var(--lmap-primary);
}

.lmap-tab-button.active {
    background-color: var(--lmap-white);
    color: var(--lmap-primary);
    border-bottom-color: var(--lmap-secondary);
}

.lmap-tab-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 3, 69, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lmap-primary);
    transition: var(--lmap-transition);
}

.lmap-tab-button.active .lmap-tab-icon {
    background-color: var(--lmap-primary);
    color: var(--lmap-white);
}

.lmap-tab-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.lmap-tab-name {
    font-weight: 600;
    font-size: 1rem;
}

.lmap-tab-subtitle {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Location Cards */
.lmap-location-cards {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.lmap-location-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--lmap-white);
    padding: 25px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--lmap-gray-medium) var(--lmap-white);
}

.lmap-location-card::-webkit-scrollbar {
    width: 8px;
}

.lmap-location-card::-webkit-scrollbar-track {
    background: var(--lmap-white);
}

.lmap-location-card::-webkit-scrollbar-thumb {
    background-color: var(--lmap-gray-medium);
    border-radius: 4px;
    border: 2px solid var(--lmap-white);
}

.lmap-location-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.lmap-card-header {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--lmap-gray-medium);
}

.lmap-location-badge {
    display: inline-block;
    background-color: var(--lmap-primary);
    color: var(--lmap-white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.lmap-location-name {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--lmap-primary);
    margin: 0 0 5px 0;
}

.lmap-location-tagline {
    font-size: 0.9375rem;
    color: var(--lmap-text-medium);
    margin: 0;
}

.lmap-card-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.lmap-detail-item {
    display: flex;
    gap: 15px;
}

.lmap-detail-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 3, 69, 0.05);
    color: var(--lmap-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.lmap-detail-text {
    flex: 1;
}

.lmap-detail-text strong {
    display: block;
    font-weight: 600;
    color: var(--lmap-primary);
    margin-bottom: 5px;
}

.lmap-detail-text p {
    font-size: 0.9375rem;
    color: var(--lmap-text-medium);
    margin: 0;
    line-height: 1.6;
}

.lmap-card-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.lmap-directions-btn,
.lmap-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: var(--lmap-transition);
    flex: 1;
}

.lmap-directions-btn {
    background-color: var(--lmap-primary);
    color: var(--lmap-white);
}

.lmap-directions-btn:hover {
    background-color: var(--lmap-secondary);
    color: var(--lmap-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 181, 0, 0.2);
}

.lmap-call-btn {
    background-color: rgba(0, 3, 69, 0.05);
    color: var(--lmap-primary);
}

.lmap-call-btn:hover {
    background-color: rgba(0, 3, 69, 0.1);
    transform: translateY(-3px);
}

/* Map Container Styles */
.lmap-map-container {
    position: relative;
    background-color: var(--lmap-gray-light);
    border-radius: var(--lmap-border-radius);
    overflow: hidden;
    box-shadow: var(--lmap-box-shadow);
    height: 600px; /* Fixed height */
}

.lmap-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 3, 69, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(5px);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.lmap-map-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.lmap-overlay-content {
    text-align: center;
    padding: 30px;
    background-color: var(--lmap-white);
    border-radius: var(--lmap-border-radius);
    box-shadow: var(--lmap-box-shadow);
    max-width: 90%;
}

.lmap-overlay-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 3, 69, 0.05);
    color: var(--lmap-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}

.lmap-overlay-content p {
    font-size: 1rem;
    color: var(--lmap-text-medium);
    margin-bottom: 20px;
}

.lmap-load-map-btn {
    background-color: var(--lmap-secondary);
    color: var(--lmap-primary);
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--lmap-transition);
    font-family: 'Outfit', sans-serif;
}

.lmap-load-map-btn:hover {
    background-color: var(--lmap-primary);
    color: var(--lmap-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 3, 69, 0.2);
}

.lmap-map-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.lmap-map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Map Controls */
.lmap-map-zoom-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.lmap-zoom-in,
.lmap-zoom-out {
    width: 40px;
    height: 40px;
    background-color: var(--lmap-white);
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lmap-primary);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--lmap-transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.lmap-zoom-in:hover,
.lmap-zoom-out:hover {
    background-color: var(--lmap-primary);
    color: var(--lmap-white);
}

.lmap-map-actions {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.lmap-street-view-btn,
.lmap-satellite-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--lmap-white);
    border: none;
    border-radius: 8px;
    padding: 10px 15px;
    color: var(--lmap-primary);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--lmap-transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: 'Outfit', sans-serif;
}

.lmap-street-view-btn:hover,
.lmap-satellite-btn:hover {
    background-color: var(--lmap-primary);
    color: var(--lmap-white);
}

.lmap-location-indicator {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--lmap-white);
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--lmap-primary);
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.lmap-pulse-dot {
    width: 12px;
    height: 12px;
    background-color: var(--lmap-secondary);
    border-radius: 50%;
    position: relative;
}

.lmap-pulse-dot::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--lmap-secondary);
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0.7;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Transportation Information */
.lmap-transportation-info {
    margin-top: 60px;
}

.lmap-section-subheader {
    text-align: center;
    margin-bottom: 40px;
}

.lmap-section-subheader h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--lmap-primary);
    margin: 0 0 15px 0;
}

.lmap-subheader-separator {
    width: 50px;
    height: 3px;
    background-color: var(--lmap-secondary);
    margin: 0 auto;
}

.lmap-transportation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.lmap-transport-card {
    background-color: var(--lmap-white);
    border-radius: var(--lmap-border-radius);
    padding: 25px;
    box-shadow: var(--lmap-box-shadow);
    transition: var(--lmap-transition);
}

.lmap-transport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.lmap-transport-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 3, 69, 0.05);
    color: var(--lmap-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.lmap-transport-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--lmap-primary);
    margin: 0 0 15px 0;
}

.lmap-transport-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lmap-transport-details li {
    font-size: 0.9375rem;
    color: var(--lmap-text-medium);
    margin-bottom: 8px;
    line-height: 1.5;
}

.lmap-transport-details li:last-child {
    margin-bottom: 0;
}

.lmap-transport-details strong {
    color: var(--lmap-primary);
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .lmap-section-title {
        font-size: 2.25rem;
    }
    
    .lmap-location-name {
        font-size: 1.25rem;
    }
    
    .lmap-section-subheader h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 992px) {
    .lmap-section {
        padding: 80px 0;
    }
    
    .lmap-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .lmap-transportation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lmap-map-container,
    .lmap-locations-panel {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .lmap-section {
        padding: 60px 0;
    }
    
    .lmap-section-title {
        font-size: 2rem;
    }
    
    .lmap-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    
    .lmap-tab-button {
        min-width: 130px;
        padding: 12px 15px;
    }
    
    .lmap-tab-icon {
        width: 32px;
        height: 32px;
    }
    
    .lmap-map-zoom-controls,
    .lmap-map-actions {
        right: 10px;
    }
    
    .lmap-location-indicator {
        left: 10px;
        font-size: 0.75rem;
        padding: 8px 12px;
    }
    
    .lmap-section-subheader h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .lmap-section-title {
        font-size: 1.75rem;
    }
    
    .lmap-transportation-grid {
        grid-template-columns: 1fr;
    }
    
    .lmap-card-actions {
        flex-direction: column;
    }
    
    .lmap-map-actions {
        bottom: 10px;
        left: 10px;
        right: auto;
    }
    
    .lmap-street-view-btn span,
    .lmap-satellite-btn span {
        display: none;
    }
    
    .lmap-street-view-btn,
    .lmap-satellite-btn {
        padding: 10px;
    }
}



































/* Sports Medicine Section - All classes prefixed with 'sm-' to avoid conflicts */
.sm-detail-section {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.sm-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* Main Content Area */
.sm-main-content {
    flex: 1;
    min-width: 0; /* Ensures text wrapping */
}

.sm-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000345;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.sm-page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #ffb500;
}

.sm-intro-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
    text-align: justify;
}

.sm-feature-image {
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.sm-feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Question and Answer Blocks */
.sm-content-block {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sm-content-block:last-of-type {
    border-bottom: none;
}

.sm-question-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000345;
    margin-bottom: 20px;
}

.sm-answer-content {
    color: #444;
    line-height: 1.7;
}

.sm-answer-content p {
    margin-bottom: 15px;
}

.sm-answer-content p:last-child {
    margin-bottom: 0;
}

/* Call to Action Section */
.sm-appointment-cta {
    background: linear-gradient(135deg, #000345 0%, #0b1e67 100%);
    color: #fff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 30px;
    box-shadow: 0 15px 30px rgba(0, 3, 69, 0.15);
}

.sm-appointment-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.sm-appointment-cta p {
    font-size: 1.125rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.sm-request-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: #ffb500;
    color: #000345;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(255, 181, 0, 0.3);
}

/* Sidebar Styles */
.sm-sidebar {
    width: 350px;
    flex-shrink: 0;
}

.sm-sidebar-box {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.sm-sidebar-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000345;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.sm-sidebar-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #ffb500;
}

/* Appointment Box */
.sm-appt-box {
    background: linear-gradient(135deg, #ffb500 0%, #ff9d00 100%);
    color: #000345;
}

.sm-appt-box .sm-sidebar-heading {
    color: #000345;
}

.sm-appt-box .sm-sidebar-heading::after {
    background-color: rgba(0, 3, 69, 0.3);
}

.sm-appt-box p {
    margin-bottom: 20px;
}

.sm-book-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #000345;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
}

/* Services List */
.sm-services-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sm-service-link {
    display: flex;
    padding: 12px 15px;
    background-color: #f8f9fd;
    border-radius: 8px;
    color: #333;
    font-weight: 500;
    text-decoration: none;
}

/* Contact Info */
.sm-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sm-contact-item {
    display: flex;
    line-height: 1.5;
    color: #444;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .sm-content-wrapper {
        gap: 30px;
    }
    
    .sm-sidebar {
        width: 320px;
    }
    
    .sm-page-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 992px) {
    .sm-detail-section {
        padding: 50px 0;
    }
    
    .sm-content-wrapper {
        flex-direction: column;
    }
    
    .sm-main-content {
        max-width: 100%;
    }
    
    .sm-sidebar {
        width: 100%;
        display: none;
    }
    
    .sm-sidebar-box {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .sm-detail-section {
        padding: 40px 0;
    }
    
    .sm-page-title {
        font-size: 2rem;
    }
    
    .sm-intro-text {
        font-size: 1rem;
    }
    
    .sm-question-heading {
        font-size: 1.35rem;
    }
    
    .sm-appointment-cta {
        padding: 30px;
    }
    
    .sm-appointment-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .sm-detail-section {
        padding: 30px 0;
    }
    
    .sm-page-title {
        font-size: 1.75rem;
    }
    
    .sm-question-heading {
        font-size: 1.25rem;
    }
    
    .sm-appointment-cta h3 {
        font-size: 1.35rem;
    }
    
    .sm-service-link {
        padding: 10px;
    }
}











.mim{
    text-decoration: none;
    color: #f3f0ff;
}
























































/* General Surgery Procedures (GSP) Section Styles */
/* All styles are scoped with gsp- prefix to avoid conflicts */

.gsp-procedures-section {
    position: relative;
    padding: 120px 0;
    background-color: #ffffff;
    overflow: hidden;
}

/* Background Elements */
.gsp-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.gsp-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000345' fill-opacity='0.02' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
}

.gsp-bg-shape {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 600px;
    height: 600px;
    border-radius: 34% 66% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(135deg, rgba(0, 3, 69, 0.03) 0%, rgba(0, 3, 69, 0) 100%);
    z-index: 1;
    animation: gsp-rotate-shape 40s linear infinite;
}

@keyframes gsp-rotate-shape {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.gsp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Section Header */
.gsp-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.gsp-header-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, #ffb500, rgba(255, 181, 0, 0.2));
    margin: 0 auto 20px;
}

.gsp-section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #000345;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.gsp-section-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #555555;
    max-width: 700px;
    margin: 0 auto;
}

/* Procedures Grid */
.gsp-procedures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.gsp-procedure-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    opacity: 1;
    transform: translateY(0);
}

.gsp-procedure-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Initially hidden cards */
.gsp-initially-hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.gsp-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.gsp-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gsp-procedure-card:hover .gsp-card-image img {
    transform: scale(1.05);
}

.gsp-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255, 181, 0, 0.9);
    color: #000345;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gsp-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 220px);
}

.gsp-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000345;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.gsp-card-description {
    font-size: 0.9375rem;
    color: #555555;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.gsp-card-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.gsp-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gsp-stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffb500;
    line-height: 1;
}

.gsp-stat-label {
    font-size: 0.75rem;
    color: #777777;
    margin-top: 5px;
}

.gsp-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #000345;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.gsp-card-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.gsp-card-link:hover {
    color: #ffb500;
}

.gsp-card-link:hover svg {
    transform: translateX(5px);
}

/* Load More Button */
.gsp-load-more-container {
    text-align: center;
    margin-bottom: 60px;
}

.gsp-load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    border: 2px solid #000345;
    color: #000345;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gsp-load-more-btn:hover {
    background-color: #000345;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 3, 69, 0.1);
}

.gsp-load-more-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.gsp-load-more-btn:hover svg {
    transform: translateY(3px);
}

/* Categories Section */
.gsp-categories-section {
    margin-bottom: 60px;
}

.gsp-categories-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: #000345;
    margin-bottom: 30px;
}

.gsp-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.gsp-category-box {
    background-color: #f8f9fd;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.gsp-category-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
}

.gsp-category-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 3, 69, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ffb500;
    transition: all 0.3s ease;
}

.gsp-category-box:hover .gsp-category-icon {
    background-color: #000345;
    color: #ffffff;
    transform: rotateY(180deg);
}

.gsp-category-icon svg {
    width: 28px;
    height: 28px;
}

.gsp-category-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #000345;
    margin: 0 0 10px 0;
}

.gsp-category-desc {
    font-size: 0.875rem;
    color: #555555;
    line-height: 1.6;
    margin: 0;
}

/* Consultation CTA */
.gsp-consultation-cta {
    background: linear-gradient(135deg, #000345 0%, #001c67 100%);
    border-radius: 16px;
    padding: 40px;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 3, 69, 0.15);
}

.gsp-cta-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.gsp-cta-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffb500;
    flex-shrink: 0;
}

.gsp-cta-icon svg {
    width: 28px;
    height: 28px;
}

.gsp-cta-text {
    flex: 1;
}

.gsp-cta-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #ffffff;
}

.gsp-cta-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.gsp-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ffb500;
    color: #000345;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(255, 181, 0, 0.3);
}

.gsp-cta-button:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.gsp-cta-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.gsp-cta-button:hover svg {
    transform: translateX(5px);
}

/* Animation for newly shown cards */
.gsp-procedure-card.gsp-visible {
    display: block;
    animation: gsp-card-fade-in 0.5s ease forwards;
}

@keyframes gsp-card-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .gsp-section-title {
        font-size: 2.5rem;
    }
    
    .gsp-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .gsp-procedures-section {
        padding: 90px 0;
    }
    
    .gsp-procedures-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .gsp-cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .gsp-cta-text {
        margin-bottom: 20px;
    }
    
    .gsp-cta-text p {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .gsp-procedures-section {
        padding: 70px 0;
    }
    
    .gsp-section-title {
        font-size: 2rem;
    }
    
    .gsp-section-subtitle {
        font-size: 1rem;
    }
    
    .gsp-procedures-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .gsp-card-image {
        height: 200px;
    }
    
    .gsp-consultation-cta {
        padding: 30px;
    }
    
    .gsp-cta-text h3 {
        font-size: 1.25rem;
    }
    
    .gsp-cta-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .gsp-procedures-section {
        padding: 60px 0;
    }
    
    .gsp-section-title {
        font-size: 1.75rem;
    }
    
    .gsp-header-line {
        height: 40px;
    }
    
    .gsp-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .gsp-card-content {
        padding: 20px;
    }
    
    .gsp-load-more-btn {
        width: 100%;
    }
}



















































/* Section Container */
.flw-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--flw-white);
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
}

/* Background Elements */
.flw-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.flw-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000345' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 1;
}

.flw-bg-shape {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    background: radial-gradient(circle, rgba(255, 181, 0, 0.05) 0%, rgba(255, 181, 0, 0) 70%);
    z-index: 1;
    animation: flw-rotate-shape 30s linear infinite;
}

.flw-accent-circle {
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 3, 69, 0.03) 0%, rgba(0, 3, 69, 0) 70%);
    z-index: 1;
}

@keyframes flw-rotate-shape {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.flw-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Section Header */
.flw-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.flw-header-accent {
    width: 64px;
    height: 64px;
    background-color: rgba(255, 181, 0, 0.1);
    color: var(--flw-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.flw-section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--flw-primary);
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.flw-highlight {
    color: var(--flw-secondary);
    position: relative;
    display: inline-block;
}

.flw-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(255, 181, 0, 0.2);
    z-index: -1;
}

.flw-title-separator {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--flw-secondary), rgba(255, 181, 0, 0.3));
    margin: 0 auto 20px;
}

.flw-section-desc {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--flw-text-medium);
    max-width: 700px;
    margin: 0 auto;
}

/* Fellowships Grid */
.flw-fellowships-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.flw-fellowship-card {
    background-color: var(--flw-white);
    border-radius: var(--flw-border-radius);
    overflow: hidden;
    box-shadow: var(--flw-box-shadow);
    transition: var(--flw-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.flw-fellowship-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Card Image */
.flw-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.flw-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.flw-fellowship-card:hover .flw-card-image img {
    transform: scale(1.05);
}

.flw-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 3, 69, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.flw-fellowship-card:hover .flw-image-overlay {
    opacity: 1;
}

/* Card Content */
.flw-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.flw-card-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--flw-primary);
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.flw-card-desc {
    font-size: 1rem;
    color: var(--flw-text-medium);
    line-height: 1.6;
    margin: 0 0 25px 0;
    flex: 1;
}

/* Card Details */
.flw-card-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.flw-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--flw-text-medium);
}

.flw-detail-item i {
    color: var(--flw-secondary);
    width: 16px;
    text-align: center;
}

.flw-detail-item span {
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .flw-section-title {
        font-size: 2.5rem;
    }
    
    .flw-fellowships-grid {
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .flw-section {
        padding: 90px 0;
    }
    
    .flw-fellowships-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .flw-section-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .flw-section {
        padding: 70px 0;
    }
    
    .flw-fellowships-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .flw-section-title {
        font-size: 2rem;
    }
    
    .flw-section-desc {
        font-size: 1rem;
    }
    
    .flw-card-image {
        height: 220px;
    }
    
    .flw-card-content {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .flw-section {
        padding: 60px 0;
    }
    
    .flw-section-title {
        font-size: 1.75rem;
    }
    
    .flw-header-accent {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .flw-card-title {
        font-size: 1.25rem;
    }
    
    .flw-card-desc {
        font-size: 0.9375rem;
    }
    
    .flw-card-image {
        height: 200px;
    }
}