/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
  --color-bg: #f8fafc;
  --color-bg-alt: #fff;
  --color-card: #fff;
  --color-card-alt: #f8fafc;
  --color-primary: #1a365d;
  --color-secondary: #3182ce;
  --color-accent: #ffd700;
  --color-text: #1a365d;
  --color-text-muted: #64748b;
  --color-border: #e2e8f0;
  --color-shadow: rgba(49,130,206,0.10);
  --color-shadow-strong: rgba(49,130,206,0.13);
  --color-faq-bg: #f8fafc;
  --color-faq-answer: #fff;
  --color-footer-bg: #1a365d;
  --color-footer-text: #a0aec0;
  --color-footer-strong: #fff;
  --primary:#063d77;
  --secondary:#0c98af ;
}

[data-theme='dark'] {
  --color-bg: #181f2a;
  --color-bg-alt: #232b3a;
  --color-card: #232b3a;
  --color-card-alt: #181f2a;
  --color-primary: #fff;
  --color-secondary: #43d5cb;
  --color-accent: #ffd700;
  --color-text: #fff;
  --color-text-muted: #b0b8c9;
  --color-border: #2d3748;
  --color-shadow: rgba(67,213,203,0.10);
  --color-shadow-strong: rgba(67,213,203,0.13);
  --color-faq-bg: #232b3a;
  --color-faq-answer: #181f2a;
  --color-footer-bg: #10141b;
  --color-footer-text: #b0b8c9;
  --color-footer-strong: #ffd700;
}

a{
    color:var(--primary);
}

.section_content *{
    background-color:transparent !important;
    font-family:inherit !important;
}
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    overflow-x: hidden;
    background: var(--color-bg);
}


.homepage_iframe{
    width:100%;
    height:320px;
    border-radius:8px;
}
.header, .footer {
    background: var(--color-footer-bg);
    color: var(--color-footer-text);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: #1a365d;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 30px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #3182ce;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    top: 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 12px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    display:block;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding:16px 6px;
}

