/* Enhanced Global Styles */
:root {
    --primary-color: #0066cc;
    --secondary-color: #2ecc71;
    --dark-color: #333;
    --light-color: #f4f4f4;
    --transition: all 0.3s ease;
    --section-spacing: 100px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --hover-transform: translateY(-10px);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

section {
    padding: var(--section-spacing) 0;
    position: relative;
    overflow: hidden;
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.display-4 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Override gradient text for white text */
.text-white.display-4 {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    color: white;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
    color: #666;
}

/* Enhanced Navigation */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: var(--box-shadow);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
    transition: var(--transition);
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1.2rem !important;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

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

/* Enhanced Hero Section Styles */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, #f8f9fe 0%, #f1f4fd 100%);
    position: relative;
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
    animation: shapeFloat 8s infinite alternate;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 15%;
    animation-delay: 4s;
}

.animated-circle {
    animation: rotateCircle 20s linear infinite;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.2rem;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 50px;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 102, 204, 0.2);
}

.pulse-icon {
    animation: pulseIcon 2s infinite;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.3rem;
}

.hero-buttons {
    margin-top: 2.5rem;
}

.pulse-button {
    position: relative;
    overflow: hidden;
}

.pulse-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: pulseEffect 2s infinite;
}

.hero-image-wrapper {
    position: relative;
    padding: 2rem;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(46, 204, 113, 0.1));
    border-radius: 30px;
    transform: rotate(-3deg);
    animation: floatBg 6s ease-in-out infinite alternate;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    transform: translateY(0);
    animation: floatImage 6s ease-in-out infinite alternate;
}

.experience-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.experience-badge .number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.experience-badge .text {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.3rem;
}

.fade-in-left {
    animation: fadeInLeft 1s ease-out forwards;
}

.fade-in-right {
    animation: fadeInRight 1s ease-out forwards;
}

.animate-text {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-text-2 {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

@keyframes shapeFloat {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(20px, 20px) rotate(45deg); }
}

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

@keyframes pulseIcon {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes pulseEffect {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(4); opacity: 0; }
}

@keyframes floatBg {
    0% { transform: rotate(-3deg) translateY(0); }
    100% { transform: rotate(-3deg) translateY(-20px); }
}

@keyframes floatImage {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .stat-item {
        flex: 0 0 calc(50% - 1rem);
    }

    .hero-image-wrapper {
        margin-top: 3rem;
    }

    .experience-badge {
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-badge {
        font-size: 0.8rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-lg {
        width: 100%;
        text-align: center;
    }
}

/* Enhanced Feature Cards */
.feature-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 102, 204, 0.1), rgba(46, 204, 113, 0.1));
    z-index: -1;
    transition: var(--transition);
    opacity: 0;
}

.feature-card:hover {
    transform: var(--hover-transform);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(0, 102, 204, 0.1), rgba(46, 204, 113, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
}

/* Enhanced Statistics Section */
.stat-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: var(--hover-transform);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

/* Enhanced Buttons */
.btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.3);
}

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

.btn-outline-primary:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.3);
}

/* Enhanced Footer Styles */
.footer {
    background: linear-gradient(135deg, #f8f9fe 0%, #f1f4fd 100%);
    position: relative;
    overflow: hidden;
}

.footer-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.footer-shape-1,
.footer-shape-2,
.footer-shape-3 {
    position: absolute;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.05;
}

.footer-shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
}

.footer-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
}

.footer-shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.footer-top {
    position: relative;
    z-index: 1;
}

.footer-widget {
    margin-bottom: 2rem;
}

.footer-logo {
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: translateY(-5px);
}

.footer-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.footer-contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-text h6 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #333;
}

.contact-text p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

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

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-links a i {
    font-size: 0.8rem;
    margin-right: 0.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.newsletter-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.footer-newsletter .input-group {
    background: white;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.footer-newsletter .form-control {
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 50px;
    background: transparent;
}

.footer-newsletter .form-control:focus {
    box-shadow: none;
}

.footer-newsletter .btn {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
}

.footer-newsletter .btn i {
    transition: transform 0.3s ease;
}

.footer-newsletter .btn:hover i {
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-5px);
}

.footer-bottom {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--secondary-color);
}

