@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}


/* Container */
.container {
    max-width: 1210px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
    overflow: hidden;
    padding: 0px 0 0px;
}

.hero-container {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.hero-title {
    font-size: 43px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #333;
}

.hero-title .title-line {
    display: block;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 107, 107, 0.4);
    color: white;
}

.btn-hero-secondary {
    background: white;
    color: #1F8446;
    border: 2px solid #1F8446;
}

.btn-hero-secondary:hover {
    background: #1F8446;
    color: white;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stats .stat-item {
    text-align: left;
}

.hero-stats .stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #28ac5a;
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stats .stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.hero-image {
    position: relative;
    height: 900px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper img{
    aspect-ratio: 5 / 8; 
    width: 100%;
    /*overflow: hidden;*/
}
.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(40, 172, 90, 0.1) 0%, rgba(40, 172, 90, 0.05) 100%);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 0;
    right: 0;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 2%;
    right: 0%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
}

.services-button {
    display: flex;
    justify-content: center;
    margin: 40px 0 0;
}

.services-button a{
    font-size: 17px;
}

/* Services Section */
.services-section {
    padding: 50px 0 100px;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: #e3f7ea;
    color: #1D7C41;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #333;
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: #666;
    max-width: 860px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(40, 172, 90, 0.2);
}

.service-card:hover .service-hover-effect {
    opacity: 1;
    transform: scale(1);
}

.service-hover-effect {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(40, 172, 90, 0.1) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0);
    transition: all 0.6s ease;
    pointer-events: none;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(40, 172, 90, 0.1) 0%, rgba(40, 172, 90, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 32px;
    color: #28ac5a;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    transform: scale(1.1) rotate(5deg);
}

.service-card:hover .service-icon i {
    color: white;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.service-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #28ac5a;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 12px;
    color: #1e8e47;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 0;
    background: white;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(40, 172, 90, 0.1) 0%, rgba(40, 172, 90, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 24px;
    color: #28ac5a;
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    transform: scale(1.1);
}

.feature-item:hover .feature-icon i {
    color: white;
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.why-choose-image {
    position: relative;
    height: 500px;
}

.image-card {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(40, 172, 90, 0.1) 0%, rgba(40, 172, 90, 0.05) 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    /* background: radial-gradient(circle, rgba(40, 172, 90, 0.2) 0%, transparent 70%); */
    border-radius: 50%;
    /* animation: pulse 3s ease-in-out infinite; */
}
.card-glow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

/* Statistics Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.stat-card .stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.stat-card .stat-icon i {
    font-size: 32px;
    color: white;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
}

.stat-card .stat-number {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-card .stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto 40px;
    min-height: 300px;
}

.testimonial-card {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: all 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
}

.testimonial-content {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(40, 172, 90, 0.1) 0%, rgba(40, 172, 90, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.quote-icon i {
    font-size: 24px;
    color: #28ac5a;
}

.testimonial-text {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 24px;
    color: white;
}

.author-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.author-info span {
    font-size: 14px;
    color: #666;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #28ac5a;
    transform: scale(1.3);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    /* max-width: 800px; */
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-cta-primary {
    background: white;
    color: #28ac5a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.btn-cta-secondary:hover {
    background: white;
    color: #28ac5a;
    transform: translateY(-3px);
}

/* Offers Section */
.offers-section {
    padding: 100px 0;
    background: white;
    overflow: hidden;
    position: relative;
}

.offers-slider-wrapper {
    /* overflow: hidden; */
    position: relative;
    padding: 20px 0;
}

.offers-slider {
    display: flex;
    gap: 30px;
    animation: slideOffers 25s linear infinite;
    width: fit-content;
}

.offers-slider:hover {
    animation-play-state: paused;
}

@keyframes slideOffers {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-350px * 5 - 30px * 5));
    }
}

.offer-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 40px 30px;
    min-width: 350px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(40, 172, 90, 0.2);
    border-color: #28ac5a;
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(40, 172, 90, 0.1) 0%, rgba(40, 172, 90, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.offer-icon i {
    font-size: 36px;
    color: #28ac5a;
}

.offer-card:hover .offer-icon {
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    transform: scale(1.1) rotate(5deg);
}

.offer-card:hover .offer-icon i {
    color: white;
}

.offer-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    min-height: 58px;
}

.offer-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
}

.price-old {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
}

.price-new {
    font-size: 32px;
    font-weight: 800;
    color: #28ac5a;
}

.offer-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.offer-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #555;
    font-size: 15px;
}

.offer-features li i {
    color: #28ac5a;
    font-size: 14px;
}

.offer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.offer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 172, 90, 0.4);
    color: white;
}

/* Duplicate offers for infinite scroll */
.offers-slider::after {
    content: '';
    display: flex;
    gap: 30px;
}

/* Doctor Section */
.doctor-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.doctor-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.doctor-image-wrapper {
    position: relative;
}

.doctor-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.doctor-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.doctor-image:hover .doctor-img {
    transform: scale(1.05);
}

.doctor-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    pointer-events: none;
}

.doctor-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(40, 172, 90, 0.4);
}

.doctor-badge i {
    font-size: 18px;
}

.doctor-info {
    padding: 20px 0;
}

.doctor-qualification {
    font-size: 18px;
    color: #28ac5a;
    font-weight: 600;
    margin-bottom: 24px;
}

.doctor-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    border-radius: 2px;
    margin: 30px 0;
}

.doctor-story-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
}

.doctor-story {
    margin-bottom: 40px;
}

.doctor-story p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.doctor-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.doctor-stat-item {
    text-align: center;
}

.doctor-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #28ac5a;
    line-height: 1;
    margin-bottom: 8px;
}

.doctor-stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.btn-doctor {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
}

.btn-doctor:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 107, 107, 0.4);
    color: white;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.map-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    margin-top: 50px;
}
.contact-us-map{
    grid-template-columns: 1fr;
}
.contact-us-map .map-wrapper{
    height: 400px;
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    /* height: 450px; */
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-info-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.map-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(40, 172, 90, 0.15);
}