.nav-links a:hover {
    color: #3182ce;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #3182ce;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px 0;
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-menu a:hover {
    background: #f7fafc;
    color: #3182ce;
}

/* CTA Button */
.cta-btn {
    background: #3182ce;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #2c5aa0;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(49, 130, 206, 0.3);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height:500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transform:none !important;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video-bg {
    width: 100%;
   
 
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,54,93,0.7) 0%, rgba(49,130,206,0.4) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title .highlight {
    color: #ffd700;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Buttons */
.btn {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-secondary);
    color: #fff;
}

.btn:hover {
    background: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(49, 130, 206, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #3182ce;
}

.btn-outline {
    background: transparent;
    color: #3182ce;
    border: 2px solid #3182ce;
}

.btn-outline:hover {
    background: #3182ce;
    color: white;
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

/* Awards Section */
.awards-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.awards-swiper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 100px; /* Add horizontal padding for button space */
}

.awards-swiper .swiper-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.awards-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: auto;
}

.award-item {
    min-width: 220px;
    max-width: 220px;
    min-height: 260px;
    max-height: 260px;
    background: white;
    padding: 20px 16px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.award-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #3182ce;
}

.award-icon {
    margin-bottom: 20px;
}

.award-icon i {
    font-size: 3rem;
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    padding: 20px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.award-item:hover .award-icon i {
    transform: scale(1.1);
}

.award-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 10px;
    line-height: 1.4;
}

.award-item p {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

@keyframes slideAwards {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Stats Bar */
.stats-bar {
    background: white;
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 30px;
    background: #f7fafc;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    background: #3182ce;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    order: -1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 5px;
}

.stat-number::after {
    content: '+';
    font-size: 2.5rem;
    color: #3182ce;
    margin-left: 5px;
}

.stat-label {
    color: #666;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Expertise Section */
.expertise {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.expertise-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.expertise-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(49, 130, 206, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    background-size: 400px 400px;
}

.expertise .container {
    position: relative;
    z-index: 1;
}

.expertise .section-header {
    margin-bottom: 80px;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3182ce, #1a365d);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(49, 130, 206, 0.3);
}

.header-badge i {
    font-size: 0.8rem;
    color: #ffd700;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-card {
    background: var(--color-card);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(49, 130, 206, 0.1);
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3182ce, #1a365d, #ffd700);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.expertise-card:hover::before {
    transform: scaleX(1);
}

.expertise-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.card-header {
    position: relative;
    padding: 18px 18px 8px;
    text-align: center;
    background: linear-gradient(135deg, rgba(49, 130, 206, 0.05) 0%, rgba(26, 54, 93, 0.05) 100%);
}

/* Remove blue checkmark if it was a pseudo-element */
.card-header::before {
    display: none !important;
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a365d;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.card-image {
    margin-bottom: 8px;
}

.card-image i {
    font-size: 2.2rem;
    padding: 10px;
}

.expertise-card:hover .card-image i {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(49, 130, 206, 0.3);
}

.card-content {
    padding: 0 16px 12px;
}

.card-content h3 {
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.card-description {
    font-size: 13px;
    margin-bottom: 10px;
}

.card-content ul {
    margin: 8px 0;
    padding: 0;
    text-align: left;
}

.card-content li {
    font-size: 13px;
    padding: 2px 0;
    display: block;
    align-items: flex-start;
    justify-content: flex-start;
    color: var(--color-text-muted);
    transition: all 0.3s ease;
    cursor: pointer;
    border-bottom: none;
}

.card-content li:hover {
    color: #1a365d;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 2px;
}

.card-content li i {
    position: absolute;
    left: 0;
    top: 12px;
    color: #3182ce;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.card-content li:hover i {
    transform: scale(1.2);
}

.card-footer {
    text-align: center;
    padding: 8px 0 0 0;
    margin-top: 0;
    border-top: 1px solid rgba(49, 130, 206, 0.1);
}

.experience-tag {
    background: none;
    color: var(--color-text-muted);
    font-size: 15px;
    font-weight: 500;
    border-radius: 0;
    padding: 0;
    margin-bottom: 10px;
    display: block;
}

.know-more-btn {
    background: #3182ce;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 10px;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(49,130,206,0.08);
}

.know-more-btn:hover {
    background: #1a365d;
    color: #fff;
    transform: translateY(-2px);
}

/* Elliptical Slide Section */
.elliptical-slide-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    position: relative;
    overflow: hidden;
}

.elliptical-slide-content-holder {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.elliptical-slide-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.elliptical-slide-wrapper-inner {
    position: relative;
}

.elliptical-slide-elements-holder {
    position: relative;
    z-index: 2;
}

.elliptical-slider {
    position: relative;
    overflow: hidden;
    height: 420px; /* Fixed height based on first slide */
    min-height: 420px;
    display: flex;
    align-items: center;
}

.elliptical-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    height: 100%;
    min-height: 100%;
    box-sizing: border-box;
}

.elliptical-slide.active {
    display: block;
    opacity: 1;
    height: 100%;
    min-height: 100%;
}

.elliptical-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.dot.active {
    background: #ffd700;
    transform: scale(1.2);
}

.elliptical-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.elliptical-slider-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.elliptical-slider-btn.prev-btn {
    left: -70px; /* Move button further left, outside content */
}

.elliptical-slider-btn.next-btn {
    right: -70px; /* Move button further right, outside content */
}

.elliptical-slider-btn.prev-btn:hover {
    left: -20px;
}

.elliptical-slider-btn.next-btn:hover {
    right: -20px;
}

.slide-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.empty-space {
    height: 5px;
}

.iwt-content {
    margin-bottom: 30px;
}

.iwt-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.iwt-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(67, 213, 203, 0.2);
    border-radius: 50%;
    border: 2px solid #43D5CB;
}

.iwt-icon i {
    font-size: 30px;
    color: #43D5CB;
}

.iwt-title-text {
    color: white;
}

.iwt-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 400;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #43D5CB, #3182ce);
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(67, 213, 203, 0.3);
}

.btn-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(67, 213, 203, 0.4);
    background: linear-gradient(135deg, #3182ce, #43D5CB);
}

.btn-icon-holder {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.btn-icon:hover .btn-icon-holder {
    transform: translateX(5px);
}

/* Enhanced Surgical Procedures Section */
.surgery-procedures {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d3748 0%, #1a365d 100%);
    position: relative;
    overflow: hidden;
}

.surgery-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.surgery-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(67, 213, 203, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    background-size: 300px 300px;
}

.surgery-procedures .container {
    position: relative;
    z-index: 1;
}

.surgery-procedures .section-header {
    margin-bottom: 80px;
    text-align: center;
}

.surgery-procedures .section-header h2 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.surgery-procedures .section-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.surgery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.surgery-card {
    background: var(--color-card);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(49, 130, 206, 0.1);
}

.surgery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #43D5CB, #3182ce, #ffd700);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.surgery-card:hover::before {
    transform: scaleX(1);
}

.surgery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.surgery-card:hover .card-image img {
    transform: scale(1.1);
}

.card-header {
    position: relative;
    padding: 20px 20px 15px;
    text-align: center;
    background: linear-gradient(135deg, rgba(67, 213, 203, 0.05) 0%, rgba(49, 130, 206, 0.05) 100%);
}

.procedure-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a365d;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.card-body {
    padding: 20px;
    text-align: center;
}

.card-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.procedure-description {
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(49, 130, 206, 0.05);
}

.success-rate {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a365d;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.card-footer .btn {
    padding: 8px 16px;
    font-size: 0.8rem;
}



/* Media Coverage */
.media-coverage {
    padding: 100px 0;
    background: #f7fafc;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.media-item {
    background: var(--color-card);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 20px var(--color-shadow);
    border: 1px solid var(--color-border);
}

.media-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.media-image {
    margin-bottom: 20px;
}

.media-image i {
    font-size: 3rem;
    color: #3182ce;
    background: rgba(49, 130, 206, 0.1);
    padding: 20px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.media-item:hover .media-image i {
    transform: scale(1.1);
}

.media-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 10px;
}

.media-content p {
    color: #666;
    font-size: 0.9rem;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: var(--color-card);
}

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.stars {
    display: flex;
    gap: 5px;
}

.stars i {
    color: #ffd700;
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

.rating-text {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

.reviews-slider-container {
    overflow: hidden;
    margin-top: 60px;
}

.reviews-slider {
    display: flex;
    gap: 30px;
    animation: slideReviews 20s infinite linear;
}

.review-card {
   
    background: var(--color-card);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 20px var(--color-shadow);
}

.review-card p{
    font-size:14px;
        height: 116px;
    overflow-y: auto;
}
.review-card:hover {
    transform: translateY(-5px);
}


.review-card p {
  overflow-y: auto;
  scrollbar-width: thin;           /* Firefox */
  scrollbar-color: #999 transparent;
}

/* For WebKit browsers like Chrome, Edge, Safari */
.review-card p::-webkit-scrollbar {
  width: 6px;
}

.review-card p::-webkit-scrollbar-track {
  background: transparent;
}

.review-card p::-webkit-scrollbar-thumb {
  background-color: #999;
  border-radius: 10px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 5px;
}

.review-stars {
    display: flex;
    gap: 3px;
}

.review-stars i {
    color: #ffd700;
    font-size: 0.9rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.review-date {
    font-size: 0.9rem;
    color: #999;
}

/* Consult Banner */
.consult-banner {
    background: linear-gradient(135deg, #3182ce 0%, #1a365d 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.banner-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: #fafafa;
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-img {
    max-width:100%;
   
}

.footer-section h3 {
    color: #fafafa;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #fafafa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3182ce;
}

.footer .social-links a {
    color: #fafafa;
    font-size: 20px;
    margin-right: 15px;
    transition: color 0.3s ease;
}

footer ul{
    padding-left:0px;
    font-size:15px;
}
.footer .social-links a:hover {
    color: #3182ce;
}

.clinic-location {
    margin-bottom: 20px;
}

.dropdown:hover .dropdown-menu{
    display:block;
}
.clinic-location h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 10px;
}

.clinic-location p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #2d3748;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3182ce;
}

.footer-disclaimer {
  font-size: 0.92rem;
  color: var(--color-footer-text);
  margin-bottom: 18px;
  line-height: 1.7;
  text-align: left;
}

.footer-disclaimer strong {
  color: var(--color-footer-strong);
  font-weight: 600;
}

@media (max-width: 600px) {
  .footer-disclaimer {
    font-size: 0.85rem;
    text-align: left;
  }
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes slideReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .header {
        top: 0;
        padding: 10px 0;
    }
    
    .nav {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .expertise-card {
        margin: 0 10px;
    }
    
    .card-header {
        padding: 30px 30px 15px;
    }
    
    .card-content {
        padding: 0 30px 30px;
    }
    
    .card-image i {
        font-size: 3rem;
        padding: 18px;
    }
    
    .logo-img {
        height: 40px;
        max-width: 150px;
    }
    
    .footer-logo-img {
        height: 35px;
        max-width: 140px;
    }

    
    .media-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card {
        min-width: 300px;
    }
    
    .award-item {
        min-width: 250px;
        padding: 30px 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .slider-btn {
        display: none;
    }
    
    .elliptical-slide-section {
        padding: 80px 0;
    }
    
    .elliptical-slide-content-wrapper {
        min-height: 300px;
    }
    
    .elliptical-slide-svg-holder {
        display: none;
    }
    
    .elliptical-slide-elements-holder {
        margin-left: 0;
        text-align: center;
    }
    
    .iwt-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .iwt-text {
        font-size: 1.1rem;
    }
    
    .elliptical-slider-btn {
        display: none;
    }
    
    .elliptical-slider-dots {
        margin-top: 30px;
    }
    
    .surgery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .surgery-card {
        margin: 0 5px;
        max-width: 320px;
    }
    
    .card-image {
        height: 160px;
    }
    
    .card-header {
        padding: 15px 15px 10px;
    }
    
    .card-body {
        padding: 0 15px 15px;
    }
    
    .card-footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .slide-content h3 {
        font-size: 2rem;
    }
    
    .banner-content h2 {
        font-size: 2rem;
    }
    
    .expertise-card {
        padding: 30px 20px;
    }
    
    .card-header {
        padding: 25px 25px 15px;
    }
    
    .card-content {
        padding: 0 25px 25px;
    }
    
    .card-image i {
        font-size: 2.5rem;
        padding: 18px;
    }
    
    .card-content h3 {
        font-size: 1.4rem;
    }
    
    .card-description {
        font-size: 0.9rem;
    }
    
    .review-card {
        min-width: 280px;
    }
    
    .award-item {
        min-width: 220px;
        padding: 25px 15px;
    }
    
    .award-item h3 {
        font-size: 1rem;
    }
    
    .elliptical-slide-section {
        padding: 60px 0;
    }
    
    .elliptical-slide-content-wrapper {
        min-height: 250px;
    }
    
    .iwt-title {
        font-size: 1.8rem;
    }
    
    .iwt-text {
        font-size: 1rem;
    }
    
    .btn-icon {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .surgery-procedures {
        padding: 80px 0;
    }
    
    .surgery-procedures .section-header h2 {
        font-size: 2.5rem;
    }
    
    .surgery-card {
        margin: 0 5px;
        max-width: 300px;
    }
    
    .card-image {
        height: 140px;
    }
    
    .card-header {
        padding: 12px 12px 8px;
    }
    
    .card-body {
        padding: 0 12px 12px;
    }
    
    .card-body h3 {
        font-size: 1.2rem;
    }
    
    .procedure-description {
        font-size: 0.8rem;
    }
    
    .card-footer .btn {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
}

/* Media Coverage Flags Section */
.media-coverage-flags {
  background: #f8fafc;
  padding: 60px 0 80px 0;
  text-align: center;
}
.media-coverage-flags h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.media-flags-row {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}
.media-flag {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flag-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.3s;
}
.flag-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-flag:hover .flag-circle {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 8px 32px rgba(22,161,183,0.18);
}
.flag-label {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 400;
  margin-top: 5px;
  letter-spacing: 0.2px;
}
@media (max-width: 600px) {
  .media-flags-row { gap: 30px; }
  .flag-circle { width: 80px; height: 80px; }
  .media-coverage-flags h2 { font-size: 1.3rem; }
}

/* Google Reviews Section */
.google-reviews-section {
    padding: 60px 0;
    background: white;
}

.google-reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.google-doctor-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 300px;
    flex-shrink: 0;
}

.doctor-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: block;
}

.doctor-info {
    text-align: center;
}

.doctor-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 10px;
}

.doctor-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.rating-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
}

.review-count {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.powered-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #666;
    font-size: 12px;
    margin-bottom: 20px;
}

.powered-by img {
    width: 16px;
    height: 16px;
}

.google-review-btn {
    background: #063d77;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    justify-content: center;
}

.google-review-btn:hover {
    background: #0c98af;
    transform: translateY(-2px);
}

.google-review-btn img {
    width: 16px;
    height: 16px;
}

.google-reviews-carousel {
    flex: 1;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
}

.google-review-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    min-width: 350px;
    flex-shrink: 0;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.reviewer-name {
    font-weight: 600;
    color: #1a365d;
    font-size: 16px;
}

.google-logo {
    width: 16px;
    height: 16px;
    margin-left: 5px;
}

.review-time {
    color: #666;
    font-size: 12px;
    margin-top: 2px;
}

.review-stars {
    color: #ffd700;
    font-size: 16px;
    margin-bottom: 10px;
}

.review-text {
    color: #333;
    line-height: 1.6;
    font-size: 14px;
}

@media (max-width: 900px) {
  .google-reviews-container { flex-direction: column; align-items: stretch; gap: 30px; }
  .google-doctor-card { width: 100%; max-width: 400px; margin: 0 auto; }
  .google-reviews-carousel { justify-content: flex-start; }
}

/* Stories of Care & Recovery Section */
.care-recovery-section {
  background: #f8fafc;
  padding: 60px 0;
}

.care-recovery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.story-card {
  background: var(--color-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--color-border);
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.story-video-container {
  position: relative;
  width: 100%;
  height: 420px;
  background: #000;
  overflow: hidden;
}

.story-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.video-controls {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.play-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #1a365d;
  font-size: 18px;
}

.play-btn:hover {
  background: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.story-content {
  padding: 24px;
}

.story-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a365d;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.story-content p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .care-recovery-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }
  
  .story-video-container {
    height: 320px;
  }
  
  .story-content {
    padding: 20px;
  }
  
  .story-content h3 {
    font-size: 1.1rem;
  }
}

.faq-section {
    background: white;
    padding: 80px 0 60px 0;
}

.faq-accordion {
  max-width: 800px;
  margin: 40px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: var(--color-faq-bg);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(49,130,206,0.06);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item.open {
  box-shadow: 0 8px 32px rgba(49,130,206,0.13);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-size: 1.13rem;
  font-weight: 600;
  color: #1a365d;
  padding: 22px 28px 22px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s;
}
.faq-question:hover {
  background: #e6f0fa;
}
.faq-toggle {
  font-size: 1.5rem;
  color: #3182ce;
  margin-left: 18px;
  font-weight: 700;
  transition: transform 0.3s;
}
.faq-item.open .faq-toggle {
  transform: rotate(180deg);
}
.faq-answer {
  background: var(--color-faq-answer);
  color: #425466;
  font-size: 1rem;
  line-height: 1.7;
  padding: 0 28px 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
}
.faq-item.open .faq-answer {
  padding: 0 28px 22px 24px;
}

@media (max-width: 900px) {
  .faq-accordion {
    max-width: 98vw;
    margin: 30px auto 0 auto;
  }
  .faq-section {
    padding: 60px 0 40px 0;
  }
}

.award-img {
  width: 100%;
  max-width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 auto 10px auto;
  display: block;
  box-shadow: 0 4px 18px rgba(49,130,206,0.10);
  background: #f8fafc;
}

.award-caption {
  text-align: center;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 0;
  margin-bottom: 0;
}

.award-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-card);
  border-radius: 18px;
  box-shadow: 0 4px 20px var(--color-shadow);
  padding: 17px 7px 11px 7px;
  margin: 0 10px;
  min-width: 144px;
  max-width: 156px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.award-item:hover {
  box-shadow: 0 12px 40px var(--color-shadow-strong);
  transform: translateY(-6px) scale(1.03);
}

@media (max-width: 700px) {
  .award-img {
    max-width: 59vw;
    height: 72px;
  }
  .award-item {
    min-width: 108px;
    max-width: 59vw;
    padding: 11px 3px 7px 3px;
  }
}

/* Fixed Contact Buttons */
.fixed-contact-buttons {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn {
    background: #25d366;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: scale(1.1);
}

.phone-btn {
    background: #3182ce;
}

.phone-btn:hover {
    background: #1a365d;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .fixed-contact-buttons {
        left: 15px;
        bottom: 15px;
        gap: 10px;
    }
    
    .contact-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

.expertise-card::before,
.card-header::before,
.card-header > *:first-child::before {
    display: none !important;
    content: none !important;
}

.awards-swiper .swiper-button-next,
.awards-swiper .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #3182ce;
    border-radius: 50%;
    color: white;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0.95;
    border: none;
}

.awards-swiper .swiper-button-next {
    right: -60px;
}

.awards-swiper .swiper-button-prev {
    left: -60px;
}

.awards-swiper .swiper-button-next::after,
.awards-swiper .swiper-button-prev::after {
    display: none;
}

.awards-swiper .swiper-button-next i,
.awards-swiper .swiper-button-prev i {
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}


/**/

.section{
    padding:60px 0;
}
.section_title{
        text-align: center;
    font-weight: bold;
    margin-bottom: 30px;
    font-size:36px;
}
.awardSwiper .swiper-wrapper{
    align-items:center;
}
.awardSwiper  img{
    height:150px;
}
.awardSwiper .swiper-wrapper .swiper-slide{
    text-align:center;
}
.swiper-button-next,.swiper-button-prev{
        background: black;
    padding: 6px;
    display: inline-block;
    font-size: 14px;
    text-align: center;
    align-items: center;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
}
.swiper-button-next::after,.swiper-button-prev::after{
        font-size: 24px;
    color: white;
}


.swiper {
  width: 100%;
  max-width: 1200px;
  height: auto; /* allow flexible height */
  padding-bottom: 0; /* space for dots */
  overflow-y: visible; /* make sure pagination is not hidden */
  margin: auto;
}

.section_bg{
    background-size:cover;
}
.bg-primary{
    background-color:var(--primary) !important;
}
.swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 10px;
  text-align: center;
}
.service_item_static{
    height:100%;
}
.service_item_static img{
    width:100px;
    margin-bottom:14px;
}
.x_content img{
        height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top left;
}
.x_content_x{
        background: #ffffffe3;
    color: black;
    padding: 40px;
    height: 100%;
    margin-left: -30px;
}
.service_item{
        background: white;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    text-align:center;
}
.service_item img{
    height:240px;
    width:100%;
    object-fit:cover
}
.service_item a{
    color:#222;
}
._x{
        max-width: 300px;
            margin: auto;
}
.page-header{
    padding:60px 0;
    
    background-size:cover;
    background-position: center;
}
.surger_contnet{
        display: grid;
        gap:20px;
    grid-template-columns: 8fr 4fr;
    align-items:center;
}
.homepage_youtube{
        height: 169px;
    border: 1px solid #ccc;
    border-radius: 8px;
}
.text-black{
    color:#000;
}
.form-control{
    box-shadow:none !important;
}
.form-control:focus{
    border-color:var(--primary) !important;
}
.border-secondary{
    border-color:var(--secondary) !important;
}
.border-primary{
    border-color:var(--primary) !important;
}
.accordion-button {
  background-color: #f8f9fa; /* light background for collapsed buttons */
  color: #000;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary) !important;
  color: #fff !important;
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1); /* make icon white only when active */
}
.rounded-3{
    border-radius:12px !important;
}
.text-primary{
    color:var(--primary) !important;
}

.pagination-wrapper {
    text-align: center;
}

.pagination {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 20px auto;
    border-radius: 6px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.pagination li {
    margin: 0 2px;
}

.pagination li a,
.pagination li span {
    display: block;
    padding: 8px 14px;
    color: #007bff;
    text-decoration: none;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
}

.pagination li a:hover {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

.pagination li.active span,
.pagination li span[aria-current="page"] {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.pagination li.disabled span {
    color: #6c757d;
    cursor: not-allowed;
    background-color: #e9ecef;
}
.pagination-wrapper svg{
    width:22px;
}
.pagination-wrapper .flex {
    display: none;
}
.rounded{
    border-radius:6px !important;
}
.post-content{
    
}
.post-content table{
    max-width:100%;
    border:1px solid #000 !important;
    border-collapse:collapse;
}
.post-content table td, .post-content table th{
    border:1px solid #000 !important;
}
.header_overlay{
    min-height:400px;
    padding:50px 0;
    
        display: flex
;
    align-items: center;
    /*background-color:#00000080;*/
    background-color:transparent;
    
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: calc(50% - 12px);
    overflow: hidden;
    max-width: 100%;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.mobile_menu_container{
    display:none;
    
}

.mobile_menu_container{
          
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 99999;
  }
  .mobile_menu_header{
      display:flex;
      justify-content:space-between;
      padding:20px;
  }
  .mobile_menu_header img{
      width:200px;
  }
  .mobile_menu_header .close{
      font-size:24px;
  }
  .mobile_menu_container ul li a{
      text-decoration:none;
      display:block;
      font-size:14px;
      margin-bottom:10px;
  }
  .mobile_menu_container ul{
      list-style:none;
  }
  .mobile_menu_container ul{
      padding-left:20px;
  }
      .swiper{
     
  }
  .swiper_container{
      position:relative;
  }
  .swiper-button-next{
      right:-12px;
  }
  .swiper-button-prev{
      left:-12px;
  }
  .counters{
      background-image:url('../images/counter.jpg');
      background-size:cover;
  }
  .service_item_static{
      transition:300ms;
  }
  .service_item_static:hover{
      background-color:var(--secondary) !important;
  }
  .footer_why{
      background-image:url('../images/whyb.jpg');
      background-size:cover;
  
      
  }
  .service_dd h3{
          font-size: 30px;
    line-height: 1.5;
  }
  .service_dd ul{
      padding-left:18px;
  }
  .bg-secondary{
      background-color:var(--secondary) !important;
  }