@media (max-width: 991px) {
    .footer-widget {
        margin-bottom: 3rem;
    }

    .footer-newsletter .input-group {
        max-width: 100%;
    }
}

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

    .footer-bottom .text-md-end {
        margin-top: 1rem;
    }

    .social-links {
        justify-content: center;
    }
}

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Card Hover Effects */
.hover-float {
    transition: var(--transition);
}

.hover-float:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Section Title Styles */
.section-title {
    position: relative;
    margin-bottom: 3rem;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

/* Image Hover Effects */
.img-hover {
    transition: var(--transition);
    border-radius: 20px;
    overflow: hidden;
}

.img-hover:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Enhanced Icon Styles */
.icon-wrapper {
    display: inline-block;
    padding: 10px;
    position: relative;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(46, 204, 113, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background-size: 200% 200%;
}

.icon-circle::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.feature-card:hover .icon-circle {
    transform: scale(1.1);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.2);
}

.feature-card:hover .icon-circle::before {
    opacity: 0.2;
}

.icon-pulse {
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.preloader.fade-out {
    opacity: 0;
}

.medical-loader {
    width: 80px;
    height: 80px;
    position: relative;
    background: url('../images/medical-icon.png') no-repeat center center;
    background-size: contain;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Enhanced Page Header Styles */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fe 0%, #e8f0fe 100%);
    position: relative;
    overflow: hidden;
}

.bg-gradient {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(46, 204, 113, 0.05) 100%);
}

.header-shapes .shape-1,
.header-shapes .shape-2,
.header-shapes .shape-3 {
    position: absolute;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.1;
}

.header-shapes .shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    animation: floatAnimation 8s infinite alternate;
}

.header-shapes .shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
    animation: floatAnimation 6s infinite alternate-reverse;
}

.header-shapes .shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 15%;
    animation: floatAnimation 7s infinite alternate;
}

.circle-pattern {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px dashed rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    animation: rotateAnimation 20s linear infinite;
}

.circle-pattern.top-right {
    top: -100px;
    right: 10%;
}

.circle-pattern.bottom-left {
    bottom: -100px;
    left: 10%;
}

.min-vh-75 {
    min-height: 75vh;
}

.animated-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 50px;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 102, 204, 0.2);
    animation: badgePulse 2s infinite;
}

.text-gradient {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.highlight-text {
    position: relative;
    display: inline-block;
    color: var(--primary-color);
    -webkit-text-fill-color: initial;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: rgba(46, 204, 113, 0.2);
    z-index: -1;
    transform: skewX(-15deg);
}

.custom-breadcrumb .breadcrumb {
    padding: 0;
    margin: 0;
    background: transparent;
}

.custom-breadcrumb .breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.custom-breadcrumb .breadcrumb-item a:hover {
    color: var(--secondary-color);
}

.quick-stat {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.quick-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

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

.stat-content .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1;
}

.stat-content .stat-label {
    font-size: 0.9rem;
    color: #666;
    margin: 0.5rem 0 0;
}

.header-image-wrapper {
    position: relative;
    padding: 2rem;
}

.image-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(46, 204, 113, 0.1));
    border-radius: 30px;
    transform: rotate(-3deg);
    animation: floatBg 6s ease-in-out infinite alternate;
}

.header-image {
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    animation: floatImage 6s ease-in-out infinite alternate;
}

.floating-card {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
    max-width: 250px;
}

.floating-card .card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.floating-card .card-icon i {
    color: white;
    font-size: 1.2rem;
}

.floating-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.floating-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

@keyframes floatAnimation {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

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

@keyframes badgePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes floatBg {
    0% { transform: rotate(-3deg) translateY(0); }
    100% { transform: rotate(-3deg) translateY(-20px); }
}

@keyframes floatImage {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

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

/* Responsive styles for page header */
@media (max-width: 991px) {
    .page-header {
        padding: 100px 0 60px;
    }

    .min-vh-75 {
        min-height: auto;
    }

    .header-image-wrapper {
        margin-top: 3rem;
    }

    .floating-card {
        bottom: 20px;
        right: 20px;
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 80px 0 40px;
    }

    .animated-badge {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .quick-stat {
        padding: 1rem;
    }

    .stat-content .stat-number {
        font-size: 1.5rem;
    }

    .floating-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
    }
}

/* About Page Specific Styles */
.mission-vision-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    color: white;
}

.value-card {
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.achievement-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.12);
}

.achievement-card:hover .achievement-badge {
    color: #fff;
    transition: color 0.3s ease;
}