.map-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(40, 172, 90, 0.1) 0%, rgba(40, 172, 90, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.map-info-icon i {
    font-size: 20px;
    color: #28ac5a;
}

.map-info-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.map-info-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.map-info-content a {
    color: #1F8446;
    text-decoration: none;
    transition: color 0.3s ease;
}

.map-info-content a:hover {
    color: #1F8446;
    text-decoration: underline;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid #333;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive Design for Homepage Sections */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 125px;
    }

    .hero-image {
        height: 400px;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .doctor-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .map-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 60px 0 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }
    .hero-image-wrapper{
        height: auto;
    }

    .section-title {
        font-size: 32px;
    }

    .services-section,
    .why-choose-section,
    .testimonials-section {
        padding: 60px 0;
    }

    .stats-section,
    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 30px 20px;
    }

    .testimonial-content {
        padding: 30px 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
    }

    .offer-card {
        min-width: 300px;
    }

    .doctor-content {
        grid-template-columns: 1fr;
    }

    .doctor-img {
        height: 400px;
    }

    .map-content {
        grid-template-columns: 1fr;
    }

    .map-wrapper {
        height: 350px;
    }
}
@media (max-width: 768px) {
    
    .app-btn-img {
        height: 45px;
    }
   
    .hero-stats {
        gap: 10px;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    .hero-stats .stat-item {
        text-align: center;
    }
    .testimonial-card {
        transform: translateX(-50px);
    }
    .doctor-stats {
        gap: 30px 10px;
        justify-content: space-around;
    }
    .btn-doctor {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* ============================================
   PROFILE PAGE STYLES
   ============================================ */

/* Profile Hero Section */
.profile-hero-section {
    background: linear-gradient(135deg, #f3f3f3 0%, #e8f5e9 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.profile-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.profile-hero-container {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.profile-hero-content {
    text-align: center;
    color: white;
}

.profile-hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.9;
    color: #000;
    animation: fadeInUp 1s ease;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
    color: #000;
    animation: fadeInUp 1.2s ease;
}

.breadcrumb-nav a {
    color: #000;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb-nav a:hover {
    opacity: 0.8;
}

.breadcrumb-nav i {
    font-size: 12px;
    opacity: 0.7;
}

.breadcrumb-nav span {
    opacity: 0.8;
}

.profile-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.profile-hero-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Profile Statistics Section */
.profile-stats-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.profile-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.profile-stat-card {
    background: white;
    padding: 40px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.profile-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(40, 172, 90, 0.2);
}

.profile-stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #28ac5a;
    line-height: 1;
    margin-bottom: 12px;
}

.profile-stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* About Us Section */
.about-us-section {
    padding: 100px 0;
    background: white;
}

.about-us-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-description {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-us-image {
    position: relative;
    height: 500px;
}

.about-image-card {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(40, 172, 90, 0.1) 0%, rgba(40, 172, 90, 0.05) 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-glow {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Vision Mission Visual */
.vision-mission-visual {
    position: relative;
    width: 300px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.vm-pole {
    width: 8px;
    height: 200px;
    background: linear-gradient(180deg, #333 0%, #555 100%);
    border-radius: 4px;
    position: relative;
    z-index: 2;
}

.vm-sign {
    width: 120px;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    color: white;
    position: relative;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.vision-sign {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    transform: rotate(-5deg);
    margin-left: -40px;
}

.mission-sign {
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    transform: rotate(5deg);
    margin-right: -40px;
    margin-bottom: 40px;
}

.vm-target {
    position: relative;
    width: 150px;
    height: 150px;
    margin-top: 20px;
}

.target-ring {
    position: absolute;
    border: 3px solid #28ac5a;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.target-ring:nth-child(1) {
    width: 150px;
    height: 150px;
    opacity: 0.3;
}

.target-ring:nth-child(2) {
    width: 100px;
    height: 100px;
    opacity: 0.5;
}

.target-ring:nth-child(3) {
    width: 50px;
    height: 50px;
    opacity: 0.7;
}

.target-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #28ac5a;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(40, 172, 90, 0.6);
}

/* Our Story Section */
.our-story-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.doctor-name-card {
    margin-top: 20px;
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.doctor-name-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.doctor-name-card p {
    font-size: 16px;
    color: #28ac5a;
    font-weight: 600;
    margin: 0;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(40, 172, 90, 0.2);
    border-color: #28ac5a;
}

.value-card:hover .value-hover-effect {
    opacity: 1;
    transform: scale(1);
}

.value-hover-effect {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(40, 172, 90, 0.1) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0);
    transition: all 0.6s ease;
    pointer-events: none;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(40, 172, 90, 0.1) 0%, rgba(40, 172, 90, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.value-icon i {
    font-size: 32px;
    color: #28ac5a;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    transform: scale(1.1) rotate(5deg);
}

.value-card:hover .value-icon i {
    color: white;
}

.value-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.value-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Professional Team Section */
.professional-team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.team-carousel-wrapper {
    position: relative;
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 60px;
}

.team-carousel-container {
    overflow: hidden;
    position: relative;
}

.team-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 30px;
}

.team-member-card {
    min-width: 333px;
    max-width: 360px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(40, 172, 90, 0.25);
}

.team-member-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.team-member-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member-card:hover .team-member-image img {
    transform: scale(1.1);
}

.team-member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-member-card:hover .team-member-overlay {
    opacity: 1;
}

.team-member-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.social-link:hover {
    background: white;
    color: #28ac5a;
    transform: translateY(-3px);
    border-color: white;
}

.team-member-info {
    padding: 30px 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.team-member-role-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    align-self: center;
}

.doctor-badge-color {
    background: linear-gradient(135deg, rgba(40, 172, 90, 0.15) 0%, rgba(40, 172, 90, 0.1) 100%);
    color: #28ac5a;
    border: 1px solid rgba(40, 172, 90, 0.2);
}

.admin-badge-color {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(102, 126, 234, 0.1) 100%);
    color: #506CE7;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.team-member-name {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.team-member-designation {
    font-size: 16px;
    color: #28ac5a;
    font-weight: 600;
    margin-bottom: 6px;
}

.team-member-qualification {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
    flex-grow: 1;
}

.team-member-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 172, 90, 0.3);
    margin-top: auto;
}

.team-member-btn.contact-btn {
    background: linear-gradient(135deg, #506CE7 0%, #764ba2 100%);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.team-member-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(40, 172, 90, 0.4);
    color: white;
}

.team-member-btn.contact-btn:hover {
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

.team-member-btn i {
    font-size: 14px;
}

.team-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.team-carousel-btn:hover {
    background: #28ac5a;
    border-color: #28ac5a;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(40, 172, 90, 0.3);
}

.team-carousel-btn:hover i {
    color: white;
}

.team-carousel-btn i {
    font-size: 18px;
    color: #333;
    transition: color 0.3s ease;
}

.team-carousel-prev {
    left: 0;
}

.team-carousel-next {
    right: 0;
}

.team-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.team-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.team-carousel-dot.active {
    background: #28ac5a;
    transform: scale(1.3);
    border-color: rgba(40, 172, 90, 0.3);
}

.team-carousel-dot:hover {
    background: #28ac5a;
    transform: scale(1.2);
}

/* Meet For Section */
.meet-for-section {
    padding: 100px 0;
    background: white;
}

.meet-for-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.meet-for-btn {
    padding: 16px 32px;
    background: linear-gradient(135deg, #506CE7 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.meet-for-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #506CE7 100%);
}

.meet-for-action {
    display: flex;
    justify-content: center;
    text-align: center;
}

.meet-for-appointment-btn {
    padding: 18px 40px;
    font-size: 18px;
}

/* Contact & Appointment Section */
.contact-appointment-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-appointment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-text-section {
    padding-right: 20px;
}

.contact-description {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-image{
    width: 100%;
    height: 370px;
}

.contact-learn-more {
    display: inline-block;
    padding: 16px 32px;
}

.appointment-form-section {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #28ac5a;
    background: white;
    box-shadow: 0 0 0 3px rgba(40, 172, 90, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit-btn {
    padding: 16px 32px;
    font-size: 16px;
    margin-top: 10px;
    width: 100%;
    justify-content: center;
}

/* Profile Page Responsive Styles */
@media (max-width: 1024px) {
    .about-us-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-appointment-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .profile-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .doctors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .profile-hero-title {
        font-size: 42px;
    }

    .profile-hero-subtitle {
        font-size: 18px;
    }

    .profile-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .profile-stat-number {
        font-size: 40px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-carousel-wrapper {
        padding: 0 50px;
    }

    .team-member-card {
        min-width: 280px;
        max-width: 280px;
    }

    .team-carousel-btn {
        width: 45px;
        height: 45px;
    }

    .team-carousel-wrapper {
        padding: 0 40px;
    }
}

@media (max-width: 480px) {
    .team-carousel-wrapper {
        padding: 0 50px;
    }

    .team-member-card {
        min-width: 260px;
        max-width: 260px;
    }

    .team-carousel-btn {
        width: 40px;
        height: 40px;
    }

    .team-carousel-btn i {
        font-size: 14px;
    }

    .team-member-image-wrapper {
        height: 300px;
    }

    .team-member-name {
        font-size: 20px;
    }

    .team-member-designation {
        font-size: 15px;
    }

    .meet-for-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .meet-for-btn {
        width: 100%;
    }

    .appointment-form-section {
        padding: 30px 20px;
    }

    .vision-mission-visual {
        width: 250px;
        height: 350px;
    }

    .vm-sign {
        width: 100px;
        font-size: 14px;
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {
    .profile-hero-title {
        font-size: 32px;
    }

    .profile-hero-subtitle {
        font-size: 16px;
    }

    .profile-stat-number {
        font-size: 36px;
    }

    .about-image-card {
        height: 400px;
    }

    .vision-mission-visual {
        width: 200px;
        height: 300px;
    }

    .vm-sign {
        width: 80px;
        font-size: 12px;
        padding: 8px 12px;
    }

    .target-ring:nth-child(1) {
        width: 120px;
        height: 120px;
    }

    .target-ring:nth-child(2) {
        width: 80px;
        height: 80px;
    }

    .target-ring:nth-child(3) {
        width: 40px;
        height: 40px;
    }
}

/* ============================================
   CONTACT US PAGE STYLES
   ============================================ */

/* Quick Contact Cards Section */
.quick-contact-section {
    padding: 80px 0;
    background: white;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.quick-contact-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.quick-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.quick-contact-card:hover::before {
    transform: scaleX(1);
}

.quick-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(40, 172, 90, 0.2);
    border-color: #28ac5a;
}

.quick-contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(40, 172, 90, 0.1) 0%, rgba(40, 172, 90, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.4s ease;
}

.quick-contact-icon i {
    font-size: 36px;
    color: #28ac5a;
    transition: all 0.4s ease;
}

.quick-contact-card:hover .quick-contact-icon {
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    transform: scale(1.1) rotate(5deg);
}

.quick-contact-card:hover .quick-contact-icon i {
    color: white;
}

.quick-contact-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.quick-contact-text {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.quick-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #28ac5a;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.quick-contact-link:hover {
    gap: 12px;
    color: #1e8e47;
}

.quick-contact-link i {
    transition: transform 0.3s ease;
}

.quick-contact-link:hover i {
    transform: translateX(5px);
}

/* Contact Main Section */
.contact-main-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-main-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-wrapper {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8f9fa;
    width: 100%;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #28ac5a;
    background: white;
    box-shadow: 0 0 0 3px rgba(40, 172, 90, 0.1);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
    font-family: inherit;
}

.contact-submit-btn {
    padding: 16px 32px;
    font-size: 16px;
    margin-top: 10px;
    width: 100%;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    position: sticky;
    top: 100px;
}

.contact-info-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.contact-info-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(40, 172, 90, 0.1) 0%, rgba(40, 172, 90, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-icon i {
    font-size: 20px;
    color: #28ac5a;
}

.contact-info-item:hover .contact-info-icon {
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    transform: scale(1.1);
}

.contact-info-item:hover .contact-info-icon i {
    color: white;
}

.contact-info-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.contact-info-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.contact-info-content a {
    color: #1F8446;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: #1e8e47;
    text-decoration: underline;
}

.contact-social-links {
    margin-top: 30px;
    padding-top: 10px;
    /* border-top: 1px solid #e0e0e0; */
}

.contact-social-links h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.social-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(40, 172, 90, 0.05) 0%, rgba(40, 172, 90, 0.02) 100%);
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link-item i {
    font-size: 20px;
    color: #28ac5a;
    transition: all 0.3s ease;
}

.social-link-item span {
    font-size: 14px;
    font-weight: 600;
}

.social-link-item:hover {
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    border-color: #28ac5a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(40, 172, 90, 0.3);
}

.social-link-item:hover i,
.social-link-item:hover span {
    color: white;
}

/* Emergency Contact Section */
.emergency-contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    position: relative;
    overflow: hidden;
}

.emergency-contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.emergency-contact-card {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.emergency-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    animation: pulse-emergency 2s ease-in-out infinite;
}

@keyframes pulse-emergency {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
    }
}

.emergency-icon i {
    font-size: 40px;
    color: white;
}

.emergency-content {
    flex-grow: 1;
}

.emergency-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #333;
    margin-bottom: 12px;
}

.emergency-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.emergency-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-emergency {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
}

.btn-emergency:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 107, 107, 0.4);
    color: white;
}

.btn-emergency-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-emergency-whatsapp:hover {
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
}

/* Contact Page Responsive Styles */
@media (max-width: 1024px) {
    .contact-main-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-wrapper {
        position: static;
    }

    .quick-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .emergency-contact-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .quick-contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper,
    .contact-info-card {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .social-links-grid {
        grid-template-columns: 1fr;
    }

    .emergency-content h2 {
        font-size: 24px;
    }

    .emergency-buttons {
        flex-direction: column;
    }

    .btn-emergency {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .quick-contact-card {
        padding: 30px 20px;
    }

    .quick-contact-icon {
        width: 70px;
        height: 70px;
    }

    .quick-contact-icon i {
        font-size: 28px;
    }

    .contact-form-wrapper,
    .contact-info-card {
        padding: 25px 15px;
    }

    .emergency-contact-card {
        padding: 30px 20px;
    }

    .emergency-icon {
        width: 80px;
        height: 80px;
    }

    .emergency-icon i {
        font-size: 32px;
    }
}

/* ============================================
   SERVICE PAGE STYLES (SAH Vasospasm Management)
   ============================================ */

/* Service Feature Bar */
.service-feature-bar {
    padding: 40px 0;
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
}

.feature-bar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.feature-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.feature-bar-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-bar-icon i {
    font-size: 24px;
    color: white;
}

.feature-bar-item:hover .feature-bar-icon {
    background: white;
    transform: scale(1.1);
}

.feature-bar-item:hover .feature-bar-icon i {
    color: #28ac5a;
}

.feature-bar-text {
    color: white;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

/* Service Benefits Section */
.service-benefits-section {
    padding: 100px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(40, 172, 90, 0.2);
    border-color: #28ac5a;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(40, 172, 90, 0.1) 0%, rgba(40, 172, 90, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.4s ease;
}

.benefit-icon i {
    font-size: 36px;
    color: #28ac5a;
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    transform: scale(1.1) rotate(5deg);
}

.benefit-card:hover .benefit-icon i {
    color: white;
}

.benefit-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.benefit-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Service Content Section */
.service-content-section {
    padding: 80px 0;
    background: white;
}

.service-content-section.service-content-alt {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.service-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-content-wrapper.service-content-reverse {
    direction: rtl;
}

.service-content-wrapper.service-content-reverse > * {
    direction: ltr;
}

.service-content-text {
    padding: 20px 0;
}

.service-content-description {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-content-description p {
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    border-bottom: 1px solid #e0e0e0;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #28ac5a;
    font-size: 18px;
}

.service-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.service-content-image {
    position: relative;
}

.service-image-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
}

.service-image-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.service-image-card:hover img {
    transform: scale(1.05);
}

.service-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
    pointer-events: none;
}

/* Diagnosis Grid */
.diagnosis-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.diagnosis-image-item {
    aspect-ratio: 1;
}

.diagnosis-image-box {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(40, 172, 90, 0.1) 0%, rgba(40, 172, 90, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.diagnosis-image-box i {
    font-size: 48px;
    color: #28ac5a;
}

.diagnosis-image-box span {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.diagnosis-image-box:hover {
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    transform: translateY(-5px);
    border-color: #28ac5a;
    box-shadow: 0 10px 30px rgba(40, 172, 90, 0.3);
}

.diagnosis-image-box:hover i,
.diagnosis-image-box:hover span {
    color: white;
}

/* Treatment Grid */
.treatment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.treatment-card {
    background: white;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(40, 172, 90, 0.2);
    border-color: #28ac5a;
}

.treatment-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(40, 172, 90, 0.1) 0%, rgba(40, 172, 90, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.treatment-icon i {
    font-size: 32px;
    color: #28ac5a;
}

.treatment-card:hover .treatment-icon {
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    transform: scale(1.1);
}

.treatment-card:hover .treatment-icon i {
    color: white;
}

.treatment-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.treatment-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Why Choose Service Section */
.why-choose-service-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.why-choose-service-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.why-choose-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: #555;
}

.why-choose-item i {
    color: #28ac5a;
    font-size: 20px;
    flex-shrink: 0;
}

.why-choose-service-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-stat-item {
    background: white;
    padding: 40px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(40, 172, 90, 0.2);
}

.service-stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #28ac5a;
    line-height: 1;
    margin-bottom: 12px;
}

.service-stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    line-height: 1.4;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card-service {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(40, 172, 90, 0.2);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.testimonial-name {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 14px;
}

.testimonial-text-service {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.testimonial-card-service.expanded {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(40, 172, 90, 0.2);
}

.testimonial-card-service.expanded .testimonial-text-service {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
}

.testimonial-read-more {
    color: #28ac5a;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.testimonial-read-more:hover {
    color: #1e8e47;
    text-decoration: underline;
}

/* Procedures Section */
.procedures-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.procedures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.procedure-card {
    background: white;
    padding: 35px 30px;
    border-radius: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.procedure-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #28ac5a 0%, #1e8e47 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.procedure-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(40, 172, 90, 0.25);
    border-color: #28ac5a;
}

.procedure-card:hover::before {
    transform: scaleX(1);
}

.procedure-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 60px;
    font-weight: 900;
    color: rgba(40, 172, 90, 0.08);
    line-height: 1;
    transition: all 0.4s ease;
}

.procedure-card:hover .procedure-number {
    color: rgba(40, 172, 90, 0.15);
    transform: scale(1.1);
}

.procedure-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(40, 172, 90, 0.1) 0%, rgba(40, 172, 90, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.procedure-icon i {
    font-size: 32px;
    color: #28ac5a;
    transition: all 0.4s ease;
}

.procedure-card:hover .procedure-icon {
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    transform: rotate(5deg) scale(1.05);
}

.procedure-card:hover .procedure-icon i {
    color: white;
    transform: scale(1.1);
}

.procedure-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.3;
    min-height: 56px;
}

.procedure-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    min-height: 50px;
}

.procedure-link {
    color: #28ac5a;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.procedure-link i {
    transition: transform 0.3s ease;
}

.procedure-card:hover .procedure-link {
    color: #1e8e47;
}

.procedure-card:hover .procedure-link i {
    transform: translateX(5px);
}

/* Responsive Procedures Section */
@media (max-width: 768px) {
    .procedures-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .procedure-card {
        padding: 25px 20px;
    }

    .procedure-number {
        font-size: 45px;
        top: 15px;
        right: 20px;
    }

    .procedure-title {
        font-size: 20px;
        min-height: auto;
    }

    .procedure-description {
        min-height: auto;
    }
}

/* Careers Section - Why Join Us */
.why-join-section {
    padding: 100px 0;
    background: white;
}

.why-join-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-join-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.why-join-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(40, 172, 90, 0.2);
    border-color: #28ac5a;
}

.why-join-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(40, 172, 90, 0.1) 0%, rgba(40, 172, 90, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.4s ease;
}

.why-join-icon i {
    font-size: 36px;
    color: #28ac5a;
    transition: all 0.4s ease;
}

.why-join-card:hover .why-join-icon {
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    transform: scale(1.1) rotate(5deg);
}

.why-join-card:hover .why-join-icon i {
    color: white;
    transform: scale(1.1);
}

.why-join-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.why-join-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Careers Benefits Section */
.careers-benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.benefits-wrapper {
    /* max-width: 1000px; */
    margin: 50px auto 0;
}

.benefits-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(40, 172, 90, 0.15);
}

.benefit-item-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, rgba(40, 172, 90, 0.1) 0%, rgba(40, 172, 90, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.benefit-item-icon i {
    font-size: 28px;
    color: #28ac5a;
}

.benefit-item:hover .benefit-item-icon {
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
}

.benefit-item:hover .benefit-item-icon i {
    color: white;
}

.benefit-item-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.benefit-item-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Job Openings Section */
.job-openings-section {
    padding: 100px 0;
    background: white;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.job-card {
    background: white;
    padding: 35px 30px;
    border-radius: 16px;
    border: 2px solid #e0e0e0;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(40, 172, 90, 0.2);
    border-color: #28ac5a;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.job-type-badge {
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.job-location {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-location i {
    color: #28ac5a;
}

.job-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.job-department {
    font-size: 14px;
    color: #28ac5a;
    font-weight: 600;
    margin-bottom: 15px;
}

.job-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.job-requirements {
    margin-bottom: 25px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.job-requirements h5 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.job-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-requirements ul li {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
}

.job-requirements ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28ac5a;
    font-weight: 700;
}

.job-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.job-apply-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(40, 172, 90, 0.3);
    color: white;
}

.job-apply-btn i {
    transition: transform 0.3s ease;
}

.job-apply-btn:hover i {
    transform: translateX(5px);
}

/* Application Process Section */
.application-process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(213px, 1fr));
    gap: 25px;
    margin-top: 50px;
    position: relative;
}

.process-step {
    background: white;
    padding: 40px 25px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(40, 172, 90, 0.2);
    border-color: #28ac5a;
}

.step-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 50px;
    font-weight: 900;
    color: rgba(40, 172, 90, 0.08);
    line-height: 1;
    transition: all 0.4s ease;
}

.process-step:hover .step-number {
    color: rgba(40, 172, 90, 0.15);
    transform: scale(1.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(40, 172, 90, 0.1) 0%, rgba(40, 172, 90, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.4s ease;
}

.step-icon i {
    font-size: 36px;
    color: #28ac5a;
    transition: all 0.4s ease;
}

.process-step:hover .step-icon {
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    transform: scale(1.1) rotate(5deg);
}

.process-step:hover .step-icon i {
    color: white;
    transform: scale(1.1);
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.step-description {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* Responsive Careers Sections */
@media (max-width: 768px) {
    .why-join-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefits-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .job-card {
        padding: 25px 20px;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Blog Content Section */
.blog-content-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

.blog-main {
    min-width: 0;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(40, 172, 90, 0.2);
    border-color: #28ac5a;
}

.blog-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.blog-card-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #666;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i {
    color: #28ac5a;
    font-size: 12px;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.blog-read-more {
    color: #28ac5a;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: #1e8e47;
    gap: 12px;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

.blog-consult {
    font-size: 13px;
    color: #28ac5a;
    font-weight: 600;
    font-style: italic;
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.pagination-btn {
    padding: 10px 20px;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pagination-btn:hover {
    background: #28ac5a;
    color: white;
    border-color: #28ac5a;
}

.pagination-numbers {
    display: flex;
    gap: 10px;
}

.pagination-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
}

.pagination-number:hover {
    background: #28ac5a;
    color: white;
    border-color: #28ac5a;
}

.pagination-number.active {
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    color: white;
    border-color: #28ac5a;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 170px;
}

.sidebar-widget {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.categories-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-item {
    padding: 12px 18px;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-item:hover {
    background: rgba(40, 172, 90, 0.1);
    color: #28ac5a;
    border-color: rgba(40, 172, 90, 0.2);
    transform: translateX(5px);
}

.category-item.active {
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    color: white;
    border-color: #28ac5a;
}

/* Recent Blogs */
.recent-blogs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-blog-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.recent-blog-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-blog-image {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.recent-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recent-blog-item:hover .recent-blog-image img {
    transform: scale(1.1);
}

.recent-blog-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.recent-blog-content h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-blog-content h4 a:hover {
    color: #28ac5a;
}

.recent-blog-date {
    font-size: 13px;
    color: #666;
}

/* Who We Are Section */
.who-we-are-section {
    padding: 100px 0;
    background: white;
}

.who-we-are-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.who-we-are-content {
    padding-right: 20px;
}

.who-we-are-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}
.who-we-are-content a.btn-primary{
    width: fit-content;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.appointment-form .form-group {
    margin-bottom: 20px;
}

.appointment-form .form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.appointment-form .form-control:focus {
    outline: none;
    border-color: #28ac5a;
    background: white;
    box-shadow: 0 0 0 3px rgba(40, 172, 90, 0.1);
}

.appointment-form textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 172, 90, 0.3);
}

/* Responsive Blog Section */
@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }

    .who-we-are-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    
}

@media (max-width: 768px) {
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-title {
        font-size: 18px;
    }

    .pagination-numbers {
        gap: 5px;
    }

    .pagination-number {
        width: 35px;
        height: 35px;
        font-size: 13px;
    }

}

/* Press Release Section */
.press-release-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.press-release-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.press-release-main {
    min-width: 0;
}

/* Press Search and Filter Bar */
.press-search-bar {
    background: white;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.search-box {
    flex: 1;
    min-width: 250px;
    position: relative;
    display: flex;
    align-items: center;
}

.search-box i {
    position: absolute;
    left: 18px;
    color: #28ac5a;
    font-size: 16px;
}

.search-input {
    width: 100%;
    padding: 12px 18px 12px 45px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.search-input:focus {
    outline: none;
    border-color: #28ac5a;
    background: white;
    box-shadow: 0 0 0 3px rgba(40, 172, 90, 0.1);
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: #f8f9fa;
    color: #333;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(40, 172, 90, 0.1);
    color: #28ac5a;
    border-color: #28ac5a;
}

.filter-btn.active {
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    color: white;
    border-color: #28ac5a;
}

/* Press Release Grid */
.press-release-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.press-release-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.press-release-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(40, 172, 90, 0.2);
    border-color: #28ac5a;
}

.press-release-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #f0f0f0;
}

.press-release-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.press-release-card:hover .press-release-image img {
    transform: scale(1.1);
}

.press-source-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.press-source-badge.online {
    background: rgba(40, 172, 90, 0.95);
    color: white;
}

.press-source-badge i {
    font-size: 11px;
}

.press-release-content {
    padding: 25px;
}

.press-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: #666;
}

.press-date {
    display: flex;
    align-items: center;
    gap: 6px;
}

.press-date i {
    color: #28ac5a;
    font-size: 12px;
}

.press-source {
    font-weight: 600;
    color: #28ac5a;
    font-size: 13px;
}

.press-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.press-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.press-read-more {
    color: #28ac5a;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.press-read-more:hover {
    color: #1e8e47;
    gap: 12px;
}

.press-read-more i {
    transition: transform 0.3s ease;
}

.press-read-more:hover i {
    transform: translateX(5px);
}

/* Press Pagination */
.press-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 50px;
}

/* Press Sidebar */
.press-sidebar {
    position: sticky;
    top: 170px;
}

/* Services List in Sidebar */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-link {
    padding: 12px 18px;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-link i {
    color: #28ac5a;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    background: rgba(40, 172, 90, 0.1);
    color: #28ac5a;
    border-color: rgba(40, 172, 90, 0.2);
    transform: translateX(5px);
}

.service-link:hover i {
    transform: translateX(3px);
}

/* Appointment Form in Sidebar */
.appointment-form-widget {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.appointment-form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.appointment-form-sidebar .form-group {
    margin-bottom: 0;
}

.appointment-form-sidebar label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.appointment-form-sidebar .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    font-family: inherit;
}

.appointment-form-sidebar .form-control:focus {
    outline: none;
    border-color: #28ac5a;
    background: white;
    box-shadow: 0 0 0 3px rgba(40, 172, 90, 0.1);
}

.appointment-form-sidebar select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2328ac5a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.appointment-form-sidebar textarea.form-control {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.btn-submit-sidebar {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit-sidebar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 172, 90, 0.3);
}

/* Responsive Press Release Section */
@media (max-width: 1024px) {
    .press-release-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .press-sidebar {
        position: static;
    }

    .press-release-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .press-search-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box {
        min-width: 100%;
    }

    .filter-buttons {
        justify-content: flex-start;
    }

    .filter-btn {
        flex: 1;
        min-width: 80px;
        text-align: center;
    }

    .press-release-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .press-release-image {
        height: 200px;
    }

    .press-release-content {
        padding: 20px;
    }

    .press-title {
        font-size: 18px;
    }

    .press-pagination {
        gap: 10px;
    }

    .pagination-number {
        width: 35px;
        height: 35px;
        font-size: 13px;
    }

    .appointment-form-widget {
        padding: 25px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: #28ac5a;
    box-shadow: 0 4px 20px rgba(40, 172, 90, 0.15);
}

.faq-question {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.faq-question i {
    color: #28ac5a;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 24px;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Service Page Responsive Styles */
@media (max-width: 1024px) {
    .service-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-content-wrapper.service-content-reverse {
        direction: ltr;
    }

    .why-choose-service-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-choose-service-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .feature-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .diagnosis-grid,
    .treatment-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-service-stats {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .service-image-card img {
        height: 400px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }
}

@media (max-width: 480px) {
    .feature-bar-grid {
        grid-template-columns: 1fr;
    }

    .feature-bar-icon {
        width: 50px;
        height: 50px;
    }

    .feature-bar-icon i {
        font-size: 20px;
    }

    .feature-bar-text {
        font-size: 13px;
    }

    .service-image-card img {
        height: 300px;
    }
    .contact-image {
        height: auto;
    }
    .appointment-form > div{
        flex-direction: column;
    }
}
@media (min-width: 769px) and (max-width: 1279px){
    .dropdown-menu.mega-dropdown {
        grid-template-columns: 1fr 1fr;
    }
    .header-container {
        /* flex-wrap: wrap; */
    }
}
@media (min-width: 769px) and (max-width: 920px){
    .action-buttons{
        display: none;
    }
    .sub-menu {
        left: auto;
        right: 0;
        top: 50px;
    }
}




/* Multi-Step Form Styles */
/* Appointment Page Section */
.appointment-page-section {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.multi-step-form-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.multi-step-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #28ac5a 0%, #1e8e47 100%);
}

  .form-step {
    display: none;
  }

  .form-step.active {
    display: block;
  }

  .step-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
  }

  .step-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
  }

  .step-header p {
    font-size: 16px;
    color: #666;
    margin: 0;
  }

  .back-btn {
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, rgba(40, 172, 90, 0.1) 0%, rgba(40, 172, 90, 0.05) 100%);
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    color: #28ac5a;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    transition: all 0.3s ease;
  }

  .back-btn:hover {
    color: white;
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    border-color: #28ac5a;
    transform: translateX(-3px);
  }
  .back-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(40, 172, 90, 0.2);
  }

  /* Calendar Styles */
  .calendar-container {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
  }

  .calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  .calendar-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin: 0;
  }

  .calendar-nav-btn {
    background: linear-gradient(135deg, rgba(40, 172, 90, 0.1) 0%, rgba(40, 172, 90, 0.05) 100%);
    border: 2px solid #e0e0e0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #28ac5a;
  }

  .calendar-nav-btn:hover {
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    border-color: #28ac5a;
    transform: scale(1.1);
    color: white;
  }
  
  .calendar-nav-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(40, 172, 90, 0.2);
  }
  
  .calendar-nav-btn svg path {
    stroke: currentColor;
  }

  .calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 12px;
  }

  .weekday {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    padding: 8px;
  }

  .calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
  }

  .calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
    width: 100%;
    height: 65px;
  }

  .calendar-day.empty {
    cursor: default;
    visibility: hidden;
  }

  .calendar-day.available {
    color: #333;
    background: linear-gradient(135deg, rgba(40, 172, 90, 0.1) 0%, rgba(40, 172, 90, 0.05) 100%);
    border-color: transparent;
  }

  .calendar-day.available:hover {
    background: linear-gradient(135deg, rgba(40, 172, 90, 0.2) 0%, rgba(40, 172, 90, 0.15) 100%);
    border-color: #28ac5a;
    transform: scale(1.05);
    color: #28ac5a;
    font-weight: 600;
  }

  .calendar-day.disabled {
    color: #999;
    background: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.5;
  }

  .calendar-day.selected {
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    color: white;
    border-color: #28ac5a;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(40, 172, 90, 0.3);
  }

  /* Time Slots Styles */
  .time-slots-container {
    padding: 20px 0;
  }

  .time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
    max-height: 400px;
    overflow-y: auto;
    padding: 10px;
  }

  .time-slot-btn {
    padding: 14px 20px;
    background: linear-gradient(135deg, rgba(40, 172, 90, 0.05) 0%, rgba(40, 172, 90, 0.02) 100%);
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
  }
  
  .time-slot-btn:hover {
    background: linear-gradient(135deg, rgba(40, 172, 90, 0.15) 0%, rgba(40, 172, 90, 0.1) 100%);
    border-color: #28ac5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 172, 90, 0.2);
  }
  
  .time-slot-btn.selected {
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    color: white;
    border-color: #28ac5a;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(40, 172, 90, 0.3);
  }


  /* File Upload Styles */
  .file-upload-wrapper {
    position: relative;
    margin-top: 8px;
  }

  .file-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }

  .file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 27px 16px;
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    background: #fafafa;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 16px;
    color: #666;
    min-height: 60px;
  }

  .file-upload-label:hover {
    border-color: #28ac5a;
    background: linear-gradient(135deg, rgba(40, 172, 90, 0.05) 0%, rgba(40, 172, 90, 0.02) 100%);
    color: #28ac5a;
  }

  .file-upload-label svg {
    transition: all 0.3s ease;
  }

  .file-upload-label:hover svg path {
    stroke: #28ac5a;
  }

  .file-name {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: #28ac5a;
    font-weight: 600;
    word-break: break-all;
  }

  .file-hint-text {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #999;
  }

  /* Form Styles */
  .form-step .col-grid-6,
  .form-step .col-grid-12 {
    margin-bottom: 20px;
  }

  .appointment-details-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .appointment-details-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
  }
  
  .appointment-details-form label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
  }

  .form-step .form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: #f8f9fa;
  }

  .form-step .form-control:focus {
    outline: none;
    border-color: #28ac5a;
    background: white;
    box-shadow: 0 0 0 3px rgba(40, 172, 90, 0.1);
  }
  
  .form-step select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
  }
  
  .form-step textarea.form-control {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
  }
  
  .appointment-submit-btn {
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  

  .btn-next {
    background: #006aa5;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    padding: 12px 30px;
    float: right;
    margin-top: 20px;
  }

  .btn-next:hover {
    background: #0248a8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 106, 165, 0.3);
  }

  .step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
  }

  .step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
    transition: all 0.3s;
  }

  .step-dot.active {
    background: #28ac5a;
    transform: scale(1.3);
    box-shadow: 0 0 0 4px rgba(40, 172, 90, 0.2);
  }
  #appointmentForm{
      display: inline-block;
      width: 100%;
  }

  @media screen and (max-width: 768px) {
    .appointment-page-section {
      padding: 60px 0 80px;
    }
    
    .multi-step-form-container {
      padding: 30px 20px;
      margin: 0;
      border-radius: 16px;
    }

    .step-header h2 {
      font-size: 24px;
    }

    .time-slots-grid {
      grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }

    .back-btn {
      position: relative;
      margin-bottom: 15px;
    }
    
    .calendar-container {
      padding: 15px;
      margin: 20px 0;
    }
    
    .appointment-details-form .form-row {
      grid-template-columns: 1fr;
    }
  }
  
  @media only screen and (max-width: 479px) {
      .contact-form-area.contactdesc {
          padding: 0px;
      }
      .calendar-day {
          height: 100%;
      }
      .form-step .form-control {
          margin-bottom: 0;
      }
      .form-step .col-grid-6,
      .form-step .col-grid-12 {
        margin-bottom: 5px;
      }
}

/* ============================================
   Testimonials Page Styles
   ============================================ */

/* Page Hero Banner */

/* Testimonials Stats Section */
.testimonials-stats-section {
    padding: 60px 0;
    background: white;
    position: relative;
    z-index: 3;
}

.testimonials-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(40, 172, 90, 0.2);
    border-color: #28ac5a;
}

.testimonial-stat-card:hover .stat-icon i {
    color: white;
    transform: scale(1.1);
}

.testimonial-stat-card:hover .stat-icon {
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    transform: scale(1.1) rotate(5deg);
}

.testimonial-stat-card .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(40, 172, 90, 0.1) 0%, rgba(40, 172, 90, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #28ac5a;
    transition: all 0.4s ease;
}

.testimonial-stat-card .stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.testimonial-stat-card .stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* Testimonials Page Section */
.testimonials-page-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.testimonials-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card-page {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.testimonial-card-page:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(40, 172, 90, 0.25);
    border-color: #28ac5a;
}

.testimonial-card-inner {
    padding: 40px 35px;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(40, 172, 90, 0.1) 0%, rgba(40, 172, 90, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: rgb(40 172 90 / 58%);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.testimonial-card-page:hover .testimonial-quote-icon {
    color: #fff;
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    transform: rotate(5deg) scale(1.05);
    opacity: 1;
}

.testimonial-rating-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    color: #ffc107;
    font-size: 16px;
}

.testimonial-text-page {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author-page {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    margin-top: auto;
    border-top: 1px solid #e0e0e0;
}

.testimonial-avatar-page {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #506CE7 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.testimonial-author-info {
    flex: 1;
}

.testimonial-author-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.testimonial-author-role {
    font-size: 14px;
    color: #888;
}

.testimonial-card-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.testimonial-card-page:hover .testimonial-card-hover {
    opacity: 1;
}

/* Responsive Design for Testimonials Page */
@media (max-width: 992px) {
    .testimonials-grid-page {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 25px;
    }
    
    .testimonials-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .page-hero-title {
        font-size: 38px;
    }
    
    .page-hero-description {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .page-hero-banner {
        padding: 100px 0 60px;
    }
    
    .page-hero-title {
        font-size: 32px;
    }
    
    .page-hero-description {
        font-size: 16px;
    }
    
    .testimonials-page-section {
        padding: 60px 0;
    }
    
    .testimonials-grid-page {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonial-card-inner {
        padding: 30px 25px;
    }
    
    .testimonial-stat-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .testimonials-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-stat-card .stat-number {
        font-size: 36px;
    }
    
    .page-hero-title {
        font-size: 28px;
    }
}

/* ============================================
   Success Stories Section Styles
   ============================================ */

.success-stories-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.success-stories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(102,126,234,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.success-story-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
}

.success-story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.25);
}

.video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    background: #000;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.success-story-card:hover .thumbnail-image {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.success-story-card:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 5px 25px rgba(255, 0, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(255, 0, 0, 0.6);
    background: #cc0000;
    color: #fff;
}

.play-button i {
    margin-left: 3px; /* Slight adjustment for visual centering */
}

.video-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
}

.video-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(102, 126, 234, 0.95);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.video-badge i {
    font-size: 14px;
}

.video-content {
    padding: 30px;
}

.video-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-watch-youtube {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background: #ff0000;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
}

.btn-watch-youtube:hover {
    background: #cc0000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
}

.btn-watch-youtube i {
    font-size: 18px;
}

.video-stats {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #888;
}

.video-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.video-stats i {
    font-size: 12px;
}

.success-stories-footer {
    text-align: center;
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

.btn-view-all-videos {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    color: white;
    text-decoration: none;
    border-radius: 7px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(102, 126, 234, 0.3);
}

.btn-view-all-videos:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(102, 126, 234, 0.4);
    color: #fff;
}

.btn-view-all-videos i {
    font-size: 20px;
}

/* Responsive Design for Success Stories */
@media (max-width: 992px) {
    .success-stories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .success-stories-section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .success-stories-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .success-stories-section {
        padding: 60px 0;
    }
    
    .video-content {
        padding: 25px;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .btn-view-all-videos {
        padding: 14px 35px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .video-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .video-title {
        font-size: 18px;
    }
    
    .video-description {
        font-size: 14px;
    }
    
    .btn-watch-youtube {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .video-stats {
        flex-direction: column;
        gap: 8px;
    }
}

/* ============================================
   Photo Gallery Section Styles
   ============================================ */

.photo-gallery-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 40px 0 50px;
}

.gallery-filter-btn {
    padding: 12px 24px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gallery-filter-btn i {
    font-size: 14px;
}

.gallery-filter-btn:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: #506CE7;
    color: #506CE7;
    transform: translateY(-2px);
}

.gallery-filter-btn.active {
    background: linear-gradient(135deg, #506CE7 0%, #764ba2 100%);
    border-color: #506CE7;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
}

.gallery-item-inner {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    width: 100%;
    color: white;
}

.gallery-item-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.gallery-item-category {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.gallery-view-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gallery-view-btn:hover {
    background: white;
    color: #506CE7;
    border-color: white;
    transform: translateY(-2px);
}

.gallery-view-btn i {
    font-size: 16px;
}

/* Lightbox Modal Styles */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    z-index: 10001;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: lightboxFadeIn 0.4s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-image-wrapper {
    position: relative;
    max-width: 100%;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.lightbox-loader.active {
    display: block;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
}

.lightbox-close:hover {
    background: white;
    color: #333;
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
}

.lightbox-nav:hover {
    background: white;
    color: #506CE7;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-info {
    margin-top: 25px;
    text-align: center;
    color: white;
}

.lightbox-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.lightbox-category {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design for Photo Gallery */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 768px) {
    .photo-gallery-section {
        padding: 60px 0;
    }
    
    .gallery-filters {
        gap: 10px;
        margin: 30px 0 40px;
    }
    
    .gallery-filter-btn {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .gallery-overlay {
        padding: 20px;
    }
    
    .gallery-item-title {
        font-size: 16px;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .lightbox-prev {
        left: 5px;
    }
    
    .lightbox-next {
        right: 5px;
    }
    
    .lightbox-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .gallery-filter-btn {
        flex-shrink: 0;
    }
}


/* ============================================
   VIDEO GALLERY SECTION STYLES
   ============================================ */

/* Video Gallery Hero Section */
.video-gallery-hero-section {
    background: linear-gradient(135deg, #f3f3f3 0%, #e8f5e9 100%);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.video-gallery-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(40,172,90,0.1)"/></svg>');
    opacity: 0.3;
}

.video-gallery-hero-container {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.video-gallery-hero-content {
    text-align: center;
}

.video-gallery-hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #28ac5a;
}

.video-gallery-hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: #666;
    animation: fadeInUp 1s ease;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.video-gallery-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.video-gallery-hero-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Video Gallery Section */
.video-gallery-section {
    padding: 100px 0;
    background: #f8f9fa;
}

/* Video Gallery Filters */
.video-gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 40px 0 50px;
}

.video-filter-btn {
    padding: 12px 24px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Montserrat", sans-serif;
}

.video-filter-btn i {
    font-size: 14px;
}

.video-filter-btn:hover {
    background: rgba(40, 172, 90, 0.1);
    border-color: #28ac5a;
    color: #28ac5a;
    transform: translateY(-2px);
}

.video-filter-btn.active {
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    border-color: #28ac5a;
    color: white;
    box-shadow: 0 4px 15px rgba(40, 172, 90, 0.3);
}

/* Video Gallery Grid */
.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* Video Gallery Card */
.video-gallery-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.video-gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(40, 172, 90, 0.25);
}

.video-card-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    background: #000;
}

.video-thumb-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-gallery-card:hover .video-thumb-img {
    transform: scale(1.1);
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
}

.video-gallery-card:hover .video-play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.4);
    position: relative;
}

.video-play-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 107, 107, 0.3);
    animation: playPulse 2s infinite;
}

@keyframes playPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.video-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(255, 107, 107, 0.6);
}

.video-play-btn i {
    margin-left: 4px;
}

.video-duration-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.video-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.video-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.video-card-category,
.video-card-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
}

.video-card-category i,
.video-card-date i {
    font-size: 12px;
    color: #28ac5a;
}

.video-card-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

.video-card-doctor {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
}

.video-card-doctor i {
    color: #28ac5a;
    font-size: 14px;
}

.video-watch-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #28ac5a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.video-watch-link:hover {
    color: #1e8e47;
    gap: 8px;
}

.video-watch-link i {
    font-size: 11px;
}

/* Load More Button */
.video-gallery-load-more {
    text-align: center;
    margin-top: 50px;
}

.btn-load-more-videos {
    padding: 16px 40px;
    background: white;
    border: 2px solid #28ac5a;
    border-radius: 50px;
    color: #28ac5a;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Montserrat", sans-serif;
}

.btn-load-more-videos:hover {
    background: linear-gradient(135deg, #28ac5a 0%, #1e8e47 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(40, 172, 90, 0.3);
}

.btn-load-more-videos i {
    transition: transform 0.3s ease;
}

.btn-load-more-videos:hover i {
    transform: translateY(3px);
}

.btn-load-more-videos:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-load-more-videos:disabled:hover {
    background: white;
    color: #28ac5a;
    transform: none;
    box-shadow: none;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    display: flex;
    opacity: 1;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 45%);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    z-index: 10001;
    width: 90%;
    max-width: 1020px;
    aspect-ratio: 16/9;
    animation: videoModalFadeIn 0.4s ease;
}

@keyframes videoModalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10002;
}