.achievement-badge {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.achievement-card h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Enhanced Mission & Vision Section Styles */
.mission-vision-section {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    position: relative;
    overflow: hidden;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern-bg.png') repeat;
    opacity: 0.1;
    animation: floatingBg 20s linear infinite;
}

.mission-vision-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
}

.mission-vision-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease;
    border-radius: 15px;
}

.mission-vision-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    color: white;
}

.mission-vision-card:hover::after {
    opacity: 1;
}

.mission-vision-card:hover .feature-icon {
    background: white;
}

.mission-vision-card:hover .feature-icon i {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: rotateY(360deg);
}

.mission-vision-card .feature-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.mission-vision-card .feature-icon i {
    font-size: 2.5rem;
    transition: all 0.4s ease;
}

.mission-vision-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.mission-vision-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.4s ease;
}

.mission-vision-card:hover h3::after {
    background: white;
    width: 80px;
}

.mission-vision-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
    transition: all 0.4s ease;
}

@keyframes floatingBg {
    from { transform: translate(0, 0); }
    to { transform: translate(100px, 100px); }
}

/* Enhanced Our Story Section Styles */
.story-section {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    position: relative;
    overflow: hidden;
}

.animated-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--secondary-rgb), 0.1));
    border-radius: 20px;
    font-weight: 500;
    color: var(--primary-color);
}

.pulse-icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.story-title {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.story-text {
    color: #444;
    margin-bottom: 2rem;
}

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

.story-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.story-feature-item:hover {
    transform: translateY(-5px);
}

.story-feature-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    color: white;
}

.story-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-image {
    border-radius: 20px;
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.story-image-wrapper:hover .story-image {
    transform: scale(1.05);
}

.story-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.2), rgba(var(--secondary-rgb), 0.2));
    z-index: 1;
}

.floating-card {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

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

.floating-card .card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.floating-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.floating-card p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.9rem;
}

@media (max-width: 991.98px) {
    .story-features {
        grid-template-columns: 1fr;
    }
    
    .story-content {
        margin-bottom: 3rem;
    }

    .floating-card {
        bottom: 20px;
        right: 20px;
        padding: 1rem;
    }
}

/* Enhanced Core Values Section Styles */
.core-values-section {
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    position: relative;
    overflow: hidden;
}

.core-values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern-bg.png') repeat;
    opacity: 0.05;
    animation: floatBackground 20s linear infinite;
}

.value-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.value-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    color: white;
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon-wrapper {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.value-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.2;
    z-index: -1;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon-wrapper {
    transform: rotateY(360deg);
    background: transparent;
}

.value-card:hover .value-icon-wrapper::before {
    opacity: 0.3;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
}

.value-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: white;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.value-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.4s ease;
}

.value-card:hover .value-title::after {
    width: 60px;
    background: white;
}

.value-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    transition: all 0.4s ease;
}

.value-highlight-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.value-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--secondary-rgb), 0.1));
    border-radius: 50%;
}

@media (max-width: 991.98px) {
    .value-card {
        padding: 2rem 1.5rem;
    }

    .value-icon-wrapper {
        width: 70px;
        height: 70px;
    }

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

    .value-title {
        font-size: 1.3rem;
    }

    .value-description {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .value-highlight-card {
        margin-top: 2rem;
    }
}

@keyframes floatBackground {
    from { transform: translate(0, 0); }
    to { transform: translate(-20px, -20px); }
}

/* Enhanced Achievements Section Styles */
.achievements-section {
    background: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 100%);
    position: relative;
    overflow: hidden;
}

.achievements-section::before,
.achievements-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    z-index: 0;
}

.achievements-section::before {
    background: var(--primary-color);
    top: -200px;
    right: -200px;
}

.achievements-section::after {
    background: var(--secondary-color);
    bottom: -200px;
    left: -200px;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.achievement-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    color: white;
}

.achievement-card:hover::before {
    opacity: 1;
}

.achievement-card .counter {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    transition: all 0.4s ease;
}

.achievement-card:hover .counter {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: white;
}

.achievement-card .counter::after {
    content: '+';
    font-size: 2rem;
    position: absolute;
    top: 0;
    right: -1.5rem;
    background: inherit;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
}

.achievement-card:hover .counter::after {
    -webkit-text-fill-color: white;
}

.achievement-card p {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    position: relative;
    transition: all 0.4s ease;
}

.achievement-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: all 0.4s ease;
}

.achievement-card:hover::after {
    width: 80px;
    background: white;
}

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

/* Enhanced Stats Section Styles */
.stats-section {
    background: linear-gradient(135deg, #f8f9fe 0%, #f1f4fd 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.stats-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 102, 204, 0.05) 0%, transparent 200px),
        radial-gradient(circle at 80% 70%, rgba(46, 204, 113, 0.05) 0%, transparent 200px);
    z-index: 0;
}

.bg-primary-soft {
    background-color: rgba(0, 102, 204, 0.1);
    color: var(--primary-color);
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.achievement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(46, 204, 113, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.achievement-icon i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
}

.achievement-card:hover .achievement-icon {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.achievement-card:hover .achievement-icon i {
    -webkit-text-fill-color: white;
}

.achievement-content .counter {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.achievement-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: #555;
    margin: 0;
}

.achievement-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.achievement-card:hover .achievement-wave {
    transform: scaleX(1);
}

@media (max-width: 768px) {
    .achievement-content .counter {
        font-size: 2.5rem;
    }
    
    .achievement-label {
        font-size: 1rem;
    }
    
    .achievement-icon {
        width: 60px;
        height: 60px;
    }
    
    .achievement-icon i {
        font-size: 1.5rem;
    }
}

/* Add animation for counters */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counter.animate {
    animation: countUp 0.5s ease forwards;
}

/* Enhanced Testimonials Section Styles */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fe 0%, #f1f4fd 100%);
    position: relative;
    overflow: hidden;
}

.testimonial-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 102, 204, 0.03) 0%, transparent 100px),
        radial-gradient(circle at 80% 70%, rgba(46, 204, 113, 0.03) 0%, transparent 100px);
    opacity: 0.8;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

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

.testimonial-content {
    position: relative;
    margin-bottom: 2rem;
}

.testimonial-quote {
    position: absolute;
    top: -10px;
    right: 0;
    color: var(--primary-color);
    opacity: 0.1;
    font-size: 4rem;
    line-height: 1;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-quote {
    transform: rotate(15deg);
    opacity: 0.15;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.rating {
    display: flex;
    gap: 5px;
    margin-bottom: 1rem;
}

.rating i {
    color: #ffc107;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover .rating i {
    transform: scale(1.1);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-image {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.author-info {
    flex-grow: 1;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.author-designation {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-quote {
        font-size: 3rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .author-image {
        width: 50px;
        height: 50px;
    }

    .author-name {
        font-size: 1rem;
    }
}

/* Add animation for testimonial cards */
.testimonial-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.4s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Features Section Styles */
.features-section {
    background: linear-gradient(135deg, #f8f9fe 0%, #f1f4fd 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.features-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(70% 70% at 50% 50%, rgba(0, 102, 204, 0.05) 0%, transparent 100%),
        linear-gradient(45deg, rgba(46, 204, 113, 0.03) 0%, transparent 100%);
    z-index: 0;
}

.feature-card-modern {
    position: relative;
    margin-bottom: 30px;
}

.feature-card-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    z-index: 1;
}

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

.feature-icon-box {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.feature-icon-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: iconRing 2s linear infinite;
}

@keyframes iconRing {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

.feature-content {
    position: relative;
    z-index: 2;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
}

.feature-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.stats-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stats-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.3rem;
}

.feature-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
    border-radius: 20px;
}

.feature-card-wrapper:hover .feature-hover-effect {
    opacity: 0.03;
}

.feature-card-wrapper:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-card-wrapper:hover .feature-title {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary.btn-lg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.2));
    transform: translateX(-100%);
    transition: all 0.3s ease;
}

.btn-primary.btn-lg:hover::before {
    transform: translateX(0);
}

.btn-primary.btn-lg i {
    transition: all 0.3s ease;
}

.btn-primary.btn-lg:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .feature-card-wrapper {
        padding: 2rem;
    }

    .feature-icon-box {
        width: 60px;
        height: 60px;
    }

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

    .feature-title {
        font-size: 1.3rem;
    }

    .feature-text {
        font-size: 1rem;
    }

    .stats-number {
        font-size: 1.5rem;
    }
}

/* Enhanced CTA Section Styles */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-shapes .shape-1,
.cta-shapes .shape-2,
.cta-shapes .shape-3 {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-shapes .shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    animation: floatShape 8s infinite alternate;
}

.cta-shapes .shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
    animation: floatShape 6s infinite alternate-reverse;
}

.cta-shapes .shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 15%;
    animation: floatShape 7s infinite alternate;
}