.video-modal-close:hover {
    background: rgba(255, 107, 107, 0.9);
    border-color: #ff6b6b;
    transform: rotate(90deg);
}

.video-modal-iframe-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-modal-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Video Modal Loader */
.video-modal-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 12px;
    z-index: 10003;
    transition: opacity 0.3s ease;
}

.video-loader-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: #28ac5a;
    border-radius: 50%;
    animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-ring:nth-child(1) {
    animation-delay: -0.45s;
    border-top-color: #ff6b6b;
}

.spinner-ring:nth-child(2) {
    animation-delay: -0.3s;
    border-top-color: #28ac5a;
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
}

.spinner-ring:nth-child(3) {
    animation-delay: -0.15s;
    border-top-color: #ff6b6b;
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
}

.spinner-ring:nth-child(4) {
    border-top-color: #28ac5a;
    width: 30%;
    height: 30%;
    top: 35%;
    left: 35%;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.video-loader-text {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Hidden video class */
.video-gallery-card.hidden-video {
    display: none !important;
}

/* Responsive Design for Video Gallery */
@media (max-width: 1024px) {
    .video-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }

    .video-gallery-hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .video-gallery-hero-section {
        padding: 120px 0 80px;
    }

    .video-gallery-hero-title {
        font-size: 36px;
    }

    .video-gallery-hero-subtitle {
        font-size: 18px;
    }

    .video-gallery-section {
        padding: 60px 0;
    }

    .video-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-gallery-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .video-filter-btn {
        flex-shrink: 0;
        padding: 10px 20px;
        font-size: 14px;
    }

    .video-card-content {
        padding: 20px;
    }

    .video-card-title {
        font-size: 18px;
    }

    .video-modal-content {
        width: 95%;
    }

    .video-modal-close {
        top: -40px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .video-gallery-hero-title {
        font-size: 28px;
    }

    .video-gallery-hero-subtitle {
        font-size: 16px;
    }

    .video-play-btn {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .video-card-meta {
        flex-direction: column;
        gap: 8px;
    }

    .video-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}