.cta-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pulse-icon {
    animation: pulseHeart 1.5s infinite;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8);
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.cta-feature i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    background: white;
    color: var(--primary-color);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.1));
    transform: translateX(-100%);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
}

.cta-btn:hover::before {
    transform: translateX(0);
}

.cta-btn i {
    transition: all 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(5px);
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.cta-phone:hover {
    color: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

@keyframes pulseHeart {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(20px, 20px) rotate(45deg);
    }
}

@media (max-width: 991px) {
    .cta-section {
        padding: 80px 0;
    }

    .cta-wrapper {
        padding: 3rem;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .cta-features {
        gap: 1rem;
    }

    .cta-feature {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-wrapper {
        padding: 2rem;
    }

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

    .cta-badge {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
    }

    .cta-phone {
        display: block;
        margin: 1rem 0 0;
        text-align: center;
    }
}

/* Enhanced Achievements Section Styles */
.achievements-section {
    background: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 100%);
    position: relative;
    overflow: hidden;
}

.achievement-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 102, 204, 0.1);
    backdrop-filter: blur(4px);
    position: relative;
}

.achievement-badge .badge-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.achievement-badge .badge-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulseDot 2s infinite;
    transition: all 0.3s ease;
}

.achievement-badge:hover {
    transform: translateY(-2px);
    background: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
    color: #ffffff !important;
    border-color: var(--primary-color);
}

.achievement-badge:hover .badge-dot {
    background: #ffffff;
}

.achievement-badge:hover .badge-dot::after {
    background: #ffffff;
}

@keyframes pulseDot {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
}

@media (max-width: 768px) {
    .achievement-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .achievement-badge .badge-dot {
        width: 5px;
        height: 5px;
    }

    .achievement-badge .badge-dot::after {
        width: 10px;
        height: 10px;
    }
}

.achievement-highlight-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.achievement-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

.achievement-highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.15);
    border-color: rgba(0, 102, 204, 0.2);
}

.achievement-highlight-card:hover::before {
    opacity: 0.05;
}

.achievement-highlight-card .highlight-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(46, 204, 113, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    transition: all 0.4s ease;
}

.achievement-highlight-card:hover .highlight-icon {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.15), rgba(46, 204, 113, 0.15));
}

.achievement-highlight-card .highlight-icon i {
    font-size: 2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
}

.achievement-highlight-card:hover .highlight-icon i {
    transform: scale(1.1);
}

.achievement-highlight-card .gradient-text {
    position: relative;
    z-index: 1;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
}

.achievement-highlight-card:hover .gradient-text {
    transform: scale(1.02);
}

.achievement-highlight-card .lead {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    transition: all 0.4s ease;
}

.achievement-highlight-card:hover .lead {
    color: #333;
}

@media (max-width: 768px) {
    .achievement-highlight-card {
        padding: 2rem !important;
    }

    .achievement-highlight-card .highlight-icon {
        width: 60px;
        height: 60px;
    }

    .achievement-highlight-card .highlight-icon i {
        font-size: 1.5rem;
    }

    .achievement-highlight-card .gradient-text {
        font-size: 1.4rem;
    }

    .achievement-highlight-card .lead {
        font-size: 1rem;
    }
}

/* Services Page Header Specific Styles */
.page-header.bg-gradient {
    background: linear-gradient(135deg, #0066cc 0%, #2ecc71 100%);
}

.page-header .stat-icon i.fa-procedures {
    animation: pulseIcon 2s infinite;
}

.page-header .stat-icon i.fa-user-md {
    animation: rotateIcon 3s infinite;
}

@keyframes rotateIcon {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
    100% { transform: rotate(0deg); }
}

.page-header .floating-card .fa-plus-circle {
    animation: glowIcon 2s infinite;
}

@keyframes glowIcon {
    0% { filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.7)); }
    50% { filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.9)); }
    100% { filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.7)); }
}

.page-header .header-content .animated-badge {
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.page-header .quick-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.page-header .quick-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-header .image-bg-shape {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    animation: morphShape 10s infinite alternate;
}

@keyframes morphShape {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    100% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

.page-header .floating-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

/* Responsive adjustments for services header */
@media (max-width: 768px) {
    .page-header .stat-number {
        font-size: 2rem;
    }
    
    .page-header .floating-card {
        padding: 1rem;
    }
    
    .page-header .header-image-wrapper {
        margin-top: 2rem;
    }
}

/* Enhanced Services Section Styles */
.services-section {
    background: linear-gradient(135deg, #f8f9fe 0%, #f1f4fd 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 102, 204, 0.03) 0%, transparent 70%),
        radial-gradient(circle at 80% 70%, rgba(46, 204, 113, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px !important;
    padding: 2.5rem !important;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(10px);
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(46, 204, 113, 0.05));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
    border-color: rgba(0, 102, 204, 0.2) !important;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(46, 204, 113, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 22px;
    opacity: 0.2;
    z-index: -1;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.service-icon i {
    font-size: 2.5rem !important;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon i {
    -webkit-text-fill-color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: all 0.4s ease;
}

.service-card:hover h3::after {
    width: 80px;
}

.service-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card ul {
    margin-bottom: 0;
}

.service-card ul li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #555;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-card ul li i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    margin-right: 0.75rem;
    color: var(--primary-color);
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.service-card:hover ul li i {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.service-card:hover ul li {
    transform: translateX(5px);
    color: var(--primary-color);
}

/* Service Image Styles */
.service-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    margin-bottom: 0;
    transition: all 0.4s ease;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
}

.service-card:hover .service-image-wrapper {
    transform: scale(1.02);
}

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

/* Animation for slide-up */
.slide-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

[data-delay="200"] {
    transition-delay: 0.2s;
}

[data-delay="400"] {
    transition-delay: 0.4s;
}

@media (max-width: 991px) {
    .service-card {
        padding: 2rem !important;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon i {
        font-size: 2rem !important;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .services-section {
        padding: 60px 0;
    }

    .service-card {
        padding: 1.5rem !important;
        margin-bottom: 1rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 1.75rem !important;
    }

    .service-image-wrapper {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .service-image-wrapper {
        height: 200px;
    }
}

/* Services Section Header Styles */
.section-header {
    position: relative;
    margin-bottom: 3rem;
}

.badge-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 50px;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 102, 204, 0.2);
    transition: all 0.3s ease;
    animation: badgePulse 2s infinite;
}

.section-badge i {
    font-size: 1.1rem;
    margin-right: 0.5rem;
    animation: rotateBadgeIcon 3s linear infinite;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.title-decoration .line {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, rgba(0, 102, 204, 0.2), rgba(0, 102, 204, 0.5));
    border-radius: 2px;
}

.title-decoration .dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    position: relative;
    animation: pulseDot 2s infinite;
}

.title-decoration .dot::before,
.title-decoration .dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.5;
    animation: ripple 2s infinite;
}

.title-decoration .dot::after {
    animation-delay: 0.3s;
}

@keyframes badgePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes rotateBadgeIcon {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
    100% { transform: rotate(0deg); }
}

@keyframes pulseDot {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* Responsive styles for section header */
@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }

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

    .section-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.8rem;
    }

    .title-decoration .line {
        width: 40px;
    }

    .section-badge {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* Why Choose Us Section Styles */
.why-choose-section {
    background: linear-gradient(135deg, #f8f9fe 0%, #f1f4fd 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.section-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.section-shapes .shape-1,
.section-shapes .shape-2,
.section-shapes .shape-3 {
    position: absolute;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.05;
}

.section-shapes .shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    animation: floatAnimation 8s infinite alternate;
}

.section-shapes .shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
    animation: floatAnimation 6s infinite alternate-reverse;
}

.section-shapes .shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 15%;
    animation: floatAnimation 7s infinite alternate;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(46, 204, 113, 0.05));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 102, 204, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.feature-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.feature-icon i {
    font-size: 2.5rem;
    color: white;
    transition: all 0.4s ease;
}

.icon-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: iconRing 2s linear infinite;
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.feature-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-stats {
    background: rgba(0, 102, 204, 0.05);
    border-radius: 15px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.feature-card:hover .feature-stats {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(46, 204, 113, 0.1));
}

@keyframes iconRing {
    0% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(180deg);
    }
    100% {
        transform: scale(1) rotate(360deg);
    }
}

@media (max-width: 991px) {
    .why-choose-section {
        padding: 80px 0;
    }

    .feature-card {
        padding: 2rem;
    }

    .feature-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .feature-icon i {
        font-size: 2rem;
    }

    .feature-title {
        font-size: 1.3rem;
    }

    .stat-value {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .feature-icon i {
        font-size: 1.75rem;
    }

    .feature-title {
        font-size: 1.2rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }
}

/* Department Filter Section Styles */
.department-filter-section {
    background-color: #f8f9fa;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--bs-primary);
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-badge i {
    margin-right: 8px;
}

.section-title {
    color: #2d4b5a;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 1rem 0;
}

.title-decoration .line {
    width: 40px;
    height: 2px;
    background-color: var(--bs-primary);
}

.title-decoration .dot {
    width: 8px;
    height: 8px;
    background-color: var(--bs-primary);
    border-radius: 50%;
}

.department-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.filter-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 25px;
    background-color: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 150px;
    cursor: pointer;
}

.filter-btn i {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--bs-primary);
}

.filter-btn span {
    font-weight: 500;
    color: #2d4b5a;
}

.filter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: var(--bs-primary);
}

.filter-btn.active {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.filter-btn.active i,
.filter-btn.active span {
    color: white;
}

@media (max-width: 768px) {
    .filter-btn {
        min-width: 130px;
        padding: 12px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Enhanced Appointment Form Styles */
.appointment-section {
    background: linear-gradient(135deg, #f8f9fe 0%, #f1f4fd 100%);
    position: relative;
    padding: 80px 0;
}

.appointment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 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='%230066cc' fill-opacity='0.05'%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.5;
}

.appointment-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 102, 204, 0.1);
    backdrop-filter: blur(10px);
}

.appointment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(46, 204, 113, 0.05));
    opacity: 0;
    transition: all 0.3s ease;
}

.appointment-card:hover::before {
    opacity: 1;
}

.appointment-card-body {
    padding: 4rem;
}

.appointment-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 50px;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 1rem;
    border: 1px solid rgba(0, 102, 204, 0.2);
    transition: all 0.3s ease;
}

.appointment-badge:hover {
    transform: translateY(-2px);
    background: rgba(0, 102, 204, 0.15);
}

.appointment-badge i {
    margin-right: 8px;
    animation: pulseIcon 2s infinite;
}

.appointment-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.appointment-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.form-section {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 102, 204, 0.1);
    margin-bottom: 2rem;
}

.form-section:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.form-section-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 102, 204, 0.1);
}

.form-section-title i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 10px;
    background: rgba(0, 102, 204, 0.1);
    padding: 10px;
    border-radius: 12px;
}

.form-floating {
    position: relative;
    margin-bottom: 1rem;
}

.form-floating > .form-control,
.form-floating > .form-select {
    height: 60px;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(0, 102, 204, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
}

.form-floating > textarea.form-control {
    height: auto;
    min-height: 120px;
    resize: vertical;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.1);
    background-color: white;
}

.form-floating > .form-select {
    padding-top: 1.625rem;
    padding-bottom: .625rem;
    background-position: right 1.25rem center;
}

.form-floating > label {
    padding: 1rem 1.25rem;
    color: #666;
    transition: all 0.2s ease;
}

.btn-appointment {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-appointment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-appointment:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3);
}

.btn-appointment:hover::before {
    opacity: 1;
}

.btn-appointment i {
    margin-right: 8px;
    transition: all 0.3s ease;
}

.btn-appointment:hover i {
    transform: translateX(5px);
}

.invalid-feedback {
    font-size: 0.875rem;
    color: #dc3545;
    margin-top: 0.5rem;
    margin-left: 0.5rem;
}

/* Responsive styles */
@media (max-width: 991px) {
    .appointment-card-body {
        padding: 3rem;
    }

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

    .form-section {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .appointment-card-body {
        padding: 2rem;
    }

    .appointment-title {
        font-size: 1.8rem;
    }

    .appointment-badge {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    .form-section {
        padding: 1.5rem;
    }

    .form-section-title {
        font-size: 1.2rem;
    }
}

@keyframes pulseIcon {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Enhanced Information Section Styles */
.info-section {
    background: linear-gradient(135deg, #f8f9fe 0%, #f1f4fd 100%);
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 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='%230066cc' fill-opacity='0.05'%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.5;
}

.info-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 102, 204, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
    height: 100%;
    text-align: center;
}

.info-card .btn {
    padding: 0.35rem 2rem;
    font-size: 0.875rem;
    border-radius: 0.4rem;
    transition: all 0.3s ease;
    width: 80%;
    margin: 0 auto;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(46, 204, 113, 0.05));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

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

.info-card:hover::before {
    opacity: 1;
}

.info-card i {
    font-size: 2.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(46, 204, 113, 0.1));
    border-radius: 50%;
    position: relative;
    transition: all 0.4s ease;
}

.info-card:hover i {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white !important;
}

.info-card i::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.2;
    z-index: -1;
    transition: all 0.4s ease;
}

.info-card:hover i::after {
    opacity: 0.4;
    transform: scale(1.1);
}

.info-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-bottom: 1rem;
}

.info-card h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: all 0.4s ease;
}

.info-card:hover h4::after {
    width: 100px;
}

.info-card p {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin: 0;
    position: relative;
    z-index: 1;
}

.info-card p.mb-0 {
    font-weight: 500;
    color: #444;
}

/* Responsive styles */
@media (max-width: 991px) {
    .info-section {
        padding: 60px 0;
    }

    .info-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }

    .info-card i {
        font-size: 2rem;
        width: 70px;
        height: 70px;
    }

    .info-card h4 {
        font-size: 1.3rem;
    }

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

@media (max-width: 767px) {
    .info-section {
        padding: 40px 0;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-card i {
        font-size: 1.8rem;
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .info-card h4 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
}

.contact-form-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9fe 0%, #f1f4fd 100%);
}

.form-card {
    border: 1px solid rgba(0, 102, 204, 0.1) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

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

.form-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 102, 204, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.form-icon-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(0, 102, 204, 0.2);
    animation: pulseRing 2s infinite;
}

.form-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-icon i {
    font-size: 24px;
    color: white;
}

.form-floating {
    position: relative;
    margin-bottom: 0;
}

.form-floating .form-control {
    height: calc(3.5rem + 2px);
    padding: 1rem 0.75rem;
    border: 1px solid rgba(0, 102, 204, 0.2);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.form-floating textarea.form-control {
    height: 150px;
    resize: none;
}

.form-floating .form-control:focus {
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
    border-color: var(--primary);
}

.form-floating label {
    padding: 1rem 0.75rem;
    color: #6c757d;
}

.form-floating label i {
    color: var(--primary);
}

.btn-primary.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 0.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary.btn-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.2);
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.4;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.8;
    }
}

.working-hours {
    background: linear-gradient(135deg, #f8f9fe 0%, #f1f4fd 100%);
    position: relative;
    overflow: hidden;
}

.hours-icon-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(44, 123, 229, 0.1) 0%, rgba(77, 138, 240, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    box-shadow: inset 0 0 20px rgba(44, 123, 229, 0.1);
}

.hours-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #2c7be5 0%, #4d8af0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
    box-shadow: 0 10px 20px rgba(44, 123, 229, 0.2);
}

.hours-icon i {
    font-size: 28px;
    color: #ffffff;
    background: linear-gradient(45deg, #ffffff, #e6f0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.schedule-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.time-slot {
    background: #fff;
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 102, 204, 0.1);
    height: 100%;
}

.time-slot:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.day-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 102, 204, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.day-badge i {
    color: var(--primary);
    margin-right: 0.5rem;
    font-size: 1rem;
}

.day-badge span {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.time-info h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.time-info .time {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.time-slot.closed {
    background: #fff5f5;
    border-color: rgba(220, 53, 69, 0.1);
}

.time-slot.closed .day-badge {
    background: rgba(220, 53, 69, 0.1);
}

.time-slot.closed .day-badge i,
.time-slot.closed .day-badge span {
    color: #dc3545;
}

.time-slot.emergency {
    background: #f8f9fe;
    border-color: rgba(40, 167, 69, 0.1);
}

.time-slot.emergency .day-badge {
    background: rgba(40, 167, 69, 0.1);
}

.time-slot.emergency .day-badge i,
.time-slot.emergency .day-badge span {
    color: #28a745;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .time-slot {
        margin-bottom: 1rem;
    }
    
    .schedule-card {
        padding: 1rem;
    }
}

.section-bg-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    pointer-events: none;
}

.card-img-top {
    width: 100%;          /* Fill the card width */
    height: 400px;        /* Fixed height for all */
    object-fit: cover;    /* Fill and crop if needed */
    border-radius: 15px;  /* Optional */
}

