/* Navbar Mega Menu */
.mega-dropdown:hover .mega-menu {
    display: block !important;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu {
    position: absolute;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 15px;
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease-in-out;
    width: 800px!important;
}

.mega-menu .dropdown-header {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    padding-bottom: 5px;
}

.mega-menu .dropdown-item {
    padding: 8px 10px;
    font-size: 14px;
    color: #555;
    transition: background 0.3s ease;
}

.mega-menu .dropdown-item:hover {
    background: #f8f9fa;
    color: #007bff;
}

/* Navbar Top Section */
.superNav {
    background: #f8f9fa;
    font-size: 14px;
}

.contact-info span {
    color: #555;
}

/* Navbar Customizations */
.navbar {
    transition: all 0.3s ease-in-out;
}

.navbar-brand img {
    height: 40px;
}
/* 🔷 Mega Menu Styling */
.mega-dropdown:hover .mega-menu {
    display: block !important;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu {
    position: absolute;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 20px;
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s ease-in-out;
}

/* 🔷 Dropdown Header */
.mega-menu .dropdown-header {
    font-size: 18px;
    font-weight: bold;
    color: #222;
    padding-bottom: 5px;
    border-bottom: 2px solid #007bff;
    display: inline-block;
    margin-bottom: 10px;
}

/* 🔷 Dropdown Items */
.mega-menu .dropdown-item {
    padding: 10px 15px;
    font-size: 15px;
    color: #555;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

/* 🔷 Hover Effects */
.mega-menu .dropdown-item:hover {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    transform: scale(1.05);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* 🔷 Navbar Styling */
.navbar {
    background: white;
    transition: all 0.3s ease-in-out;
}

/* 🔷 Navbar Links */
.navbar-nav .nav-link {
    font-weight: 600;
    color: #333;
    position: relative;
    transition: all 0.3s ease-in-out;
}

/* 🔷 Navbar Hover Effects */
.navbar-nav .nav-link:hover {
    color: #007bff;
    transform: translateY(-2px);
}

/* 🔷 Active Menu Item */
.navbar-nav .nav-link.active {
    color: #007bff !important;
    border-bottom: 2px solid #007bff;
}

/* 🔷 Dropdown Arrow Effect */
.navbar-nav .dropdown-toggle::after {
    transition: all 0.3s ease-in-out;
}

.navbar-nav .dropdown-toggle:hover::after {
    transform: rotate(180deg);
}


/* Typing animation styles */
.typing-animation {
    display: inline-block;
    overflow: hidden;
    border-right: 2px solid #fff;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end),
               blink-caret .75s step-end infinite;
    margin: 0 auto;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #fff }
}

/* Custom styles for the carousel */
.carousel {
    background: #000;
    min-height: 100vh;
}

.carousel-inner {
    height: 100vh;
}

.carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.carousel-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.carousel-text {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.carousel-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.8s ease 0.2s;
    width: fit-content;
}

.carousel-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
}

.carousel-item.active .carousel-text {
    opacity: 1;
    transform: translateX(0);
}

.carousel-item.active .carousel-title {
    opacity: 1;
    transform: translateY(0);
}

.carousel-item.active .carousel-description {
    opacity: 1;
    transform: translateY(0);
}

.carousel-image {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease 0.6s;
    max-height: 70vh;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.carousel-item.active .carousel-image {
    opacity: 1;
    transform: translateX(0);
}

/* Loading animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading.hidden {
    display: none;
}

/* Banner styles */
.carousel-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-title {
        font-size: 2rem;
    }

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

    .carousel-image {
        max-height: 50vh;
        margin-top: 2rem;
    }
}

.stylish_heading {
    font-weight: bold;
    color: #000000;
    text-align: center;
    position: relative;
    letter-spacing: 2px;
    padding-bottom: 15px;
}
.stylish-heading {
    font-weight: bold;
    color: #000000;
    text-align: center;
    position: relative;
    letter-spacing: 2px;
    padding-bottom: 15px;
}

/* Underline with Gradient */
.stylish-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 50%;
    height: 5px;
    background: linear-gradient(90deg, #1d4175, #0a8ba0 , #1d4175);
    transform: translateX(-50%);
    border-radius: 5px;
}

/* Subtle text shadow */
.stylish-heading {
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}

.rcmsec{
    padding-top: 50px;
    padding-bottom: 50px;
}

.custom-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #1e3c72, #142c5a);
    
    color: white;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease;
    height: 100%;
}

.custom-card:hover {
    transform: translateY(-12px);  /* Moves the card upwards */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);  /* Increases shadow on hover */
    background: linear-gradient(135deg, #1e3c72, #00b4b8);
    color: #f0f0f0;
}

.custom-card .card-body {
    padding: 20px;
    text-align: center;
    
}

.custom-card .card-title {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
}

.custom-card .card-text {
    font-size: 16px;
    color: #f1f1f1;
}

/* Image Styling */
.custom-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.heattocon{
    padding: 25px 0px;
}

.box_saparator{
    margin-top: 10px;
    margin-bottom: 10px;
}

.features_body {
    background: linear-gradient(to right, #00a1e2, #2575fc);
    color: white;
}
.rcm-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    color: black;
}
.rcm-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.3);
}
.rcm-card img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.4s ease;
}
.rcm-card:hover img {
    transform: scale(1.1);
}
.rcm-card .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}
.rcm-card:hover .card-body {
    transform: translateY(0);
}
.header_box{
    position: relative;
}
.logo_sz{
    width: 285px;
    position: absolute;
    left: 0px;
    z-index: 9999;
}
.top_sec{
    background: linear-gradient(to right, #00a1e2, #0574a2);
    color: white;
}
.tx_wh{
    font-weight: bold;
  color: white;
  text-align: center;
  position: relative;
  letter-spacing: 2px;
  padding-bottom: 15px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    font-weight: 600;
}

/* Footer Styles */
.footer-section {
    background: #1a1a1a;
    color: #fff;
    padding-top: 70px;
    position: relative;
}

.footer-top {
    padding-bottom: 40px;
}

.footer-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
}

.footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-links a:hover {
    background: #007bff;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 2px;
    background: #007bff;
    bottom: 0;
    left: 0;
}

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

.footer-links ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.footer-links ul li i {
    font-size: 12px;
    color: #007bff;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li:hover i {
    margin-right: 15px;
}

.footer-links ul li:hover a {
    color: #fff;
    padding-left: 5px;
}

.footer-contact p {
    line-height: 26px;
}

.footer-contact p i {
    color: #007bff;
    margin-right: 10px;
}

.footer-newsletter form {
    position: relative;
    margin-top: 20px;
}

.footer-newsletter input[type="email"] {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 4px;
}

.footer-newsletter button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    border: 0;
    background: #007bff;
    color: #fff;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    transition: all 0.3s ease;
}

.footer-newsletter button:hover {
    background: #0056b3;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
}

.credits {
    text-align: right;
}

.credits a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-left: 20px;
    transition: all 0.3s ease;
}

.credits a:hover {
    color: #007bff;
}

@media (max-width: 768px) {
    .footer-newsletter,
    .footer-contact,
    .footer-links,
    .footer-info {
        margin-bottom: 30px;
    }
    
    .credits {
        text-align: center;
        margin-top: 20px;
    }
    
    .copyright {
        text-align: center;
    }
}

/* Partner Section Styles */
.partner-section {
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    position: relative;
    overflow: hidden;
}

.partner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23000" opacity="0.05"/></svg>');
    pointer-events: none;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d2ff);
    border-radius: 2px;
}

/* Custom Accordion Styles */
.custom-accordion .accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 15px;
}

.custom-accordion .accordion-button {
    background: white;
    border: none;
    border-radius: 10px !important;
    padding: 20px 25px;
    font-weight: 600;
    color: #1a1a1a;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.custom-accordion .accordion-button:hover {
    transform: translateX(10px);
}

.custom-accordion .accordion-body {
    padding: 20px 25px;
    background: white;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

/* Partner Image Styles */
.partner-image {
    position: relative;
}

.image-container {
    position: relative;
    padding: 20px;
}

.floating {
    animation: floating 3s ease-in-out infinite;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
    animation: pulse 2s infinite;
}

.experience-badge .number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-align: center;
}

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

/* Hover Effects */
.custom-accordion .accordion-button i {
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:hover i {
    transform: scale(1.2);
}

/* Add AOS animations */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }
    
    .partner-image {
        margin-top: 40px;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .custom-accordion .accordion-button {
        padding: 15px 20px;
    }
    
    .experience-badge {
        width: 80px;
        height: 80px;
        padding: 10px;
    }
    
    .experience-badge .number {
        font-size: 1.5rem;
    }
    
    .experience-badge .text {
        font-size: 0.8rem;
    }
}

/* RCM Solutions Section Styles */
.rcm-solutions-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

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

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.main-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d2ff);
    transform: translateX(-50%);
    border-radius: 2px;
}

.main-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.solution-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.solution-card:hover::before {
    opacity: 0.05;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.solution-card:hover .card-icon img {
    transform: scale(1.1) rotate(5deg);
}

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

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.card-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.learn-more {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.learn-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.learn-more:hover {
    color: #0056b3;
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .main-title {
        font-size: 2rem;
    }
    
    .solution-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 1.75rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
}

/* Medical Coding Section Styles */
.medical-coding-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.medical-coding-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("https://images.unsplash.com/photo-1451187863213-d1bcbaae3fa3?auto=format&amp;fit=crop&amp;w=1920&amp;q=80");
    pointer-events: none;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d2ff);
    border-radius: 2px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

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

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.icon-wrapper i {
    font-size: 28px;
    color: #007bff;
    transition: all 0.4s ease;
}

.feature-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.feature-card:hover .icon-wrapper i {
    color: white;
    transform: rotate(-10deg);
}

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

.content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hover-content {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    transition: all 0.4s ease;
    opacity: 0;
    z-index: 2;
}

.feature-card:hover .hover-content {
    bottom: 0;
    opacity: 1;
}

.learn-more-text {
    color: white;
    font-weight: 600;
    display: block;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .section-heading {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .section-heading {
        font-size: 1.75rem;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .icon-wrapper i {
        font-size: 24px;
    }
    
    .content h3 {
        font-size: 1.25rem;
    }
}

/* Get in Touch Section Styles */
.get-in-touch-section {
    position: relative;
    background: #0a1f44;
    overflow: hidden;
    padding: 100px 0;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0a1f44 0%, #1a3a6c 100%);
}

.animated-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2V6h4V4H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: backgroundMove 30s linear infinite;
}

@keyframes backgroundMove {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

.contact-content {
    color: white;
    padding-right: 50px;
}

.contact-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #7eb6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-item i {
    color: #00d2ff;
    font-size: 1.5rem;
}

.contact-card2 {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(0deg);
    transition: transform 0.5s ease;
}

.contact-card2:hover {
    transform: perspective(1000px) rotateY(5deg);
}

.card-title {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.form-floating > .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.form-floating > .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #00d2ff;
    box-shadow: 0 0 0 0.25rem rgba(0, 210, 255, 0.25);
}

.form-floating > label {
    color: rgba(255, 255, 255, 0.7);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: #00d2ff;
}

.submit-btn {
    width: 100%;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

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

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

.submit-btn:hover i {
    transform: translateX(5px) rotate(45deg);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .contact-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }

    .contact-title {
        font-size: 2.2rem;
    }

    .feature-item {
        justify-content: center;
    }
}

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

    .contact-card {
        padding: 25px;
    }
}
.wh_color{
    color: white;
}

/* About Banner Styles */
.about-banner {
    position: relative;
    min-height: 100vh;
    background: #0a1f44;
    overflow: hidden;
}

.banner-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1538108149393-fbbd81895907?auto=format&fit=crop&q=80') center/cover;
    filter: brightness(0.3);
    animation: zoomInOut 20s infinite alternate;
    z-index: 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,123,255,0.9) 0%, rgba(0,210,255,0.7) 100%);
    mix-blend-mode: overlay;
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    padding: 150px 0;
    color: white;
    text-align: center;
}

.banner-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInDown 0.6s ease forwards;
}

.badge-text {
    font-size: 1rem;
    font-weight: 500;
    color: #00d2ff;
    margin-right: 10px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #00d2ff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.banner-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.gradient-text {
    background: linear-gradient(45deg, #ffffff, #7eb6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.typing-text {
    position: relative;
    display: inline-block;
    font-size: 3.5rem;
    color: #ffffff;
    min-height: 80px;
}

.typing-text::after {
    content: '|';
    position: absolute;
    right: -10px;
    animation: blink 0.7s infinite;
}

.banner-description {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

.banner-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.feature {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 28px;
    color: #00d2ff;
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.feature:hover .feature-icon i {
    color: white;
}

.feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

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

.banner-cta {
    margin-top: 50px;
}

.btn-discover {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    color: white;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-discover::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

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

.btn-discover:hover::before {
    transform: rotate(45deg) translateY(300%);
}

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

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

.banner-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 2;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0,210,255,0.7);
    }
    70% {
        transform: scale(1);
        opacity: 0.7;
        box-shadow: 0 0 0 10px rgba(0,210,255,0);
    }
    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0,210,255,0);
    }
}

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

/* Responsive Styles */
@media (max-width: 991px) {
    .banner-title {
        font-size: 3.5rem;
    }
    
    .typing-text {
        font-size: 2.8rem;
    }
    
    .banner-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 2.8rem;
    }
    
    .typing-text {
        font-size: 2.2rem;
    }
    
    .banner-features {
        grid-template-columns: 1fr;
    }
    
    .banner-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .banner-title {
        font-size: 2.2rem;
    }
    
    .typing-text {
        font-size: 1.8rem;
    }
    
    .feature {
        padding: 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 24px;
    }
}

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

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

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(45deg, #007bff20, #00d2ff20);
    color: #007bff;
    border-radius: 30px;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    opacity: 0.1;
    border-radius: 30px;
    z-index: -1;
    animation: pulse 2s infinite;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Stats Container Styles */
.stats-container {
    margin-bottom: 60px;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-card:hover::before {
    opacity: 0.05;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.stat-icon i {
    font-size: 28px;
    color: #007bff;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.stat-card:hover .stat-icon i {
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    position: relative;
    z-index: 2;
}

/* Feature Box Styles */
.feature-box {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.feature-box:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-box:hover::before {
    opacity: 0.05;
}

.feature-box .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.feature-box .feature-icon i {
    font-size: 32px;
    color: #007bff;
    transition: all 0.4s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.feature-box:hover .feature-icon i {
    color: white;
    transform: rotate(-10deg);
}

.feature-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.feature-box p {
    color: #666;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.feature-box .hover-content {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    transition: all 0.4s ease;
    opacity: 0;
    z-index: 2;
}

.feature-box:hover .hover-content {
    bottom: 0;
    opacity: 1;
}

.feature-box .learn-more {
    color: white;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.feature-box .learn-more i {
    transition: transform 0.3s ease;
}

.feature-box:hover .learn-more i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .stat-card {
        margin-bottom: 30px;
    }
    
    .feature-box {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .stat-icon, .feature-box .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i, .feature-box .feature-icon i {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Mission & Vision Section Styles */
.mission-vision {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

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

.mission-card,
.vision-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

.mission-card:hover::before,
.vision-card:hover::before {
    opacity: 0.05;
}

.mission-card .card-icon,
.vision-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.mission-card .card-icon i,
.vision-card .card-icon i {
    font-size: 32px;
    color: #007bff;
    transition: all 0.4s ease;
}

.mission-card:hover .card-icon,
.vision-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.mission-card:hover .card-icon i,
.vision-card:hover .card-icon i {
    color: white;
    transform: rotate(-10deg);
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.mission-card p,
.vision-card p {
    color: #666;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    line-height: 1.6;
}

.mission-points,
.vision-points {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.mission-points li,
.vision-points li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #666;
    font-size: 1.1rem;
}

.mission-points li i,
.vision-points li i {
    color: #007bff;
    margin-right: 10px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-points li i,
.vision-card:hover .vision-points li i {
    transform: scale(1.2);
}

/* Value Cards */
.value-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.value-card .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.value-card .card-icon i {
    font-size: 28px;
    color: #007bff;
    transition: all 0.4s ease;
}

.value-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.value-card:hover .card-icon i {
    color: white;
    transform: rotate(-10deg);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.value-card p {
    color: #666;
    position: relative;
    z-index: 2;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .mission-card,
    .vision-card {
        margin-bottom: 30px;
    }
    
    .value-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .mission-card h3,
    .vision-card h3 {
        font-size: 1.5rem;
    }
    
    .mission-card p,
    .vision-card p,
    .mission-points li,
    .vision-points li {
        font-size: 1rem;
    }
    
    .value-card .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-card .card-icon i {
        font-size: 24px;
    }
}

/* Team Section Styles */
.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

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

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 30px;
}

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

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.team-card:hover .member-image img {
    transform: scale(1.1);
}

.social-links {
    position: absolute;
    top: 20px;
    right: -60px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.4s ease;
}

.team-card:hover .social-links {
    right: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-links a:hover {
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
    transform: scale(1.1);
}

.member-info {
    padding: 25px;
    text-align: center;
    position: relative;
}

.member-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #00d2ff);
    border-radius: 2px;
}

.member-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.member-info .position {
    display: block;
    font-size: 1rem;
    color: #007bff;
    margin-bottom: 8px;
    font-weight: 500;
}

.member-info .specialty {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

.view-all-btn:hover::before {
    transform: rotate(45deg) translateY(300%);
}

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

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

/* Responsive Adjustments */
@media (max-width: 991px) {
    .team-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .member-image img {
        height: 350px;
    }
    
    .member-info h3 {
        font-size: 1.3rem;
    }
    
    .member-info .position {
        font-size: 0.9rem;
    }
}
.our-services{
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Services Page Specific Styles */
.services-hero {
    position: relative;
    min-height: 100vh; /* Changed to 100vh */
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0; /* Removed padding */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1631217868264-e5b90bb7e133?auto=format&fit=crop&q=80') center/cover;
    opacity: 0.2;
    animation: scale 20s infinite alternate;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(41,128,185,0.9) 0%, rgba(52,152,219,0.8) 100%);
    mix-blend-mode: multiply;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh; /* Added */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    margin-bottom: 30px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.badge-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    margin-right: 10px;
    letter-spacing: 1px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards 0.3s;
}

.gradient-text {
    background: linear-gradient(45deg, #fff, #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards 0.6s;
}

/* Featured Services Section */
.featured-services {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(45deg, rgba(76,175,80,0.1), rgba(33,150,243,0.1));
    color: #4CAF50;
    border-radius: 30px;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.service-card-wrapper {
    perspective: 1000px;
    height: 400px;
}

.service-card {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-wrapper:hover .service-card {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-front {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-back {
    background: linear-gradient(135deg, #4CAF50, #2196F3);
    color: white;
    transform: rotateY(180deg);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(76,175,80,0.1), rgba(33,150,243,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 40px;
    color: #4CAF50;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
}

.card-front h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.card-front p {
    color: #666;
    text-align: center;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.service-features li i {
    margin-right: 10px;
    color: #fff;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
    color: white;
}

.learn-more-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

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

/* Service Process Section */
.service-process {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #4CAF50, #2196F3);
}

.timeline-item {
    display: flex;
    justify-content: flex-start;
    padding-bottom: 50px;
    width: 50%;
    position: relative;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    justify-content: flex-start;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: absolute;
    left: -30px;
    top: 0;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -30px;
}

.timeline-icon i {
    font-size: 24px;
    color: #4CAF50;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-left: 60px;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 60px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.timeline-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Appointment Section */
.appointment-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    position: relative;
    overflow: hidden;
}

.appointment-content {
    color: white;
    padding-right: 50px;
}

.appointment-content .section-title {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 30px;
}

.appointment-content .section-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    line-height: 1.8;
}

.appointment-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: white;
}

.feature-item i {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4CAF50;
}

.appointment-form {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.form-floating > .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}

.form-floating > .form-control:focus {
    background: rgba(255,255,255,0.15);
    border-color: #00d2ff;
    box-shadow: 0 0 0 0.25rem rgba(0, 210, 255, 0.25);
}

.form-floating > label {
    color: rgba(255,255,255,0.7);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: #00d2ff;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #4CAF50, #2196F3);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .service-card-wrapper {
        height: 350px;
        margin-bottom: 30px;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        margin-left: 0;
    }
    
    .timeline-icon {
        left: 0;
    }
    
    .timeline-content {
        margin-left: 90px;
    }
    
    .appointment-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .appointment-features {
        align-items: center;
    }
}

@media (max-width: 576px) {
    .services-hero {
        min-height: 70vh;
        padding: 60px 0;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-badge {
        padding: 8px 20px;
    }
    
    .badge-text {
        font-size: 1rem;
    }
    
    .service-card-wrapper {
        height: 300px;
    }
    
    .card-front,
    .card-back {
        padding: 30px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
    }
    
    .service-icon i {
        font-size: 32px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .appointment-form {
        padding: 30px;
    }
}

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

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

/* Doctors Page Styles */
.doctors-hero {
    position: relative;
    min-height: 100vh;
    background: #0a1f44;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctors-hero .hero-bg {
    background: url('https://images.unsplash.com/photo-1504813184591-01572f98c85f?auto=format&fit=crop&q=80') center/cover;
    opacity: 0.2;
}

/* Department Filter Styles */
.department-filter {
    background: #f8f9fa;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.filter-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    background: white;
    color: #1a1a1a;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
    transform: translateY(-2px);
}

/* Doctor Card Styles */
.doctor-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

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

.doctor-image {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.doctor-card:hover .doctor-image img {
    transform: scale(1.1);
}

.doctor-image .social-links {
    position: absolute;
    top: 20px;
    right: -60px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.4s ease;
}

.doctor-card:hover .social-links {
    right: 20px;
}

.doctor-image .social-links a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.doctor-image .social-links a:hover {
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
    transform: scale(1.1);
}

.doctor-info {
    padding: 25px;
    position: relative;
}

.department-badge {
    display: inline-block;
    padding: 6px 15px;
    background: linear-gradient(45deg, rgba(0,123,255,0.1), rgba(0,210,255,0.1));
    color: #007bff;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.doctor-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.doctor-info .position {
    display: block;
    font-size: 1rem;
    color: #007bff;
    margin-bottom: 8px;
    font-weight: 500;
}

.doctor-info .specialty {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.doctor-info .stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0,123,255,0.05);
    border-radius: 10px;
}

.doctor-info .stat {
    flex: 1;
    text-align: center;
}

.doctor-info .stat .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 5px;
}

.doctor-info .stat .label {
    font-size: 0.8rem;
    color: #666;
}

.appointment-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.appointment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
    color: white;
}

/* Expertise Section Styles */
.expertise-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.expertise-content .section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(45deg, rgba(0,123,255,0.1), rgba(0,210,255,0.1));
    color: #007bff;
    border-radius: 30px;
    font-weight: 500;
    margin-bottom: 20px;
}

.expertise-content .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.expertise-content .section-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.expertise-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.expertise-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.expertise-features .feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.expertise-features .feature-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, rgba(0,123,255,0.1), rgba(0,210,255,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #007bff;
    transition: all 0.3s ease;
}

.expertise-features .feature-item:hover i {
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
    transform: rotate(360deg);
}

.expertise-features .feature-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.expertise-features .feature-text p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.expertise-image {
    position: relative;
    padding: 20px;
}

.expertise-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.expertise-image .experience-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 20px rgba(0,123,255,0.3);
    animation: pulse 2s infinite;
}

.expertise-image .experience-badge .number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.expertise-image .experience-badge .text {
    font-size: 0.9rem;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .doctor-image {
        height: 350px;
    }
    
    .expertise-content .section-title {
        font-size: 2rem;
    }
    
    .expertise-image .experience-badge {
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: 20px;
    }
    
    .expertise-image .experience-badge .number {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .doctor-image {
        height: 300px;
    }
    
    .doctor-info {
        padding: 20px;
    }
    
    .doctor-info h3 {
        font-size: 1.3rem;
    }
    
    .expertise-content .section-title {
        font-size: 1.75rem;
    }
    
    .expertise-features .feature-item {
        padding: 15px;
    }
    
    .expertise-features .feature-item i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Emergency & Contact Page Styles */
.emergency-hero {
    position: relative;
    min-height: 100vh;
    background: #0a1f44;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emergency-hero .hero-bg {
    background: url('https://images.unsplash.com/photo-1587351021759-3e566b6af7cc?auto=format&fit=crop&q=80') center/cover;
    opacity: 0.2;
}

.emergency-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    background: rgba(255,0,0,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    margin-bottom: 30px;
}

.emergency-badge .badge-text {
    color: #ff4444;
    font-weight: 600;
    margin-right: 10px;
}

.emergency-badge .badge-pulse {
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    animation: emergencyPulse 1.5s infinite;
}

@keyframes emergencyPulse {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255,68,68,0.7);
    }
    70% {
        transform: scale(1);
        opacity: 0.7;
        box-shadow: 0 0 0 15px rgba(255,68,68,0);
    }
    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255,68,68,0);
    }
}

.emergency-contact-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.emergency-btn, .hotline-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.emergency-btn {
    background: #ff4444;
    color: white;
}

.hotline-btn {
    background: rgba(255,255,255,0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.emergency-btn:hover {
    background: #ff0000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,0,0,0.3);
    color: white;
}

.hotline-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    color: white;
}

/* Emergency Services Section */
.emergency-services {
    background: #f8f9fa;
}

.emergency-content .section-badge {
    color: #ff4444;
    background: rgba(255,68,68,0.1);
}

.emergency-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.emergency-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    color: #1a1a1a; /* Added to ensure text visibility */
}

.emergency-features .feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.emergency-features .feature-item i {
    width: 50px;
    height: 50px;
    min-width: 50px; /* Added to prevent icon shrinking */
    background: rgba(255,68,68,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ff4444;
    transition: all 0.3s ease;
}

.emergency-features .feature-text {
    flex: 1;
}

.emergency-features .feature-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.emergency-features .feature-text p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

/* Response Badge Styles */
.response-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 140px; /* Increased width */
    height: 140px; /* Increased height */
    background: #ff4444;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 20px rgba(255,68,68,0.3);
    animation: pulse 2s infinite;
    padding: 15px; /* Added padding */
}

.response-badge .number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px; /* Added margin */
}

.response-badge .text {
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.2;
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .response-badge {
        width: 120px;
        height: 120px;
        bottom: 20px;
        right: 20px;
        padding: 10px;
    }
    
    .response-badge .number {
        font-size: 2rem;
    }
    
    .response-badge .text {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .emergency-features .feature-item {
        padding: 20px;
    }
    
    .emergency-features .feature-item i {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1.2rem;
    }
    
    .response-badge {
        width: 100px;
        height: 100px;
        padding: 8px;
    }
    
    .response-badge .number {
        font-size: 1.75rem;
    }
    
    .response-badge .text {
        font-size: 0.7rem;
    }
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.contact-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255,68,68,0.1) 0%, rgba(33,150,243,0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.contact-card .card-icon i {
    font-size: 32px;
    background: linear-gradient(135deg, #ff4444, #2196f3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.contact-card:hover .card-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, #ff4444, #2196f3);
}

.contact-card:hover .card-icon i {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff4444;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-card a i {
    transition: transform 0.3s ease;
}

.contact-card a:hover {
    color: #ff0000;
}

.contact-card a:hover i {
    transform: translateX(5px);
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, #0a1f44 0%, #1a3a6c 100%);
    color: white;
}

.contact-form-content .section-badge {
    background: rgba(255,255,255,0.1);
    color: white;
}

.contact-form-content .section-title {
    color: white;
}

.contact-form-content .section-description {
    color: rgba(255,255,255,0.8);
}

.contact-form {
    margin-top: 40px;
}

.form-floating > .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}

.form-floating > .form-control:focus {
    background: rgba(255,255,255,0.15);
    border-color: #ff4444;
    box-shadow: 0 0 0 0.25rem rgba(255,68,68,0.25);
}

.form-floating > label {
    color: rgba(255,255,255,0.7);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: rgba(255,255,255,0.9);
}

.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .emergency-contact-buttons {
        flex-direction: column;
    }
    
    .response-badge {
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: 20px;
    }
    
    .response-badge .number {
        font-size: 2rem;
    }
    
    .contact-card {
        margin-bottom: 30px;
    }
    
    .map-container {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .emergency-features .feature-item {
        padding: 20px;
    }
    
    .emergency-features .feature-item i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .contact-card {
        padding: 30px;
    }
    
    .contact-card .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-card .card-icon i {
        font-size: 24px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .appointment-form {
        padding: 30px;
    }
}

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

/* Typing animation styles */
.typing-animation {
    display: inline-block;
    overflow: hidden;
    border-right: 2px solid #fff;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end),
               blink-caret .75s step-end infinite;
    margin: 0 auto;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #fff }
}

/* Custom styles for the carousel */
.carousel {
    background: #000;
    min-height: 100vh;
}

.carousel-inner {
    height: 100vh;
}

.carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.carousel-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.carousel-text {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.carousel-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.8s ease 0.2s;
    width: fit-content;
}

.carousel-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
}

.carousel-item.active .carousel-text {
    opacity: 1;
    transform: translateX(0);
}

.carousel-item.active .carousel-title {
    opacity: 1;
    transform: translateY(0);
}

.carousel-item.active .carousel-description {
    opacity: 1;
    transform: translateY(0);
}

.carousel-image {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease 0.6s;
    max-height: 70vh;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.carousel-item.active .carousel-image {
    opacity: 1;
    transform: translateX(0);
}

/* Loading animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading.hidden {
    display: none;
}

/* Banner styles */
.carousel-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-title {
        font-size: 2rem;
    }

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

    .carousel-image {
        max-height: 50vh;
        margin-top: 2rem;
    }
}

.stylish_heading {
    font-weight: bold;
    color: #000000;
    text-align: center;
    position: relative;
    letter-spacing: 2px;
    padding-bottom: 15px;
}
.stylish-heading {
    font-weight: bold;
    color: #000000;
    text-align: center;
    position: relative;
    letter-spacing: 2px;
    padding-bottom: 15px;
}

/* Underline with Gradient */
.stylish-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 50%;
    height: 5px;
    background: linear-gradient(90deg, #1d4175, #0a8ba0 , #1d4175);
    transform: translateX(-50%);
    border-radius: 5px;
}

/* Subtle text shadow */
.stylish-heading {
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}

.rcmsec{
    padding-top: 50px;
    padding-bottom: 50px;
}

.custom-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #1e3c72, #142c5a);
    
    color: white;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease;
    height: 100%;
}

.custom-card:hover {
    transform: translateY(-12px);  /* Moves the card upwards */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);  /* Increases shadow on hover */
    background: linear-gradient(135deg, #1e3c72, #00b4b8);
    color: #f0f0f0;
}

.custom-card .card-body {
    padding: 20px;
    text-align: center;
    
}

.custom-card .card-title {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
}

.custom-card .card-text {
    font-size: 16px;
    color: #f1f1f1;
}

/* Image Styling */
.custom-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.heattocon{
    padding: 25px 0px;
}

.box_saparator{
    margin-top: 10px;
    margin-bottom: 10px;
}

.features_body {
    background: linear-gradient(to right, #00a1e2, #2575fc);
    color: white;
}
.rcm-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    color: black;
}
.rcm-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.3);
}
.rcm-card img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.4s ease;
}
.rcm-card:hover img {
    transform: scale(1.1);
}
.rcm-card .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}
.rcm-card:hover .card-body {
    transform: translateY(0);
}
.header_box{
    position: relative;
}
.logo_sz{
    width: 285px;
    position: absolute;
    left: 0px;
    z-index: 9999;
}
.top_sec{
    background: linear-gradient(to right, #00a1e2, #0574a2);
    color: white;
}
.tx_wh{
    font-weight: bold;
  color: white;
  text-align: center;
  position: relative;
  letter-spacing: 2px;
  padding-bottom: 15px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    font-weight: 600;
}

/* Footer Styles */
.footer-section {
    background: #1a1a1a;
    color: #fff;
    padding-top: 70px;
    position: relative;
}

.footer-top {
    padding-bottom: 40px;
}

.footer-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
}

.footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-links a:hover {
    background: #007bff;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 2px;
    background: #007bff;
    bottom: 0;
    left: 0;
}

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

.footer-links ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.footer-links ul li i {
    font-size: 12px;
    color: #007bff;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li:hover i {
    margin-right: 15px;
}

.footer-links ul li:hover a {
    color: #fff;
    padding-left: 5px;
}

.footer-contact p {
    line-height: 26px;
}

.footer-contact p i {
    color: #007bff;
    margin-right: 10px;
}

.footer-newsletter form {
    position: relative;
    margin-top: 20px;
}

.footer-newsletter input[type="email"] {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 4px;
}

.footer-newsletter button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    border: 0;
    background: #007bff;
    color: #fff;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    transition: all 0.3s ease;
}

.footer-newsletter button:hover {
    background: #0056b3;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
}

.credits {
    text-align: right;
}

.credits a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-left: 20px;
    transition: all 0.3s ease;
}

.credits a:hover {
    color: #007bff;
}

@media (max-width: 768px) {
    .footer-newsletter,
    .footer-contact,
    .footer-links,
    .footer-info {
        margin-bottom: 30px;
    }
    
    .credits {
        text-align: center;
        margin-top: 20px;
    }
    
    .copyright {
        text-align: center;
    }
}

/* Partner Section Styles */
.partner-section {
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    position: relative;
    overflow: hidden;
}

.partner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23000" opacity="0.05"/></svg>');
    pointer-events: none;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d2ff);
    border-radius: 2px;
}

/* Custom Accordion Styles */
.custom-accordion .accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 15px;
}

.custom-accordion .accordion-button {
    background: white;
    border: none;
    border-radius: 10px !important;
    padding: 20px 25px;
    font-weight: 600;
    color: #1a1a1a;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.custom-accordion .accordion-button:hover {
    transform: translateX(10px);
}

.custom-accordion .accordion-body {
    padding: 20px 25px;
    background: white;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

/* Partner Image Styles */
.partner-image {
    position: relative;
}

.image-container {
    position: relative;
    padding: 20px;
}

.floating {
    animation: floating 3s ease-in-out infinite;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
    animation: pulse 2s infinite;
}

.experience-badge .number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-align: center;
}

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

/* Hover Effects */
.custom-accordion .accordion-button i {
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:hover i {
    transform: scale(1.2);
}

/* Add AOS animations */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }
    
    .partner-image {
        margin-top: 40px;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .custom-accordion .accordion-button {
        padding: 15px 20px;
    }
    
    .experience-badge {
        width: 80px;
        height: 80px;
        padding: 10px;
    }
    
    .experience-badge .number {
        font-size: 1.5rem;
    }
    
    .experience-badge .text {
        font-size: 0.8rem;
    }
}

/* RCM Solutions Section Styles */
.rcm-solutions-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

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

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.main-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d2ff);
    transform: translateX(-50%);
    border-radius: 2px;
}

.main-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.solution-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.solution-card:hover::before {
    opacity: 0.05;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.solution-card:hover .card-icon img {
    transform: scale(1.1) rotate(5deg);
}

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

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.card-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.learn-more {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.learn-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.learn-more:hover {
    color: #0056b3;
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .main-title {
        font-size: 2rem;
    }
    
    .solution-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 1.75rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
}

/* Medical Coding Section Styles */
.medical-coding-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.medical-coding-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("https://images.unsplash.com/photo-1451187863213-d1bcbaae3fa3?auto=format&amp;fit=crop&amp;w=1920&amp;q=80");
    pointer-events: none;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d2ff);
    border-radius: 2px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

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

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.icon-wrapper i {
    font-size: 28px;
    color: #007bff;
    transition: all 0.4s ease;
}

.feature-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.feature-card:hover .icon-wrapper i {
    color: white;
    transform: rotate(-10deg);
}

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

.content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hover-content {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    transition: all 0.4s ease;
    opacity: 0;
    z-index: 2;
}

.feature-card:hover .hover-content {
    bottom: 0;
    opacity: 1;
}

.learn-more-text {
    color: white;
    font-weight: 600;
    display: block;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .section-heading {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .section-heading {
        font-size: 1.75rem;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .icon-wrapper i {
        font-size: 24px;
    }
    
    .content h3 {
        font-size: 1.25rem;
    }
}

/* Get in Touch Section Styles */
.get-in-touch-section {
    position: relative;
    background: #0a1f44;
    overflow: hidden;
    padding: 100px 0;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0a1f44 0%, #1a3a6c 100%);
}

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

@keyframes backgroundMove {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

.contact-content {
    color: white;
    padding-right: 50px;
}

.contact-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #7eb6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-item i {
    color: #00d2ff;
    font-size: 1.5rem;
}

.contact-card2 {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(0deg);
    transition: transform 0.5s ease;
}

.contact-card2:hover {
    transform: perspective(1000px) rotateY(5deg);
}

.card-title {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.form-floating > .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.form-floating > .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #00d2ff;
    box-shadow: 0 0 0 0.25rem rgba(0, 210, 255, 0.25);
}

.form-floating > label {
    color: rgba(255, 255, 255, 0.7);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: #00d2ff;
}

.submit-btn {
    width: 100%;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

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

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

.submit-btn:hover i {
    transform: translateX(5px) rotate(45deg);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .contact-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }

    .contact-title {
        font-size: 2.2rem;
    }

    .feature-item {
        justify-content: center;
    }
}

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

    .contact-card {
        padding: 25px;
    }
}
.wh_color{
    color: white;
}

/* About Banner Styles */
.about-banner {
    position: relative;
    min-height: 100vh;
    background: #0a1f44;
    overflow: hidden;
}

.banner-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1538108149393-fbbd81895907?auto=format&fit=crop&q=80') center/cover;
    filter: brightness(0.3);
    animation: zoomInOut 20s infinite alternate;
    z-index: 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,123,255,0.9) 0%, rgba(0,210,255,0.7) 100%);
    mix-blend-mode: overlay;
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    padding: 150px 0;
    color: white;
    text-align: center;
}

.banner-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInDown 0.6s ease forwards;
}

.badge-text {
    font-size: 1rem;
    font-weight: 500;
    color: #00d2ff;
    margin-right: 10px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #00d2ff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.banner-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.gradient-text {
    background: linear-gradient(45deg, #ffffff, #7eb6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.typing-text {
    position: relative;
    display: inline-block;
    font-size: 3.5rem;
    color: #ffffff;
    min-height: 80px;
}

.typing-text::after {
    content: '|';
    position: absolute;
    right: -10px;
    animation: blink 0.7s infinite;
}

.banner-description {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

.banner-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.feature {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 28px;
    color: #00d2ff;
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.feature:hover .feature-icon i {
    color: white;
}

.feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

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

.banner-cta {
    margin-top: 50px;
}

.btn-discover {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    color: white;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-discover::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

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

.btn-discover:hover::before {
    transform: rotate(45deg) translateY(300%);
}

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

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

.banner-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 2;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0,210,255,0.7);
    }
    70% {
        transform: scale(1);
        opacity: 0.7;
        box-shadow: 0 0 0 10px rgba(0,210,255,0);
    }
    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0,210,255,0);
    }
}

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

/* Responsive Styles */
@media (max-width: 991px) {
    .banner-title {
        font-size: 3.5rem;
    }
    
    .typing-text {
        font-size: 2.8rem;
    }
    
    .banner-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 2.8rem;
    }
    
    .typing-text {
        font-size: 2.2rem;
    }
    
    .banner-features {
        grid-template-columns: 1fr;
    }
    
    .banner-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .banner-title {
        font-size: 2.2rem;
    }
    
    .typing-text {
        font-size: 1.8rem;
    }
    
    .feature {
        padding: 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 24px;
    }
}

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

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

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(45deg, #007bff20, #00d2ff20);
    color: #007bff;
    border-radius: 30px;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    opacity: 0.1;
    border-radius: 30px;
    z-index: -1;
    animation: pulse 2s infinite;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Stats Container Styles */
.stats-container {
    margin-bottom: 60px;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-card:hover::before {
    opacity: 0.05;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.stat-icon i {
    font-size: 28px;
    color: #007bff;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.stat-card:hover .stat-icon i {
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    position: relative;
    z-index: 2;
}

/* Feature Box Styles */
.feature-box {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.feature-box:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-box:hover::before {
    opacity: 0.05;
}

.feature-box .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.feature-box .feature-icon i {
    font-size: 32px;
    color: #007bff;
    transition: all 0.4s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.feature-box:hover .feature-icon i {
    color: white;
    transform: rotate(-10deg);
}

.feature-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.feature-box p {
    color: #666;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.feature-box .hover-content {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    transition: all 0.4s ease;
    opacity: 0;
    z-index: 2;
}

.feature-box:hover .hover-content {
    bottom: 0;
    opacity: 1;
}

.feature-box .learn-more {
    color: white;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.feature-box .learn-more i {
    transition: transform 0.3s ease;
}

.feature-box:hover .learn-more i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .stat-card {
        margin-bottom: 30px;
    }
    
    .feature-box {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .stat-icon, .feature-box .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i, .feature-box .feature-icon i {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Mission & Vision Section Styles */
.mission-vision {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

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

.mission-card,
.vision-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

.mission-card:hover::before,
.vision-card:hover::before {
    opacity: 0.05;
}

.mission-card .card-icon,
.vision-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.mission-card .card-icon i,
.vision-card .card-icon i {
    font-size: 32px;
    color: #007bff;
    transition: all 0.4s ease;
}

.mission-card:hover .card-icon,
.vision-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.mission-card:hover .card-icon i,
.vision-card:hover .card-icon i {
    color: white;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.mission-card p,
.vision-card p {
    color: #666;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .mission-card,
    .vision-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .mission-card .card-icon,
    .vision-card .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .mission-card .card-icon i,
    .vision-card .card-icon i {
        font-size: 24px;
    }
}

/* Testimonials Section Styles */
.testimonials {
    padding: 100px 0;
    background: #f8f9fa;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-card:hover::before {
    opacity: 0.05;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 20px;
    overflow: hidden;
}

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

.author-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.author-title {
    font-size: 1rem;
    color: #666;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1.2rem;
}

.testimonial-rating span {
    font-size: 1rem;
    color: #666;
}

@media (max-width: 991px) {
    .testimonial-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .author-avatar {
        margin-bottom: 10px;
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.contact-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

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

.form-control {
    background: white;
    border: 1px solid #ced4da;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.submit-btn {
    width: 100%;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

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

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

.submit-btn:hover i {
    transform: translateX(5px) rotate(45deg);
}

@media (max-width: 991px) {
    .contact-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }

    .contact-title {
        font-size: 2.2rem;
    }

    .feature-item {
        justify-content: center;
    }
}

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

    .contact-card {
        padding: 25px;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }
}

/* Footer Styles */
.footer-section {
    background: #1a1a1a;
    color: #fff;
    padding: 50px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo span {
    color: #00d2ff;
    font-size: 1.5rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00d2ff;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-social a {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #00d2ff;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #888;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Navbar Styles */
.navbar {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-right: 30px;
}

.navbar-brand span {
    color: #007bff;
}

.navbar-nav .nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #007bff;
}

.navbar-nav .nav-link.active {
    color: #007bff;
    border-bottom: 2px solid #007bff;
}

.navbar-toggler {
    border: none;
    outline: none;
    cursor: pointer;
}

.navbar-toggler-icon {
    font-size: 1.2rem;
    color: #1a1a1a;
}

@media (max-width: 991px) {
    .navbar-nav {
        display: none;
    }
    
    .navbar-nav.show {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        background: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        position: absolute;
        top: 100%;
        right: 0;
        margin-top: 10px;
    }
    
    .navbar-nav.show .nav-link {
        margin-bottom: 10px;
    }
}

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

@keyframes backgroundMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0,210,255,0.7);
    }
    70% {
        transform: scale(1);
        opacity: 0.7;
        box-shadow: 0 0 0 10px rgba(0,210,255,0);
    }
    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0,210,255,0);
    }
}

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

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

/* Dermatology Page Styles */
.derm-hero {
    position: relative;
    min-height: 100vh;
    padding: 100px 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

.derm-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1612776572997-76cc42e058c3?auto=format&fit=crop&q=80') center/cover no-repeat;
    opacity: 0.15;
    z-index: 1;
}

.derm-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #1a1a1a;
}

.derm-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.derm-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.derm-hero-btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    color: white;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.derm-hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

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

.derm-hero-btn i {
    margin-right: 10px;
    transition: transform 0.3s ease;
}

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

.derm-services {
    padding: 100px 0;
    background: #f8f9fa;
}

.derm-services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.derm-service-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.derm-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.derm-service-card:hover {
    transform: translateY(-10px);
}

.derm-service-card:hover::before {
    opacity: 0.05;
}

.derm-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.derm-service-icon i {
    font-size: 28px;
    color: #007bff;
    transition: all 0.3s ease;
}

.derm-service-card:hover .derm-service-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.derm-service-card:hover .derm-service-icon i {
    color: white;
}

.derm-service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-align: center;
}

.derm-service-description {
    font-size: 1rem;
    color: #666;
    text-align: center;
}

.derm-features {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.derm-features-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&q=80') center/cover no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.derm-features-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #1a1a1a;
}

.derm-features-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.derm-features-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.derm-feature-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.derm-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.derm-feature-card:hover {
    transform: translateY(-10px);
}

.derm-feature-card:hover::before {
    opacity: 0.05;
}

.derm-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.derm-feature-icon i {
    font-size: 28px;
    color: #007bff;
    transition: all 0.3s ease;
}

.derm-feature-card:hover .derm-feature-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.derm-feature-card:hover .derm-feature-icon i {
    color: white;
}

.derm-feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-align: center;
}

.derm-feature-description {
    font-size: 1rem;
    color: #666;
    text-align: center;
}

.derm-programs {
    padding: 100px 0;
    background: #f8f9fa;
}

.derm-programs-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.derm-program-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.derm-program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.derm-program-card:hover {
    transform: translateY(-10px);
}

.derm-program-card:hover::before {
    opacity: 0.05;
}

.derm-program-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.derm-program-icon i {
    font-size: 28px;
    color: #007bff;
    transition: all 0.3s ease;
}

.derm-program-card:hover .derm-program-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.derm-program-card:hover .derm-program-icon i {
    color: white;
}

.derm-program-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-align: center;
}

.derm-program-description {
    font-size: 1rem;
    color: #666;
    text-align: center;
}

.derm-contact {
    padding: 100px 0;
    background: #f8f9fa;
}

.derm-contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.derm-contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.derm-contact-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.derm-contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.derm-form-group {
    margin-bottom: 20px;
}

.derm-form-control {
    background: white;
    border: 1px solid #ced4da;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

.derm-form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.derm-form-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.derm-submit-btn {
    width: 100%;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.derm-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

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

.derm-submit-btn i {
    transition: transform 0.3s ease;
}

.derm-submit-btn:hover i {
    transform: translateX(5px) rotate(45deg);
}

@media (max-width: 991px) {
    .derm-contact-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }

    .derm-contact-title {
        font-size: 2.2rem;
    }

    .derm-feature-item {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .derm-contact-title {
        font-size: 1.8rem;
    }

    .derm-contact-card {
        padding: 25px;
    }

    .derm-contact-form {
        grid-template-columns: 1fr;
    }
}

/* Anesthesia Page Styles */
.anes-hero {
    position: relative;
    min-height: 100vh;
    padding: 100px 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

.anes-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&q=80') center/cover no-repeat;
    opacity: 0.15;
    z-index: 1;
}

.anes-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #1a1a1a;
}

.anes-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.anes-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.anes-hero-btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    color: white;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.anes-hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

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

.anes-hero-btn i {
    margin-right: 10px;
    transition: transform 0.3s ease;
}

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

.anes-services {
    padding: 100px 0;
    background: #f8f9fa;
}

.anes-services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.anes-service-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.anes-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.anes-service-card:hover {
    transform: translateY(-10px);
}

.anes-service-card:hover::before {
    opacity: 0.05;
}

.anes-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.anes-service-icon i {
    font-size: 28px;
    color: #007bff;
    transition: all 0.3s ease;
}

.anes-service-card:hover .anes-service-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.anes-service-card:hover .anes-service-icon i {
    color: white;
}

.anes-service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-align: center;
}

.anes-service-description {
    font-size: 1rem;
    color: #666;
    text-align: center;
}

.anes-features {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.anes-features-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&q=80') center/cover no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.anes-features-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #1a1a1a;
}

.anes-features-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.anes-features-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.anes-feature-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.anes-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.anes-feature-card:hover {
    transform: translateY(-10px);
}

.anes-feature-card:hover::before {
    opacity: 0.05;
}

.anes-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}
/* Typing animation styles */
.typing-animation {
    display: inline-block;
    overflow: hidden;
    border-right: 2px solid #fff;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end),
               blink-caret .75s step-end infinite;
    margin: 0 auto;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #fff }
}

/* Custom styles for the carousel */
.carousel {
    background: #000;
    min-height: 100vh;
}

.carousel-inner {
    height: 100vh;
}

.carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.carousel-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.carousel-text {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.carousel-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.8s ease 0.2s;
    width: fit-content;
}

.carousel-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
}

.carousel-item.active .carousel-text {
    opacity: 1;
    transform: translateX(0);
}

.carousel-item.active .carousel-title {
    opacity: 1;
    transform: translateY(0);
}

.carousel-item.active .carousel-description {
    opacity: 1;
    transform: translateY(0);
}

.carousel-image {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease 0.6s;
    max-height: 70vh;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.carousel-item.active .carousel-image {
    opacity: 1;
    transform: translateX(0);
}

/* Loading animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading.hidden {
    display: none;
}

/* Banner styles */
.carousel-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-title {
        font-size: 2rem;
    }

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

    .carousel-image {
        max-height: 50vh;
        margin-top: 2rem;
    }
}

.stylish_heading {
    font-weight: bold;
    color: #000000;
    text-align: center;
    position: relative;
    letter-spacing: 2px;
    padding-bottom: 15px;
}
.stylish-heading {
    font-weight: bold;
    color: #000000;
    text-align: center;
    position: relative;
    letter-spacing: 2px;
    padding-bottom: 15px;
}

/* Underline with Gradient */
.stylish-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 50%;
    height: 5px;
    background: linear-gradient(90deg, #1d4175, #0a8ba0 , #1d4175);
    transform: translateX(-50%);
    border-radius: 5px;
}

/* Subtle text shadow */
.stylish-heading {
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}

.rcmsec{
    padding-top: 50px;
    padding-bottom: 50px;
}

.custom-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #1e3c72, #142c5a);
    
    color: white;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease;
    height: 100%;
}

.custom-card:hover {
    transform: translateY(-12px);  /* Moves the card upwards */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);  /* Increases shadow on hover */
    background: linear-gradient(135deg, #1e3c72, #00b4b8);
    color: #f0f0f0;
}

.custom-card .card-body {
    padding: 20px;
    text-align: center;
    
}

.custom-card .card-title {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
}

.custom-card .card-text {
    font-size: 16px;
    color: #f1f1f1;
}

/* Image Styling */
.custom-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.heattocon{
    padding: 25px 0px;
}

.box_saparator{
    margin-top: 10px;
    margin-bottom: 10px;
}

.features_body {
    background: linear-gradient(to right, #00a1e2, #2575fc);
    color: white;
}
.rcm-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    color: black;
}
.rcm-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.3);
}
.rcm-card img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.4s ease;
}
.rcm-card:hover img {
    transform: scale(1.1);
}
.rcm-card .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}
.rcm-card:hover .card-body {
    transform: translateY(0);
}
.header_box{
    position: relative;
}
.logo_sz{
    width: 285px;
    position: absolute;
    left: 0px;
    z-index: 9999;
}
.top_sec{
    background: linear-gradient(to right, #00a1e2, #0574a2);
    color: white;
}
.tx_wh{
    font-weight: bold;
  color: white;
  text-align: center;
  position: relative;
  letter-spacing: 2px;
  padding-bottom: 15px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    font-weight: 600;
}

/* Footer Styles */
.footer-section {
    background: #1a1a1a;
    color: #fff;
    padding-top: 70px;
    position: relative;
}

.footer-top {
    padding-bottom: 40px;
}

.footer-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
}

.footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-links a:hover {
    background: #007bff;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 2px;
    background: #007bff;
    bottom: 0;
    left: 0;
}

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

.footer-links ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.footer-links ul li i {
    font-size: 12px;
    color: #007bff;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li:hover i {
    margin-right: 15px;
}

.footer-links ul li:hover a {
    color: #fff;
    padding-left: 5px;
}

.footer-contact p {
    line-height: 26px;
}

.footer-contact p i {
    color: #007bff;
    margin-right: 10px;
}

.footer-newsletter form {
    position: relative;
    margin-top: 20px;
}

.footer-newsletter input[type="email"] {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 4px;
}

.footer-newsletter button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    border: 0;
    background: #007bff;
    color: #fff;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    transition: all 0.3s ease;
}

.footer-newsletter button:hover {
    background: #0056b3;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
}

.credits {
    text-align: right;
}

.credits a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-left: 20px;
    transition: all 0.3s ease;
}

.credits a:hover {
    color: #007bff;
}

@media (max-width: 768px) {
    .footer-newsletter,
    .footer-contact,
    .footer-links,
    .footer-info {
        margin-bottom: 30px;
    }
    
    .credits {
        text-align: center;
        margin-top: 20px;
    }
    
    .copyright {
        text-align: center;
    }
}

/* Partner Section Styles */
.partner-section {
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    position: relative;
    overflow: hidden;
}

.partner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23000" opacity="0.05"/></svg>');
    pointer-events: none;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d2ff);
    border-radius: 2px;
}

/* Custom Accordion Styles */
.custom-accordion .accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 15px;
}

.custom-accordion .accordion-button {
    background: white;
    border: none;
    border-radius: 10px !important;
    padding: 20px 25px;
    font-weight: 600;
    color: #1a1a1a;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.custom-accordion .accordion-button:hover {
    transform: translateX(10px);
}

.custom-accordion .accordion-body {
    padding: 20px 25px;
    background: white;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

/* Partner Image Styles */
.partner-image {
    position: relative;
}

.image-container {
    position: relative;
    padding: 20px;
}

.floating {
    animation: floating 3s ease-in-out infinite;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
    animation: pulse 2s infinite;
}

.experience-badge .number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-align: center;
}

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

/* Hover Effects */
.custom-accordion .accordion-button i {
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:hover i {
    transform: scale(1.2);
}

/* Add AOS animations */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }
    
    .partner-image {
        margin-top: 40px;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .custom-accordion .accordion-button {
        padding: 15px 20px;
    }
    
    .experience-badge {
        width: 80px;
        height: 80px;
        padding: 10px;
    }
    
    .experience-badge .number {
        font-size: 1.5rem;
    }
    
    .experience-badge .text {
        font-size: 0.8rem;
    }
}

/* RCM Solutions Section Styles */
.rcm-solutions-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

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

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.main-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d2ff);
    transform: translateX(-50%);
    border-radius: 2px;
}

.main-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.solution-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.solution-card:hover::before {
    opacity: 0.05;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.solution-card:hover .card-icon img {
    transform: scale(1.1) rotate(5deg);
}

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

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.card-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.learn-more {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.learn-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.learn-more:hover {
    color: #0056b3;
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .main-title {
        font-size: 2rem;
    }
    
    .solution-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 1.75rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
}

/* Medical Coding Section Styles */
.medical-coding-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.medical-coding-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("https://images.unsplash.com/photo-1451187863213-d1bcbaae3fa3?auto=format&amp;fit=crop&amp;w=1920&amp;q=80");
    pointer-events: none;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d2ff);
    border-radius: 2px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

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

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.icon-wrapper i {
    font-size: 28px;
    color: #007bff;
    transition: all 0.4s ease;
}

.feature-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.feature-card:hover .icon-wrapper i {
    color: white;
    transform: rotate(-10deg);
}

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

.content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hover-content {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    transition: all 0.4s ease;
    opacity: 0;
    z-index: 2;
}

.feature-card:hover .hover-content {
    bottom: 0;
    opacity: 1;
}

.learn-more-text {
    color: white;
    font-weight: 600;
    display: block;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .section-heading {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .section-heading {
        font-size: 1.75rem;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .icon-wrapper i {
        font-size: 24px;
    }
    
    .content h3 {
        font-size: 1.25rem;
    }
}

/* Get in Touch Section Styles */
.get-in-touch-section {
    position: relative;
    background: #0a1f44;
    overflow: hidden;
    padding: 100px 0;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0a1f44 0%, #1a3a6c 100%);
}

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

@keyframes backgroundMove {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

.contact-content {
    color: white;
    padding-right: 50px;
}

.contact-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #7eb6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-item i {
    color: #00d2ff;
    font-size: 1.5rem;
}

.contact-card2 {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(0deg);
    transition: transform 0.5s ease;
}

.contact-card2:hover {
    transform: perspective(1000px) rotateY(5deg);
}

.card-title {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.form-floating > .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.form-floating > .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #00d2ff;
    box-shadow: 0 0 0 0.25rem rgba(0, 210, 255, 0.25);
}

.form-floating > label {
    color: rgba(255, 255, 255, 0.7);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: #00d2ff;
}

.submit-btn {
    width: 100%;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

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

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

.submit-btn:hover i {
    transform: translateX(5px) rotate(45deg);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .contact-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }

    .contact-title {
        font-size: 2.2rem;
    }

    .feature-item {
        justify-content: center;
    }
}

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

    .contact-card {
        padding: 25px;
    }
}
.wh_color{
    color: white;
}

/* About Banner Styles */
.about-banner {
    position: relative;
    min-height: 100vh;
    background: #0a1f44;
    overflow: hidden;
}

.banner-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1538108149393-fbbd81895907?auto=format&fit=crop&q=80') center/cover;
    filter: brightness(0.3);
    animation: zoomInOut 20s infinite alternate;
    z-index: 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,123,255,0.9) 0%, rgba(0,210,255,0.7) 100%);
    mix-blend-mode: overlay;
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    padding: 150px 0;
    color: white;
    text-align: center;
}

.banner-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInDown 0.6s ease forwards;
}

.badge-text {
    font-size: 1rem;
    font-weight: 500;
    color: #00d2ff;
    margin-right: 10px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #00d2ff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.banner-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.gradient-text {
    background: linear-gradient(45deg, #ffffff, #7eb6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.typing-text {
    position: relative;
    display: inline-block;
    font-size: 3.5rem;
    color: #ffffff;
    min-height: 80px;
}

.typing-text::after {
    content: '|';
    position: absolute;
    right: -10px;
    animation: blink 0.7s infinite;
}

.banner-description {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

.banner-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.feature {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 28px;
    color: #00d2ff;
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.feature:hover .feature-icon i {
    color: white;
}

.feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

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

.banner-cta {
    margin-top: 50px;
}

.btn-discover {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    color: white;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-discover::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

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

.btn-discover:hover::before {
    transform: rotate(45deg) translateY(300%);
}

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

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

.banner-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 2;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0,210,255,0.7);
    }
    70% {
        transform: scale(1);
        opacity: 0.7;
        box-shadow: 0 0 0 10px rgba(0,210,255,0);
    }
    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0,210,255,0);
    }
}

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

/* Responsive Styles */
@media (max-width: 991px) {
    .banner-title {
        font-size: 3.5rem;
    }
    
    .typing-text {
        font-size: 2.8rem;
    }
    
    .banner-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 2.8rem;
    }
    
    .typing-text {
        font-size: 2.2rem;
    }
    
    .banner-features {
        grid-template-columns: 1fr;
    }
    
    .banner-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .banner-title {
        font-size: 2.2rem;
    }
    
    .typing-text {
        font-size: 1.8rem;
    }
    
    .feature {
        padding: 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 24px;
    }
}

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

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

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(45deg, #007bff20, #00d2ff20);
    color: #007bff;
    border-radius: 30px;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    opacity: 0.1;
    border-radius: 30px;
    z-index: -1;
    animation: pulse 2s infinite;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Stats Container Styles */
.stats-container {
    margin-bottom: 60px;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-card:hover::before {
    opacity: 0.05;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.stat-icon i {
    font-size: 28px;
    color: #007bff;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.stat-card:hover .stat-icon i {
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    position: relative;
    z-index: 2;
}

/* Feature Box Styles */
.feature-box {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.feature-box:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-box:hover::before {
    opacity: 0.05;
}

.feature-box .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.feature-box .feature-icon i {
    font-size: 32px;
    color: #007bff;
    transition: all 0.4s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.feature-box:hover .feature-icon i {
    color: white;
    transform: rotate(-10deg);
}

.feature-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.feature-box p {
    color: #666;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.feature-box .hover-content {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    transition: all 0.4s ease;
    opacity: 0;
    z-index: 2;
}

.feature-box:hover .hover-content {
    bottom: 0;
    opacity: 1;
}

.feature-box .learn-more {
    color: white;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.feature-box .learn-more i {
    transition: transform 0.3s ease;
}

.feature-box:hover .learn-more i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .stat-card {
        margin-bottom: 30px;
    }
    
    .feature-box {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .stat-icon, .feature-box .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i, .feature-box .feature-icon i {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Mission & Vision Section Styles */
.mission-vision {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

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

.mission-card,
.vision-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

.mission-card:hover::before,
.vision-card:hover::before {
    opacity: 0.05;
}

.mission-card .card-icon,
.vision-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.mission-card .card-icon i,
.vision-card .card-icon i {
    font-size: 32px;
    color: #007bff;
    transition: all 0.4s ease;
}

.mission-card:hover .card-icon,
.vision-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.mission-card:hover .card-icon i,
.vision-card:hover .card-icon i {
    color: white;
    transform: rotate(-10deg);
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.mission-card p,
.vision-card p {
    color: #666;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    line-height: 1.6;
}

.mission-points,
.vision-points {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.mission-points li,
.vision-points li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #666;
    font-size: 1.1rem;
}

.mission-points li i,
.vision-points li i {
    color: #007bff;
    margin-right: 10px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-points li i,
.vision-card:hover .vision-points li i {
    transform: scale(1.2);
}

/* Value Cards */
.value-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.value-card .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.value-card .card-icon i {
    font-size: 28px;
    color: #007bff;
    transition: all 0.4s ease;
}

.value-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.value-card:hover .card-icon i {
    color: white;
    transform: rotate(-10deg);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.value-card p {
    color: #666;
    position: relative;
    z-index: 2;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .mission-card,
    .vision-card {
        margin-bottom: 30px;
    }
    
    .value-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .mission-card h3,
    .vision-card h3 {
        font-size: 1.5rem;
    }
    
    .mission-card p,
    .vision-card p,
    .mission-points li,
    .vision-points li {
        font-size: 1rem;
    }
    
    .value-card .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-card .card-icon i {
        font-size: 24px;
    }
}

/* Team Section Styles */
.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

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

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 30px;
}

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

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.team-card:hover .member-image img {
    transform: scale(1.1);
}

.social-links {
    position: absolute;
    top: 20px;
    right: -60px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.4s ease;
}

.team-card:hover .social-links {
    right: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-links a:hover {
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
    transform: scale(1.1);
}

.member-info {
    padding: 25px;
    text-align: center;
    position: relative;
}

.member-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #00d2ff);
    border-radius: 2px;
}

.member-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.member-info .position {
    display: block;
    font-size: 1rem;
    color: #007bff;
    margin-bottom: 8px;
    font-weight: 500;
}

.member-info .specialty {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

.view-all-btn:hover::before {
    transform: rotate(45deg) translateY(300%);
}

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

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

/* Responsive Adjustments */
@media (max-width: 991px) {
    .team-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .member-image img {
        height: 350px;
    }
    
    .member-info h3 {
        font-size: 1.3rem;
    }
    
    .member-info .position {
        font-size: 0.9rem;
    }
}
.our-services{
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Services Page Specific Styles */
.services-hero {
    position: relative;
    min-height: 100vh; /* Changed to 100vh */
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0; /* Removed padding */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1631217868264-e5b90bb7e133?auto=format&fit=crop&q=80') center/cover;
    opacity: 0.2;
    animation: scale 20s infinite alternate;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(41,128,185,0.9) 0%, rgba(52,152,219,0.8) 100%);
    mix-blend-mode: multiply;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh; /* Added */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    margin-bottom: 30px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.badge-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    margin-right: 10px;
    letter-spacing: 1px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards 0.3s;
}

.gradient-text {
    background: linear-gradient(45deg, #fff, #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards 0.6s;
}

/* Featured Services Section */
.featured-services {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(45deg, rgba(76,175,80,0.1), rgba(33,150,243,0.1));
    color: #4CAF50;
    border-radius: 30px;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.service-card-wrapper {
    perspective: 1000px;
    height: 400px;
}

.service-card {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-wrapper:hover .service-card {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-front {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-back {
    background: linear-gradient(135deg, #4CAF50, #2196F3);
    color: white;
    transform: rotateY(180deg);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(76,175,80,0.1), rgba(33,150,243,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 40px;
    color: #4CAF50;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
}

.card-front h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.card-front p {
    color: #666;
    text-align: center;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.service-features li i {
    margin-right: 10px;
    color: #fff;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
    color: white;
}

.learn-more-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

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

/* Service Process Section */
.service-process {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #4CAF50, #2196F3);
}

.timeline-item {
    display: flex;
    justify-content: flex-start;
    padding-bottom: 50px;
    width: 50%;
    position: relative;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    justify-content: flex-start;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: absolute;
    left: -30px;
    top: 0;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -30px;
}

.timeline-icon i {
    font-size: 24px;
    color: #4CAF50;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-left: 60px;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 60px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.timeline-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Appointment Section */
.appointment-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    position: relative;
    overflow: hidden;
}

.appointment-content {
    color: white;
    padding-right: 50px;
}

.appointment-content .section-title {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 30px;
}

.appointment-content .section-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    line-height: 1.8;
}

.appointment-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: white;
}

.feature-item i {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4CAF50;
}

.appointment-form {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.form-floating > .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}

.form-floating > .form-control:focus {
    background: rgba(255,255,255,0.15);
    border-color: #00d2ff;
    box-shadow: 0 0 0 0.25rem rgba(0, 210, 255, 0.25);
}

.form-floating > label {
    color: rgba(255,255,255,0.7);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: #00d2ff;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #4CAF50, #2196F3);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .service-card-wrapper {
        height: 350px;
        margin-bottom: 30px;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        margin-left: 0;
    }
    
    .timeline-icon {
        left: 0;
    }
    
    .timeline-content {
        margin-left: 90px;
    }
    
    .appointment-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .appointment-features {
        align-items: center;
    }
}

@media (max-width: 576px) {
    .services-hero {
        min-height: 70vh;
        padding: 60px 0;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-badge {
        padding: 8px 20px;
    }
    
    .badge-text {
        font-size: 1rem;
    }
    
    .service-card-wrapper {
        height: 300px;
    }
    
    .card-front,
    .card-back {
        padding: 30px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
    }
    
    .service-icon i {
        font-size: 32px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .appointment-form {
        padding: 30px;
    }
}

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

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

/* Doctors Page Styles */
.doctors-hero {
    position: relative;
    min-height: 100vh;
    background: #0a1f44;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctors-hero .hero-bg {
    background: url('https://images.unsplash.com/photo-1504813184591-01572f98c85f?auto=format&fit=crop&q=80') center/cover;
    opacity: 0.2;
}

/* Department Filter Styles */
.department-filter {
    background: #f8f9fa;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.filter-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    background: white;
    color: #1a1a1a;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
    transform: translateY(-2px);
}

/* Doctor Card Styles */
.doctor-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

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

.doctor-image {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.doctor-card:hover .doctor-image img {
    transform: scale(1.1);
}

.doctor-image .social-links {
    position: absolute;
    top: 20px;
    right: -60px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.4s ease;
}

.doctor-card:hover .social-links {
    right: 20px;
}

.doctor-image .social-links a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.doctor-image .social-links a:hover {
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
    transform: scale(1.1);
}

.doctor-info {
    padding: 25px;
    position: relative;
}

.department-badge {
    display: inline-block;
    padding: 6px 15px;
    background: linear-gradient(45deg, rgba(0,123,255,0.1), rgba(0,210,255,0.1));
    color: #007bff;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.doctor-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.doctor-info .position {
    display: block;
    font-size: 1rem;
    color: #007bff;
    margin-bottom: 8px;
    font-weight: 500;
}

.doctor-info .specialty {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.doctor-info .stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0,123,255,0.05);
    border-radius: 10px;
}

.doctor-info .stat {
    flex: 1;
    text-align: center;
}

.doctor-info .stat .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 5px;
}

.doctor-info .stat .label {
    font-size: 0.8rem;
    color: #666;
}

.appointment-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.appointment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
    color: white;
}

/* Expertise Section Styles */
.expertise-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.expertise-content .section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(45deg, rgba(0,123,255,0.1), rgba(0,210,255,0.1));
    color: #007bff;
    border-radius: 30px;
    font-weight: 500;
    margin-bottom: 20px;
}

.expertise-content .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.expertise-content .section-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.expertise-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.expertise-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.expertise-features .feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.expertise-features .feature-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, rgba(0,123,255,0.1), rgba(0,210,255,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #007bff;
    transition: all 0.3s ease;
}

.expertise-features .feature-item:hover i {
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
    transform: rotate(360deg);
}

.expertise-features .feature-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.expertise-features .feature-text p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.expertise-image {
    position: relative;
    padding: 20px;
}

.expertise-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.expertise-image .experience-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 20px rgba(0,123,255,0.3);
    animation: pulse 2s infinite;
}

.expertise-image .experience-badge .number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.expertise-image .experience-badge .text {
    font-size: 0.9rem;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .doctor-image {
        height: 350px;
    }
    
    .expertise-content .section-title {
        font-size: 2rem;
    }
    
    .expertise-image .experience-badge {
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: 20px;
    }
    
    .expertise-image .experience-badge .number {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .doctor-image {
        height: 300px;
    }
    
    .doctor-info {
        padding: 20px;
    }
    
    .doctor-info h3 {
        font-size: 1.3rem;
    }
    
    .expertise-content .section-title {
        font-size: 1.75rem;
    }
    
    .expertise-features .feature-item {
        padding: 15px;
    }
    
    .expertise-features .feature-item i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Emergency & Contact Page Styles */
.emergency-hero {
    position: relative;
    min-height: 100vh;
    background: #0a1f44;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emergency-hero .hero-bg {
    background: url('https://images.unsplash.com/photo-1587351021759-3e566b6af7cc?auto=format&fit=crop&q=80') center/cover;
    opacity: 0.2;
}

.emergency-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    background: rgba(255,0,0,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    margin-bottom: 30px;
}

.emergency-badge .badge-text {
    color: #ff4444;
    font-weight: 600;
    margin-right: 10px;
}

.emergency-badge .badge-pulse {
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    animation: emergencyPulse 1.5s infinite;
}

@keyframes emergencyPulse {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255,68,68,0.7);
    }
    70% {
        transform: scale(1);
        opacity: 0.7;
        box-shadow: 0 0 0 15px rgba(255,68,68,0);
    }
    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255,68,68,0);
    }
}

.emergency-contact-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.emergency-btn, .hotline-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.emergency-btn {
    background: #ff4444;
    color: white;
}

.hotline-btn {
    background: rgba(255,255,255,0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.emergency-btn:hover {
    background: #ff0000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,0,0,0.3);
    color: white;
}

.hotline-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    color: white;
}

/* Emergency Services Section */
.emergency-services {
    background: #f8f9fa;
}

.emergency-content .section-badge {
    color: #ff4444;
    background: rgba(255,68,68,0.1);
}

.emergency-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.emergency-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    color: #1a1a1a; /* Added to ensure text visibility */
}

.emergency-features .feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.emergency-features .feature-item i {
    width: 50px;
    height: 50px;
    min-width: 50px; /* Added to prevent icon shrinking */
    background: rgba(255,68,68,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ff4444;
    transition: all 0.3s ease;
}

.emergency-features .feature-text {
    flex: 1;
}

.emergency-features .feature-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.emergency-features .feature-text p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

/* Response Badge Styles */
.response-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 140px; /* Increased width */
    height: 140px; /* Increased height */
    background: #ff4444;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 20px rgba(255,68,68,0.3);
    animation: pulse 2s infinite;
    padding: 15px; /* Added padding */
}

.response-badge .number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px; /* Added margin */
}

.response-badge .text {
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.2;
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .response-badge {
        width: 120px;
        height: 120px;
        bottom: 20px;
        right: 20px;
        padding: 10px;
    }
    
    .response-badge .number {
        font-size: 2rem;
    }
    
    .response-badge .text {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .emergency-features .feature-item {
        padding: 20px;
    }
    
    .emergency-features .feature-item i {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1.2rem;
    }
    
    .response-badge {
        width: 100px;
        height: 100px;
        padding: 8px;
    }
    
    .response-badge .number {
        font-size: 1.75rem;
    }
    
    .response-badge .text {
        font-size: 0.7rem;
    }
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.contact-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255,68,68,0.1) 0%, rgba(33,150,243,0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.contact-card .card-icon i {
    font-size: 32px;
    background: linear-gradient(135deg, #ff4444, #2196f3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.contact-card:hover .card-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, #ff4444, #2196f3);
}

.contact-card:hover .card-icon i {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff4444;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-card a i {
    transition: transform 0.3s ease;
}

.contact-card a:hover {
    color: #ff0000;
}

.contact-card a:hover i {
    transform: translateX(5px);
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, #0a1f44 0%, #1a3a6c 100%);
    color: white;
}

.contact-form-content .section-badge {
    background: rgba(255,255,255,0.1);
    color: white;
}

.contact-form-content .section-title {
    color: white;
}

.contact-form-content .section-description {
    color: rgba(255,255,255,0.8);
}

.contact-form {
    margin-top: 40px;
}

.form-floating > .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}

.form-floating > .form-control:focus {
    background: rgba(255,255,255,0.15);
    border-color: #ff4444;
    box-shadow: 0 0 0 0.25rem rgba(255,68,68,0.25);
}

.form-floating > label {
    color: rgba(255,255,255,0.7);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: rgba(255,255,255,0.9);
}

.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .emergency-contact-buttons {
        flex-direction: column;
    }
    
    .response-badge {
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: 20px;
    }
    
    .response-badge .number {
        font-size: 2rem;
    }
    
    .contact-card {
        margin-bottom: 30px;
    }
    
    .map-container {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .emergency-features .feature-item {
        padding: 20px;
    }
    
    .emergency-features .feature-item i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .contact-card {
        padding: 30px;
    }
    
    .contact-card .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-card .card-icon i {
        font-size: 24px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .appointment-form {
        padding: 30px;
    }
}

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

/* Typing animation styles */
.typing-animation {
    display: inline-block;
    overflow: hidden;
    border-right: 2px solid #fff;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end),
               blink-caret .75s step-end infinite;
    margin: 0 auto;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #fff }
}

/* Custom styles for the carousel */
.carousel {
    background: #000;
    min-height: 100vh;
}

.carousel-inner {
    height: 100vh;
}

.carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.carousel-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.carousel-text {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.carousel-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.8s ease 0.2s;
    width: fit-content;
}

.carousel-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
}

.carousel-item.active .carousel-text {
    opacity: 1;
    transform: translateX(0);
}

.carousel-item.active .carousel-title {
    opacity: 1;
    transform: translateY(0);
}

.carousel-item.active .carousel-description {
    opacity: 1;
    transform: translateY(0);
}

.carousel-image {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease 0.6s;
    max-height: 70vh;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.carousel-item.active .carousel-image {
    opacity: 1;
    transform: translateX(0);
}

/* Loading animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading.hidden {
    display: none;
}

/* Banner styles */
.carousel-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-title {
        font-size: 2rem;
    }

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

    .carousel-image {
        max-height: 50vh;
        margin-top: 2rem;
    }
}

.stylish_heading {
    font-weight: bold;
    color: #000000;
    text-align: center;
    position: relative;
    letter-spacing: 2px;
    padding-bottom: 15px;
}
.stylish-heading {
    font-weight: bold;
    color: #000000;
    text-align: center;
    position: relative;
    letter-spacing: 2px;
    padding-bottom: 15px;
}

/* Underline with Gradient */
.stylish-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 50%;
    height: 5px;
    background: linear-gradient(90deg, #1d4175, #0a8ba0 , #1d4175);
    transform: translateX(-50%);
    border-radius: 5px;
}

/* Subtle text shadow */
.stylish-heading {
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}

.rcmsec{
    padding-top: 50px;
    padding-bottom: 50px;
}

.custom-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #1e3c72, #142c5a);
    
    color: white;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease;
    height: 100%;
}

.custom-card:hover {
    transform: translateY(-12px);  /* Moves the card upwards */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);  /* Increases shadow on hover */
    background: linear-gradient(135deg, #1e3c72, #00b4b8);
    color: #f0f0f0;
}

.custom-card .card-body {
    padding: 20px;
    text-align: center;
    
}

.custom-card .card-title {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
}

.custom-card .card-text {
    font-size: 16px;
    color: #f1f1f1;
}

/* Image Styling */
.custom-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.heattocon{
    padding: 25px 0px;
}

.box_saparator{
    margin-top: 10px;
    margin-bottom: 10px;
}

.features_body {
    background: linear-gradient(to right, #00a1e2, #2575fc);
    color: white;
}
.rcm-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    color: black;
}
.rcm-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.3);
}
.rcm-card img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.4s ease;
}
.rcm-card:hover img {
    transform: scale(1.1);
}
.rcm-card .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}
.rcm-card:hover .card-body {
    transform: translateY(0);
}
.header_box{
    position: relative;
}
.logo_sz{
    width: 285px;
    position: absolute;
    left: 0px;
    z-index: 9999;
}
.top_sec{
    background: linear-gradient(to right, #00a1e2, #0574a2);
    color: white;
}
.tx_wh{
    font-weight: bold;
  color: white;
  text-align: center;
  position: relative;
  letter-spacing: 2px;
  padding-bottom: 15px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    font-weight: 600;
}

/* Footer Styles */
.footer-section {
    background: #1a1a1a;
    color: #fff;
    padding-top: 70px;
    position: relative;
}

.footer-top {
    padding-bottom: 40px;
}

.footer-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
}

.footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-links a:hover {
    background: #007bff;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 2px;
    background: #007bff;
    bottom: 0;
    left: 0;
}

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

.footer-links ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.footer-links ul li i {
    font-size: 12px;
    color: #007bff;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li:hover i {
    margin-right: 15px;
}

.footer-links ul li:hover a {
    color: #fff;
    padding-left: 5px;
}

.footer-contact p {
    line-height: 26px;
}

.footer-contact p i {
    color: #007bff;
    margin-right: 10px;
}

.footer-newsletter form {
    position: relative;
    margin-top: 20px;
}

.footer-newsletter input[type="email"] {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 4px;
}

.footer-newsletter button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    border: 0;
    background: #007bff;
    color: #fff;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    transition: all 0.3s ease;
}

.footer-newsletter button:hover {
    background: #0056b3;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
}

.credits {
    text-align: right;
}

.credits a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-left: 20px;
    transition: all 0.3s ease;
}

.credits a:hover {
    color: #007bff;
}

@media (max-width: 768px) {
    .footer-newsletter,
    .footer-contact,
    .footer-links,
    .footer-info {
        margin-bottom: 30px;
    }
    
    .credits {
        text-align: center;
        margin-top: 20px;
    }
    
    .copyright {
        text-align: center;
    }
}

/* Partner Section Styles */
.partner-section {
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    position: relative;
    overflow: hidden;
}

.partner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23000" opacity="0.05"/></svg>');
    pointer-events: none;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d2ff);
    border-radius: 2px;
}

/* Custom Accordion Styles */
.custom-accordion .accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 15px;
}

.custom-accordion .accordion-button {
    background: white;
    border: none;
    border-radius: 10px !important;
    padding: 20px 25px;
    font-weight: 600;
    color: #1a1a1a;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.custom-accordion .accordion-button:hover {
    transform: translateX(10px);
}

.custom-accordion .accordion-body {
    padding: 20px 25px;
    background: white;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

/* Partner Image Styles */
.partner-image {
    position: relative;
}

.image-container {
    position: relative;
    padding: 20px;
}

.floating {
    animation: floating 3s ease-in-out infinite;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
    animation: pulse 2s infinite;
}

.experience-badge .number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-align: center;
}

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

/* Hover Effects */
.custom-accordion .accordion-button i {
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:hover i {
    transform: scale(1.2);
}

/* Add AOS animations */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }
    
    .partner-image {
        margin-top: 40px;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .custom-accordion .accordion-button {
        padding: 15px 20px;
    }
    
    .experience-badge {
        width: 80px;
        height: 80px;
        padding: 10px;
    }
    
    .experience-badge .number {
        font-size: 1.5rem;
    }
    
    .experience-badge .text {
        font-size: 0.8rem;
    }
}

/* RCM Solutions Section Styles */
.rcm-solutions-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

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

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.main-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d2ff);
    transform: translateX(-50%);
    border-radius: 2px;
}

.main-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.solution-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.solution-card:hover::before {
    opacity: 0.05;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.solution-card:hover .card-icon img {
    transform: scale(1.1) rotate(5deg);
}

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

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.card-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.learn-more {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.learn-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.learn-more:hover {
    color: #0056b3;
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .main-title {
        font-size: 2rem;
    }
    
    .solution-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 1.75rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
}

/* Medical Coding Section Styles */
.medical-coding-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.medical-coding-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("https://images.unsplash.com/photo-1451187863213-d1bcbaae3fa3?auto=format&amp;fit=crop&amp;w=1920&amp;q=80");
    pointer-events: none;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d2ff);
    border-radius: 2px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

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

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.icon-wrapper i {
    font-size: 28px;
    color: #007bff;
    transition: all 0.4s ease;
}

.feature-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.feature-card:hover .icon-wrapper i {
    color: white;
    transform: rotate(-10deg);
}

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

.content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hover-content {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    transition: all 0.4s ease;
    opacity: 0;
    z-index: 2;
}

.feature-card:hover .hover-content {
    bottom: 0;
    opacity: 1;
}

.learn-more-text {
    color: white;
    font-weight: 600;
    display: block;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .section-heading {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .section-heading {
        font-size: 1.75rem;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .icon-wrapper i {
        font-size: 24px;
    }
    
    .content h3 {
        font-size: 1.25rem;
    }
}

/* Get in Touch Section Styles */
.get-in-touch-section {
    position: relative;
    background: #0a1f44;
    overflow: hidden;
    padding: 100px 0;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0a1f44 0%, #1a3a6c 100%);
}

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

@keyframes backgroundMove {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

.contact-content {
    color: white;
    padding-right: 50px;
}

.contact-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #7eb6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-item i {
    color: #00d2ff;
    font-size: 1.5rem;
}

.contact-card2 {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(0deg);
    transition: transform 0.5s ease;
}

.contact-card2:hover {
    transform: perspective(1000px) rotateY(5deg);
}

.card-title {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.form-floating > .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.form-floating > .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #00d2ff;
    box-shadow: 0 0 0 0.25rem rgba(0, 210, 255, 0.25);
}

.form-floating > label {
    color: rgba(255, 255, 255, 0.7);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: #00d2ff;
}

.submit-btn {
    width: 100%;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

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

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

.submit-btn:hover i {
    transform: translateX(5px) rotate(45deg);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .contact-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }

    .contact-title {
        font-size: 2.2rem;
    }

    .feature-item {
        justify-content: center;
    }
}

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

    .contact-card {
        padding: 25px;
    }
}
.wh_color{
    color: white;
}

/* About Banner Styles */
.about-banner {
    position: relative;
    min-height: 100vh;
    background: #0a1f44;
    overflow: hidden;
}

.banner-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1538108149393-fbbd81895907?auto=format&fit=crop&q=80') center/cover;
    filter: brightness(0.3);
    animation: zoomInOut 20s infinite alternate;
    z-index: 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,123,255,0.9) 0%, rgba(0,210,255,0.7) 100%);
    mix-blend-mode: overlay;
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    padding: 150px 0;
    color: white;
    text-align: center;
}

.banner-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInDown 0.6s ease forwards;
}

.badge-text {
    font-size: 1rem;
    font-weight: 500;
    color: #00d2ff;
    margin-right: 10px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #00d2ff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.banner-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.gradient-text {
    background: linear-gradient(45deg, #ffffff, #7eb6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.typing-text {
    position: relative;
    display: inline-block;
    font-size: 3.5rem;
    color: #ffffff;
    min-height: 80px;
}

.typing-text::after {
    content: '|';
    position: absolute;
    right: -10px;
    animation: blink 0.7s infinite;
}

.banner-description {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

.banner-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.feature {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 28px;
    color: #00d2ff;
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.feature:hover .feature-icon i {
    color: white;
}

.feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

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

.banner-cta {
    margin-top: 50px;
}

.btn-discover {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    color: white;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-discover::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

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

.btn-discover:hover::before {
    transform: rotate(45deg) translateY(300%);
}

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

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

/* Typing animation styles */
.typing-animation {
    display: inline-block;
    overflow: hidden;
    border-right: 2px solid #fff;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end),
               blink-caret .75s step-end infinite;
    margin: 0 auto;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #fff }
}

/* Custom styles for the carousel */
.carousel {
    background: #000;
    min-height: 100vh;
}

.carousel-inner {
    height: 100vh;
}

.carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.carousel-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.carousel-text {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.carousel-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.8s ease 0.2s;
    width: fit-content;
}

.carousel-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
}

.carousel-item.active .carousel-text {
    opacity: 1;
    transform: translateX(0);
}

.carousel-item.active .carousel-title {
    opacity: 1;
    transform: translateY(0);
}

.carousel-item.active .carousel-description {
    opacity: 1;
    transform: translateY(0);
}

.carousel-image {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease 0.6s;
    max-height: 70vh;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.carousel-item.active .carousel-image {
    opacity: 1;
    transform: translateX(0);
}

/* Loading animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading.hidden {
    display: none;
}

/* Banner styles */
.carousel-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-title {
        font-size: 2rem;
    }

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

    .carousel-image {
        max-height: 50vh;
        margin-top: 2rem;
    }
}

.stylish_heading {
    font-weight: bold;
    color: #000000;
    text-align: center;
    position: relative;
    letter-spacing: 2px;
    padding-bottom: 15px;
}
.stylish-heading {
    font-weight: bold;
    color: #000000;
    text-align: center;
    position: relative;
    letter-spacing: 2px;
    padding-bottom: 15px;
}

/* Underline with Gradient */
.stylish-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 50%;
    height: 5px;
    background: linear-gradient(90deg, #1d4175, #0a8ba0 , #1d4175);
    transform: translateX(-50%);
    border-radius: 5px;
}

/* Subtle text shadow */
.stylish-heading {
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}

.rcmsec{
    padding-top: 50px;
    padding-bottom: 50px;
}

.custom-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #1e3c72, #142c5a);
    
    color: white;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease;
    height: 100%;
}

.custom-card:hover {
    transform: translateY(-12px);  /* Moves the card upwards */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);  /* Increases shadow on hover */
    background: linear-gradient(135deg, #1e3c72, #00b4b8);
    color: #f0f0f0;
}

.custom-card .card-body {
    padding: 20px;
    text-align: center;
    
}

.custom-card .card-title {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
}

.custom-card .card-text {
    font-size: 16px;
    color: #f1f1f1;
}

/* Image Styling */
.custom-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.heattocon{
    padding: 25px 0px;
}

.box_saparator{
    margin-top: 10px;
    margin-bottom: 10px;
}

.features_body {
    background: linear-gradient(to right, #00a1e2, #2575fc);
    color: white;
}
.rcm-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    color: black;
}
.rcm-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.3);
}
.rcm-card img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.4s ease;
}
.rcm-card:hover img {
    transform: scale(1.1);
}
.rcm-card .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}
.rcm-card:hover .card-body {
    transform: translateY(0);
}
.header_box{
    position: relative;
}
.logo_sz{
    width: 285px;
    position: absolute;
    left: 0px;
    z-index: 9999;
}
.top_sec{
    background: linear-gradient(to right, #00a1e2, #0574a2);
    color: white;
}
.tx_wh{
    font-weight: bold;
  color: white;
  text-align: center;
  position: relative;
  letter-spacing: 2px;
  padding-bottom: 15px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    font-weight: 600;
}

/* Footer Styles */
.footer-section {
    background: #1a1a1a;
    color: #fff;
    padding-top: 70px;
    position: relative;
}

.footer-top {
    padding-bottom: 40px;
}

.footer-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
}

.footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-links a:hover {
    background: #007bff;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 2px;
    background: #007bff;
    bottom: 0;
    left: 0;
}

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

.footer-links ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.footer-links ul li i {
    font-size: 12px;
    color: #007bff;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li:hover i {
    margin-right: 15px;
}

.footer-links ul li:hover a {
    color: #fff;
    padding-left: 5px;
}

.footer-contact p {
    line-height: 26px;
}

.footer-contact p i {
    color: #007bff;
    margin-right: 10px;
}

.footer-newsletter form {
    position: relative;
    margin-top: 20px;
}

.footer-newsletter input[type="email"] {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 4px;
}

.footer-newsletter button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    border: 0;
    background: #007bff;
    color: #fff;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    transition: all 0.3s ease;
}

.footer-newsletter button:hover {
    background: #0056b3;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
}

.credits {
    text-align: right;
}

.credits a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-left: 20px;
    transition: all 0.3s ease;
}

.credits a:hover {
    color: #007bff;
}

@media (max-width: 768px) {
    .footer-newsletter,
    .footer-contact,
    .footer-links,
    .footer-info {
        margin-bottom: 30px;
    }
    
    .credits {
        text-align: center;
        margin-top: 20px;
    }
    
    .copyright {
        text-align: center;
    }
}

/* Partner Section Styles */
.partner-section {
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    position: relative;
    overflow: hidden;
}

.partner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23000" opacity="0.05"/></svg>');
    pointer-events: none;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d2ff);
    border-radius: 2px;
}

/* Custom Accordion Styles */
.custom-accordion .accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 15px;
}

.custom-accordion .accordion-button {
    background: white;
    border: none;
    border-radius: 10px !important;
    padding: 20px 25px;
    font-weight: 600;
    color: #1a1a1a;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.custom-accordion .accordion-button:hover {
    transform: translateX(10px);
}

.custom-accordion .accordion-body {
    padding: 20px 25px;
    background: white;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

/* Partner Image Styles */
.partner-image {
    position: relative;
}

.image-container {
    position: relative;
    padding: 20px;
}

.floating {
    animation: floating 3s ease-in-out infinite;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
    animation: pulse 2s infinite;
}

.experience-badge .number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-align: center;
}

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

/* Hover Effects */
.custom-accordion .accordion-button i {
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:hover i {
    transform: scale(1.2);
}

/* Add AOS animations */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }
    
    .partner-image {
        margin-top: 40px;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .custom-accordion .accordion-button {
        padding: 15px 20px;
    }
    
    .experience-badge {
        width: 80px;
        height: 80px;
        padding: 10px;
    }
    
    .experience-badge .number {
        font-size: 1.5rem;
    }
    
    .experience-badge .text {
        font-size: 0.8rem;
    }
}

/* RCM Solutions Section Styles */
.rcm-solutions-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

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

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.main-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d2ff);
    transform: translateX(-50%);
    border-radius: 2px;
}

.main-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.solution-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.solution-card:hover::before {
    opacity: 0.05;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.solution-card:hover .card-icon img {
    transform: scale(1.1) rotate(5deg);
}

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

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.card-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.learn-more {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.learn-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.learn-more:hover {
    color: #0056b3;
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .main-title {
        font-size: 2rem;
    }
    
    .solution-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 1.75rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
}

/* Medical Coding Section Styles */
.medical-coding-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.medical-coding-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("https://images.unsplash.com/photo-1451187863213-d1bcbaae3fa3?auto=format&amp;fit=crop&amp;w=1920&amp;q=80");
    pointer-events: none;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d2ff);
    border-radius: 2px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

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

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.icon-wrapper i {
    font-size: 28px;
    color: #007bff;
    transition: all 0.4s ease;
}

.feature-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.feature-card:hover .icon-wrapper i {
    color: white;
    transform: rotate(-10deg);
}

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

.content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hover-content {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    transition: all 0.4s ease;
    opacity: 0;
    z-index: 2;
}

.feature-card:hover .hover-content {
    bottom: 0;
    opacity: 1;
}

.learn-more-text {
    color: white;
    font-weight: 600;
    display: block;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .section-heading {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .section-heading {
        font-size: 1.75rem;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .icon-wrapper i {
        font-size: 24px;
    }
    
    .content h3 {
        font-size: 1.25rem;
    }
}

/* Get in Touch Section Styles */
.get-in-touch-section {
    position: relative;
    background: #0a1f44;
    overflow: hidden;
    padding: 100px 0;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0a1f44 0%, #1a3a6c 100%);
}

.animated-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2V6h4V4H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: backgroundMove 30s linear infinite;
}

@keyframes backgroundMove {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

.contact-content {
    color: white;
    padding-right: 50px;
}

.contact-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #7eb6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-item i {
    color: #00d2ff;
    font-size: 1.5rem;
}

.contact-card2 {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(0deg);
    transition: transform 0.5s ease;
}

.contact-card2:hover {
    transform: perspective(1000px) rotateY(5deg);
}

.card-title {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.form-floating > .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.form-floating > .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #00d2ff;
    box-shadow: 0 0 0 0.25rem rgba(0, 210, 255, 0.25);
}

.form-floating > label {
    color: rgba(255, 255, 255, 0.7);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: #00d2ff;
}

.submit-btn {
    width: 100%;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

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

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

.submit-btn:hover i {
    transform: translateX(5px) rotate(45deg);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .contact-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }

    .contact-title {
        font-size: 2.2rem;
    }

    .feature-item {
        justify-content: center;
    }
}

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

    .contact-card {
        padding: 25px;
    }
}
.wh_color{
    color: white;
}

/* About Banner Styles */
.about-banner {
    position: relative;
    min-height: 100vh;
    background: #0a1f44;
    overflow: hidden;
}

.banner-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1538108149393-fbbd81895907?auto=format&fit=crop&q=80') center/cover;
    filter: brightness(0.3);
    animation: zoomInOut 20s infinite alternate;
    z-index: 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,123,255,0.9) 0%, rgba(0,210,255,0.7) 100%);
    mix-blend-mode: overlay;
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    padding: 150px 0;
    color: white;
    text-align: center;
}

.banner-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInDown 0.6s ease forwards;
}

.badge-text {
    font-size: 1rem;
    font-weight: 500;
    color: #00d2ff;
    margin-right: 10px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #00d2ff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.banner-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.gradient-text {
    background: linear-gradient(45deg, #ffffff, #7eb6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.typing-text {
    position: relative;
    display: inline-block;
    font-size: 3.5rem;
    color: #ffffff;
    min-height: 80px;
}

.typing-text::after {
    content: '|';
    position: absolute;
    right: -10px;
    animation: blink 0.7s infinite;
}

.banner-description {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

.banner-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.feature {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 28px;
    color: #00d2ff;
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.feature:hover .feature-icon i {
    color: white;
}

.feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

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

.banner-cta {
    margin-top: 50px;
}

.btn-discover {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    color: white;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-discover::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

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

.btn-discover:hover::before {
    transform: rotate(45deg) translateY(300%);
}

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

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

.banner-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 2;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0,210,255,0.7);
    }
    70% {
        transform: scale(1);
        opacity: 0.7;
        box-shadow: 0 0 0 10px rgba(0,210,255,0);
    }
    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0,210,255,0);
    }
}

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

/* Responsive Styles */
@media (max-width: 991px) {
    .banner-title {
        font-size: 3.5rem;
    }
    
    .typing-text {
        font-size: 2.8rem;
    }
    
    .banner-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 2.8rem;
    }
    
    .typing-text {
        font-size: 2.2rem;
    }
    
    .banner-features {
        grid-template-columns: 1fr;
    }
    
    .banner-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .banner-title {
        font-size: 2.2rem;
    }
    
    .typing-text {
        font-size: 1.8rem;
    }
    
    .feature {
        padding: 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 24px;
    }
}

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

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

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(45deg, #007bff20, #00d2ff20);
    color: #007bff;
    border-radius: 30px;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    opacity: 0.1;
    border-radius: 30px;
    z-index: -1;
    animation: pulse 2s infinite;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Stats Container Styles */
.stats-container {
    margin-bottom: 60px;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-card:hover::before {
    opacity: 0.05;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.stat-icon i {
    font-size: 28px;
    color: #007bff;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.stat-card:hover .stat-icon i {
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    position: relative;
    z-index: 2;
}

/* Feature Box Styles */
.feature-box {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.feature-box:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-box:hover::before {
    opacity: 0.05;
}

.feature-box .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.feature-box .feature-icon i {
    font-size: 32px;
    color: #007bff;
    transition: all 0.4s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.feature-box:hover .feature-icon i {
    color: white;
    transform: rotate(-10deg);
}

.feature-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.feature-box p {
    color: #666;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.feature-box .hover-content {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    transition: all 0.4s ease;
    opacity: 0;
    z-index: 2;
}

.feature-box:hover .hover-content {
    bottom: 0;
    opacity: 1;
}

.feature-box .learn-more {
    color: white;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.feature-box .learn-more i {
    transition: transform 0.3s ease;
}

.feature-box:hover .learn-more i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .stat-card {
        margin-bottom: 30px;
    }
    
    .feature-box {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .stat-icon, .feature-box .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i, .feature-box .feature-icon i {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Mission & Vision Section Styles */
.mission-vision {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

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

.mission-card,
.vision-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

.mission-card:hover::before,
.vision-card:hover::before {
    opacity: 0.05;
}

.mission-card .card-icon,
.vision-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.mission-card .card-icon i,
.vision-card .card-icon i {
    font-size: 32px;
    color: #007bff;
    transition: all 0.4s ease;
}

.mission-card:hover .card-icon,
.vision-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.mission-card:hover .card-icon i,
.vision-card:hover .card-icon i {
    color: white;
    transform: rotate(-10deg);
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.mission-card p,
.vision-card p {
    color: #666;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    line-height: 1.6;
}

.mission-points,
.vision-points {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.mission-points li,
.vision-points li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #666;
    font-size: 1.1rem;
}

.mission-points li i,
.vision-points li i {
    color: #007bff;
    margin-right: 10px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-points li i,
.vision-card:hover .vision-points li i {
    transform: scale(1.2);
}

/* Value Cards */
.value-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.value-card .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.value-card .card-icon i {
    font-size: 28px;
    color: #007bff;
    transition: all 0.4s ease;
}

.value-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.value-card:hover .card-icon i {
    color: white;
    transform: rotate(-10deg);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.value-card p {
    color: #666;
    position: relative;
    z-index: 2;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .mission-card,
    .vision-card {
        margin-bottom: 30px;
    }
    
    .value-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .mission-card h3,
    .vision-card h3 {
        font-size: 1.5rem;
    }
    
    .mission-card p,
    .vision-card p,
    .mission-points li,
    .vision-points li {
        font-size: 1rem;
    }
    
    .value-card .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-card .card-icon i {
        font-size: 24px;
    }
}

/* Team Section Styles */
.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

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

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 30px;
}

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

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.team-card:hover .member-image img {
    transform: scale(1.1);
}

.social-links {
    position: absolute;
    top: 20px;
    right: -60px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.4s ease;
}

.team-card:hover .social-links {
    right: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-links a:hover {
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
    transform: scale(1.1);
}

.member-info {
    padding: 25px;
    text-align: center;
    position: relative;
}

.member-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #00d2ff);
    border-radius: 2px;
}

.member-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.member-info .position {
    display: block;
    font-size: 1rem;
    color: #007bff;
    margin-bottom: 8px;
    font-weight: 500;
}

.member-info .specialty {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

.view-all-btn:hover::before {
    transform: rotate(45deg) translateY(300%);
}

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

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

/* Responsive Adjustments */
@media (max-width: 991px) {
    .team-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .member-image img {
        height: 350px;
    }
    
    .member-info h3 {
        font-size: 1.3rem;
    }
    
    .member-info .position {
        font-size: 0.9rem;
    }
}
.our-services{
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Services Page Specific Styles */
.services-hero {
    position: relative;
    min-height: 100vh; /* Changed to 100vh */
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0; /* Removed padding */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1631217868264-e5b90bb7e133?auto=format&fit=crop&q=80') center/cover;
    opacity: 0.2;
    animation: scale 20s infinite alternate;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(41,128,185,0.9) 0%, rgba(52,152,219,0.8) 100%);
    mix-blend-mode: multiply;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh; /* Added */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    margin-bottom: 30px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.badge-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    margin-right: 10px;
    letter-spacing: 1px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards 0.3s;
}

.gradient-text {
    background: linear-gradient(45deg, #fff, #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards 0.6s;
}

/* Featured Services Section */
.featured-services {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(45deg, rgba(76,175,80,0.1), rgba(33,150,243,0.1));
    color: #4CAF50;
    border-radius: 30px;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.service-card-wrapper {
    perspective: 1000px;
    height: 400px;
}

.service-card {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-wrapper:hover .service-card {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-front {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-back {
    background: linear-gradient(135deg, #4CAF50, #2196F3);
    color: white;
    transform: rotateY(180deg);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(76,175,80,0.1), rgba(33,150,243,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 40px;
    color: #4CAF50;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
}

.card-front h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.card-front p {
    color: #666;
    text-align: center;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.service-features li i {
    margin-right: 10px;
    color: #fff;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
    color: white;
}

.learn-more-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

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

/* Service Process Section */
.service-process {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #4CAF50, #2196F3);
}

.timeline-item {
    display: flex;
    justify-content: flex-start;
    padding-bottom: 50px;
    width: 50%;
    position: relative;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    justify-content: flex-start;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: absolute;
    left: -30px;
    top: 0;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -30px;
}

.timeline-icon i {
    font-size: 24px;
    color: #4CAF50;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-left: 60px;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 60px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.timeline-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Appointment Section */
.appointment-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    position: relative;
    overflow: hidden;
}

.appointment-content {
    color: white;
    padding-right: 50px;
}

.appointment-content .section-title {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 30px;
}

.appointment-content .section-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    line-height: 1.8;
}

.appointment-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: white;
}

.feature-item i {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4CAF50;
}

.appointment-form {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.form-floating > .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}

.form-floating > .form-control:focus {
    background: rgba(255,255,255,0.15);
    border-color: #00d2ff;
    box-shadow: 0 0 0 0.25rem rgba(0, 210, 255, 0.25);
}

.form-floating > label {
    color: rgba(255,255,255,0.7);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: #00d2ff;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #4CAF50, #2196F3);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .service-card-wrapper {
        height: 350px;
        margin-bottom: 30px;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        margin-left: 0;
    }
    
    .timeline-icon {
        left: 0;
    }
    
    .timeline-content {
        margin-left: 90px;
    }
    
    .appointment-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .appointment-features {
        align-items: center;
    }
}

@media (max-width: 576px) {
    .services-hero {
        min-height: 70vh;
        padding: 60px 0;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-badge {
        padding: 8px 20px;
    }
    
    .badge-text {
        font-size: 1rem;
    }
    
    .service-card-wrapper {
        height: 300px;
    }
    
    .card-front,
    .card-back {
        padding: 30px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
    }
    
    .service-icon i {
        font-size: 32px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .appointment-form {
        padding: 30px;
    }
}

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

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

/* Doctors Page Styles */
.doctors-hero {
    position: relative;
    min-height: 100vh;
    background: #0a1f44;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctors-hero .hero-bg {
    background: url('https://images.unsplash.com/photo-1504813184591-01572f98c85f?auto=format&fit=crop&q=80') center/cover;
    opacity: 0.2;
}

/* Department Filter Styles */
.department-filter {
    background: #f8f9fa;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.filter-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    background: white;
    color: #1a1a1a;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
    transform: translateY(-2px);
}

/* Doctor Card Styles */
.doctor-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

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

.doctor-image {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.doctor-card:hover .doctor-image img {
    transform: scale(1.1);
}

.doctor-image .social-links {
    position: absolute;
    top: 20px;
    right: -60px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.4s ease;
}

.doctor-card:hover .social-links {
    right: 20px;
}

.doctor-image .social-links a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.doctor-image .social-links a:hover {
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
    transform: scale(1.1);
}

.doctor-info {
    padding: 25px;
    position: relative;
}

.department-badge {
    display: inline-block;
    padding: 6px 15px;
    background: linear-gradient(45deg, rgba(0,123,255,0.1), rgba(0,210,255,0.1));
    color: #007bff;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.doctor-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.doctor-info .position {
    display: block;
    font-size: 1rem;
    color: #007bff;
    margin-bottom: 8px;
    font-weight: 500;
}

.doctor-info .specialty {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.doctor-info .stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0,123,255,0.05);
    border-radius: 10px;
}

.doctor-info .stat {
    flex: 1;
    text-align: center;
}

.doctor-info .stat .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 5px;
}

.doctor-info .stat .label {
    font-size: 0.8rem;
    color: #666;
}

.appointment-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.appointment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
    color: white;
}

/* Expertise Section Styles */
.expertise-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.expertise-content .section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(45deg, rgba(0,123,255,0.1), rgba(0,210,255,0.1));
    color: #007bff;
    border-radius: 30px;
    font-weight: 500;
    margin-bottom: 20px;
}

.expertise-content .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.expertise-content .section-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.expertise-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.expertise-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.expertise-features .feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.expertise-features .feature-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, rgba(0,123,255,0.1), rgba(0,210,255,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #007bff;
    transition: all 0.3s ease;
}

.expertise-features .feature-item:hover i {
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
    transform: rotate(360deg);
}

.expertise-features .feature-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.expertise-features .feature-text p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.expertise-image {
    position: relative;
    padding: 20px;
}

.expertise-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.expertise-image .experience-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 20px rgba(0,123,255,0.3);
    animation: pulse 2s infinite;
}

.expertise-image .experience-badge .number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.expertise-image .experience-badge .text {
    font-size: 0.9rem;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .doctor-image {
        height: 350px;
    }
    
    .expertise-content .section-title {
        font-size: 2rem;
    }
    
    .expertise-image .experience-badge {
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: 20px;
    }
    
    .expertise-image .experience-badge .number {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .doctor-image {
        height: 300px;
    }
    
    .doctor-info {
        padding: 20px;
    }
    
    .doctor-info h3 {
        font-size: 1.3rem;
    }
    
    .expertise-content .section-title {
        font-size: 1.75rem;
    }
    
    .expertise-features .feature-item {
        padding: 15px;
    }
    
    .expertise-features .feature-item i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Emergency & Contact Page Styles */
.emergency-hero {
    position: relative;
    min-height: 100vh;
    background: #0a1f44;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emergency-hero .hero-bg {
    background: url('https://images.unsplash.com/photo-1587351021759-3e566b6af7cc?auto=format&fit=crop&q=80') center/cover;
    opacity: 0.2;
}

.emergency-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    background: rgba(255,0,0,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    margin-bottom: 30px;
}

.emergency-badge .badge-text {
    color: #ff4444;
    font-weight: 600;
    margin-right: 10px;
}

.emergency-badge .badge-pulse {
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    animation: emergencyPulse 1.5s infinite;
}

@keyframes emergencyPulse {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255,68,68,0.7);
    }
    70% {
        transform: scale(1);
        opacity: 0.7;
        box-shadow: 0 0 0 15px rgba(255,68,68,0);
    }
    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255,68,68,0);
    }
}

.emergency-contact-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.emergency-btn, .hotline-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.emergency-btn {
    background: #ff4444;
    color: white;
}

.hotline-btn {
    background: rgba(255,255,255,0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.emergency-btn:hover {
    background: #ff0000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,0,0,0.3);
    color: white;
}

.hotline-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    color: white;
}

/* Emergency Services Section */
.emergency-services {
    background: #f8f9fa;
}

.emergency-content .section-badge {
    color: #ff4444;
    background: rgba(255,68,68,0.1);
}

.emergency-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.emergency-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    color: #1a1a1a; /* Added to ensure text visibility */
}

.emergency-features .feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.emergency-features .feature-item i {
    width: 50px;
    height: 50px;
    min-width: 50px; /* Added to prevent icon shrinking */
    background: rgba(255,68,68,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ff4444;
    transition: all 0.3s ease;
}

.emergency-features .feature-text {
    flex: 1;
}

.emergency-features .feature-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.emergency-features .feature-text p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

/* Response Badge Styles */
.response-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 140px; /* Increased width */
    height: 140px; /* Increased height */
    background: #ff4444;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 20px rgba(255,68,68,0.3);
    animation: pulse 2s infinite;
    padding: 15px; /* Added padding */
}

.response-badge .number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px; /* Added margin */
}

.response-badge .text {
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.2;
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .response-badge {
        width: 120px;
        height: 120px;
        bottom: 20px;
        right: 20px;
        padding: 10px;
    }
    
    .response-badge .number {
        font-size: 2rem;
    }
    
    .response-badge .text {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .emergency-features .feature-item {
        padding: 20px;
    }
    
    .emergency-features .feature-item i {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1.2rem;
    }
    
    .response-badge {
        width: 100px;
        height: 100px;
        padding: 8px;
    }
    
    .response-badge .number {
        font-size: 1.75rem;
    }
    
    .response-badge .text {
        font-size: 0.7rem;
    }
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.contact-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255,68,68,0.1) 0%, rgba(33,150,243,0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.contact-card .card-icon i {
    font-size: 32px;
    background: linear-gradient(135deg, #ff4444, #2196f3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.contact-card:hover .card-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, #ff4444, #2196f3);
}

.contact-card:hover .card-icon i {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff4444;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-card a i {
    transition: transform 0.3s ease;
}

.contact-card a:hover {
    color: #ff0000;
}

.contact-card a:hover i {
    transform: translateX(5px);
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, #0a1f44 0%, #1a3a6c 100%);
    color: white;
}

.contact-form-content .section-badge {
    background: rgba(255,255,255,0.1);
    color: white;
}

.contact-form-content .section-title {
    color: white;
}

.contact-form-content .section-description {
    color: rgba(255,255,255,0.8);
}

.contact-form {
    margin-top: 40px;
}

.form-floating > .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}

.form-floating > .form-control:focus {
    background: rgba(255,255,255,0.15);
    border-color: #ff4444;
    box-shadow: 0 0 0 0.25rem rgba(255,68,68,0.25);
}

.form-floating > label {
    color: rgba(255,255,255,0.7);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: rgba(255,255,255,0.9);
}

.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .emergency-contact-buttons {
        flex-direction: column;
    }
    
    .response-badge {
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: 20px;
    }
    
    .response-badge .number {
        font-size: 2rem;
    }
    
    .contact-card {
        margin-bottom: 30px;
    }
    
    .map-container {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .emergency-features .feature-item {
        padding: 20px;
    }
    
    .emergency-features .feature-item i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .contact-card {
        padding: 30px;
    }
    
    .contact-card .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-card .card-icon i {
        font-size: 24px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .appointment-form {
        padding: 30px;
    }
}

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

/* Typing animation styles */
.typing-animation {
    display: inline-block;
    overflow: hidden;
    border-right: 2px solid #fff;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end),
               blink-caret .75s step-end infinite;
    margin: 0 auto;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #fff }
}

/* Custom styles for the carousel */
.carousel {
    background: #000;
    min-height: 100vh;
}

.carousel-inner {
    height: 100vh;
}

.carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.carousel-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.carousel-text {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.carousel-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.8s ease 0.2s;
    width: 100%; /* Change from fit-content to 100% */
    word-wrap: break-word; /* Allow long words to break */
    overflow-wrap: break-word; /* Alternative property for word breaking */
}

.carousel-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
}

.carousel-item.active .carousel-text {
    opacity: 1;
    transform: translateX(0);
}

.carousel-item.active .carousel-title {
    opacity: 1;
    transform: translateY(0);
}

.carousel-item.active .carousel-description {
    opacity: 1;
    transform: translateY(0);
}

.carousel-image {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease 0.6s;
    max-height: 70vh;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.carousel-item.active .carousel-image {
    opacity: 1;
    transform: translateX(0);
}

/* Loading animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading.hidden {
    display: none;
}

/* Banner styles */
.carousel-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-title {
        font-size: 2rem;
    }

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

    .carousel-image {
        max-height: 50vh;
        margin-top: 2rem;
    }
}

.stylish_heading {
    font-weight: bold;
    color: #000000;
    text-align: center;
    position: relative;
    letter-spacing: 2px;
    padding-bottom: 15px;
}
.stylish-heading {
    font-weight: bold;
    color: #000000;
    text-align: center;
    position: relative;
    letter-spacing: 2px;
    padding-bottom: 15px;
}

/* Underline with Gradient */
.stylish-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 50%;
    height: 5px;
    background: linear-gradient(90deg, #1d4175, #0a8ba0 , #1d4175);
    transform: translateX(-50%);
    border-radius: 5px;
}

/* Subtle text shadow */
.stylish-heading {
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}

.rcmsec{
    padding-top: 50px;
    padding-bottom: 50px;
}

.custom-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #1e3c72, #142c5a);
    
    color: white;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease;
    height: 100%;
}

.custom-card:hover {
    transform: translateY(-12px);  /* Moves the card upwards */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);  /* Increases shadow on hover */
    background: linear-gradient(135deg, #1e3c72, #00b4b8);
    color: #f0f0f0;
}

.custom-card .card-body {
    padding: 20px;
    text-align: center;
    
}

.custom-card .card-title {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
}

.custom-card .card-text {
    font-size: 16px;
    color: #f1f1f1;
}

/* Image Styling */
.custom-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.heattocon{
    padding: 25px 0px;
}

.box_saparator{
    margin-top: 10px;
    margin-bottom: 10px;
}

.features_body {
    background: linear-gradient(to right, #00a1e2, #2575fc);
    color: white;
}
.rcm-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    color: black;
}
.rcm-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.3);
}
.rcm-card img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.4s ease;
}
.rcm-card:hover img {
    transform: scale(1.1);
}
.rcm-card .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}
.rcm-card:hover .card-body {
    transform: translateY(0);
}
.header_box{
    position: relative;
}
.logo_sz{
    width: 285px;
    position: absolute;
    left: 0px;
    z-index: 9999;
}
.top_sec{
    background: linear-gradient(to right, #00a1e2, #0574a2);
    color: white;
}
.tx_wh{
    font-weight: bold;
  color: white;
  text-align: center;
  position: relative;
  letter-spacing: 2px;
  padding-bottom: 15px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    font-weight: 600;
}

/* Footer Styles */
.footer-section {
    background: #1a1a1a;
    color: #fff;
    padding-top: 70px;
    position: relative;
}

.footer-top {
    padding-bottom: 40px;
}

.footer-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
}

.footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-links a:hover {
    background: #007bff;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 2px;
    background: #007bff;
    bottom: 0;
    left: 0;
}

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

.footer-links ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.footer-links ul li i {
    font-size: 12px;
    color: #007bff;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li:hover i {
    margin-right: 15px;
}

.footer-links ul li:hover a {
    color: #fff;
    padding-left: 5px;
}

.footer-contact p {
    line-height: 26px;
}

.footer-contact p i {
    color: #007bff;
    margin-right: 10px;
}

.footer-newsletter form {
    position: relative;
    margin-top: 20px;
}

.footer-newsletter input[type="email"] {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 4px;
}

.footer-newsletter button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    border: 0;
    background: #007bff;
    color: #fff;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    transition: all 0.3s ease;
}

.footer-newsletter button:hover {
    background: #0056b3;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
}

.credits {
    text-align: right;
}

.credits a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-left: 20px;
    transition: all 0.3s ease;
}

.credits a:hover {
    color: #007bff;
}

@media (max-width: 768px) {
    .footer-newsletter,
    .footer-contact,
    .footer-links,
    .footer-info {
        margin-bottom: 30px;
    }
    
    .credits {
        text-align: center;
        margin-top: 20px;
    }
    
    .copyright {
        text-align: center;
    }
}

/* Partner Section Styles */
.partner-section {
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    position: relative;
    overflow: hidden;
}

.partner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23000" opacity="0.05"/></svg>');
    pointer-events: none;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d2ff);
    border-radius: 2px;
}

/* Custom Accordion Styles */
.custom-accordion .accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 15px;
}

.custom-accordion .accordion-button {
    background: white;
    border: none;
    border-radius: 10px !important;
    padding: 20px 25px;
    font-weight: 600;
    color: #1a1a1a;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.custom-accordion .accordion-button:hover {
    transform: translateX(10px);
}

.custom-accordion .accordion-body {
    padding: 20px 25px;
    background: white;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

/* Partner Image Styles */
.partner-image {
    position: relative;
}

.image-container {
    position: relative;
    padding: 20px;
}

.floating {
    animation: floating 3s ease-in-out infinite;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
    animation: pulse 2s infinite;
}

.experience-badge .number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-align: center;
}

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

/* Hover Effects */
.custom-accordion .accordion-button i {
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:hover i {
    transform: scale(1.2);
}

/* Add AOS animations */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }
    
    .partner-image {
        margin-top: 40px;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .custom-accordion .accordion-button {
        padding: 15px 20px;
    }
    
    .experience-badge {
        width: 80px;
        height: 80px;
        padding: 10px;
    }
    
    .experience-badge .number {
        font-size: 1.5rem;
    }
    
    .experience-badge .text {
        font-size: 0.8rem;
    }
}

/* RCM Solutions Section Styles */
.rcm-solutions-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

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

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.main-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d2ff);
    transform: translateX(-50%);
    border-radius: 2px;
}

.main-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.solution-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.solution-card:hover::before {
    opacity: 0.05;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.solution-card:hover .card-icon img {
    transform: scale(1.1) rotate(5deg);
}

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

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.card-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.learn-more {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.learn-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.learn-more:hover {
    color: #0056b3;
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .main-title {
        font-size: 2rem;
    }
    
    .solution-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 1.75rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
}

/* Medical Coding Section Styles */
.medical-coding-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.medical-coding-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("https://images.unsplash.com/photo-1451187863213-d1bcbaae3fa3?auto=format&amp;fit=crop&amp;w=1920&amp;q=80");
    pointer-events: none;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d2ff);
    border-radius: 2px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

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

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.icon-wrapper i {
    font-size: 28px;
    color: #007bff;
    transition: all 0.4s ease;
}

.feature-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.feature-card:hover .icon-wrapper i {
    color: white;
    transform: rotate(-10deg);
}

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

.content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hover-content {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    transition: all 0.4s ease;
    opacity: 0;
    z-index: 2;
}

.feature-card:hover .hover-content {
    bottom: 0;
    opacity: 1;
}

.learn-more-text {
    color: white;
    font-weight: 600;
    display: block;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .section-heading {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .section-heading {
        font-size: 1.75rem;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .icon-wrapper i {
        font-size: 24px;
    }
    
    .content h3 {
        font-size: 1.25rem;
    }
}

/* Get in Touch Section Styles */
.get-in-touch-section {
    position: relative;
    background: #0a1f44;
    overflow: hidden;
    padding: 100px 0;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0a1f44 0%, #1a3a6c 100%);
}

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

@keyframes backgroundMove {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

.contact-content {
    color: white;
    padding-right: 50px;
}

.contact-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #7eb6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-item i {
    color: #00d2ff;
    font-size: 1.5rem;
}

.contact-card2 {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(0deg);
    transition: transform 0.5s ease;
}

.contact-card2:hover {
    transform: perspective(1000px) rotateY(5deg);
}

.card-title {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.form-floating > .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.form-floating > .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #00d2ff;
    box-shadow: 0 0 0 0.25rem rgba(0, 210, 255, 0.25);
}

.form-floating > label {
    color: rgba(255, 255, 255, 0.7);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: #00d2ff;
}

.submit-btn {
    width: 100%;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

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

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

.submit-btn:hover i {
    transform: translateX(5px) rotate(45deg);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .contact-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }

    .contact-title {
        font-size: 2.2rem;
    }

    .feature-item {
        justify-content: center;
    }
}

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

    .contact-card {
        padding: 25px;
    }
}
.wh_color{
    color: white;
}

/* About Banner Styles */
.about-banner {
    position: relative;
    min-height: 100vh;
    background: #0a1f44;
    overflow: hidden;
}

.banner-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1538108149393-fbbd81895907?auto=format&fit=crop&q=80') center/cover;
    filter: brightness(0.3);
    animation: zoomInOut 20s infinite alternate;
    z-index: 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,123,255,0.9) 0%, rgba(0,210,255,0.7) 100%);
    mix-blend-mode: overlay;
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    padding: 150px 0;
    color: white;
    text-align: center;
}

.banner-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInDown 0.6s ease forwards;
}

.badge-text {
    font-size: 1rem;
    font-weight: 500;
    color: #00d2ff;
    margin-right: 10px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #00d2ff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.banner-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.gradient-text {
    background: linear-gradient(45deg, #ffffff, #7eb6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.typing-text {
    position: relative;
    display: inline-block;
    font-size: 3.5rem;
    color: #ffffff;
    min-height: 80px;
}

.typing-text::after {
    content: '|';
    position: absolute;
    right: -10px;
    animation: blink 0.7s infinite;
}

.banner-description {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

.banner-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.feature {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 28px;
    color: #00d2ff;
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.feature:hover .feature-icon i {
    color: white;
}

.feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

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

.banner-cta {
    margin-top: 50px;
}

.btn-discover {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    color: white;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-discover::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

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

.btn-discover:hover::before {
    transform: rotate(45deg) translateY(300%);
}

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

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

.banner-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 2;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0,210,255,0.7);
    }
    70% {
        transform: scale(1);
        opacity: 0.7;
        box-shadow: 0 0 0 10px rgba(0,210,255,0);
    }
    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0,210,255,0);
    }
}

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

/* Responsive Styles */
@media (max-width: 991px) {
    .banner-title {
        font-size: 3.5rem;
    }
    
    .typing-text {
        font-size: 2.8rem;
    }
    
    .banner-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 2.8rem;
    }
    
    .typing-text {
        font-size: 2.2rem;
    }
    
    .banner-features {
        grid-template-columns: 1fr;
    }
    
    .banner-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .banner-title {
        font-size: 2.2rem;
    }
    
    .typing-text {
        font-size: 1.8rem;
    }
    
    .feature {
        padding: 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 24px;
    }
}

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

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

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(45deg, #007bff20, #00d2ff20);
    color: #007bff;
    border-radius: 30px;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    opacity: 0.1;
    border-radius: 30px;
    z-index: -1;
    animation: pulse 2s infinite;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Stats Container Styles */
.stats-container {
    margin-bottom: 60px;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-card:hover::before {
    opacity: 0.05;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.stat-icon i {
    font-size: 28px;
    color: #007bff;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.stat-card:hover .stat-icon i {
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    position: relative;
    z-index: 2;
}

/* Feature Box Styles */
.feature-box {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.feature-box:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-box:hover::before {
    opacity: 0.05;
}

.feature-box .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.feature-box .feature-icon i {
    font-size: 32px;
    color: #007bff;
    transition: all 0.4s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.feature-box:hover .feature-icon i {
    color: white;
    transform: rotate(-10deg);
}

.feature-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.feature-box p {
    color: #666;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.feature-box .hover-content {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    transition: all 0.4s ease;
    opacity: 0;
    z-index: 2;
}

.feature-box:hover .hover-content {
    bottom: 0;
    opacity: 1;
}

.feature-box .learn-more {
    color: white;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.feature-box .learn-more i {
    transition: transform 0.3s ease;
}

.feature-box:hover .learn-more i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .stat-card {
        margin-bottom: 30px;
    }
    
    .feature-box {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .stat-icon, .feature-box .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i, .feature-box .feature-icon i {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Mission & Vision Section Styles */
.mission-vision {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

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

.mission-card,
.vision-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

.mission-card:hover::before,
.vision-card:hover::before {
    opacity: 0.05;
}

.mission-card .card-icon,
.vision-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.mission-card .card-icon i,
.vision-card .card-icon i {
    font-size: 32px;
    color: #007bff;
    transition: all 0.4s ease;
}

.mission-card:hover .card-icon,
.vision-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.mission-card:hover .card-icon i,
.vision-card:hover .card-icon i {
    color: white;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.mission-card p,
.vision-card p {
    color: #666;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .mission-card,
    .vision-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .mission-card .card-icon,
    .vision-card .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .mission-card .card-icon i,
    .vision-card .card-icon i {
        font-size: 24px;
    }
}

/* Testimonials Section Styles */
.testimonials {
    padding: 100px 0;
    background: #f8f9fa;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-card:hover::before {
    opacity: 0.05;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 20px;
    overflow: hidden;
}

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

.author-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.author-title {
    font-size: 1rem;
    color: #666;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1.2rem;
}

.testimonial-rating span {
    font-size: 1rem;
    color: #666;
}

@media (max-width: 991px) {
    .testimonial-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .author-avatar {
        margin-bottom: 10px;
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.contact-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

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

.form-control {
    background: white;
    border: 1px solid #ced4da;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.submit-btn {
    width: 100%;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

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

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

.submit-btn:hover i {
    transform: translateX(5px) rotate(45deg);
}

@media (max-width: 991px) {
    .contact-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }

    .contact-title {
        font-size: 2.2rem;
    }

    .feature-item {
        justify-content: center;
    }
}

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

    .contact-card {
        padding: 25px;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }
}

/* Footer Styles */
.footer-section {
    background: #1a1a1a;
    color: #fff;
    padding: 50px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo span {
    color: #00d2ff;
    font-size: 1.5rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00d2ff;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-social a {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #00d2ff;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #888;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Navbar Styles */
.navbar {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-right: 30px;
}

.navbar-brand span {
    color: #007bff;
}

.navbar-nav .nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #007bff;
}

.navbar-nav .nav-link.active {
    color: #007bff;
    border-bottom: 2px solid #007bff;
}

.navbar-toggler {
    border: none;
    outline: none;
    cursor: pointer;
}

.navbar-toggler-icon {
    font-size: 1.2rem;
    color: #1a1a1a;
}

@media (max-width: 991px) {
    .navbar-nav {
        display: none;
    }
    
    .navbar-nav.show {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        background: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        position: absolute;
        top: 100%;
        right: 0;
        margin-top: 10px;
    }
    
    .navbar-nav.show .nav-link {
        margin-bottom: 10px;
    }
}

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

@keyframes backgroundMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0,210,255,0.7);
    }
    70% {
        transform: scale(1);
        opacity: 0.7;
        box-shadow: 0 0 0 10px rgba(0,210,255,0);
    }
    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0,210,255,0);
    }
}

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

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

/* Dermatology Page Styles */
.derm-hero {
    position: relative;
    min-height: 100vh;
    padding: 100px 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

.derm-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1612776572997-76cc42e058c3?auto=format&fit=crop&q=80') center/cover no-repeat;
    opacity: 0.15;
    z-index: 1;
}

.derm-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #1a1a1a;
}

.derm-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.derm-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.derm-hero-btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    color: white;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.derm-hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

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

.derm-hero-btn i {
    margin-right: 10px;
    transition: transform 0.3s ease;
}

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

.derm-services {
    padding: 100px 0;
    background: #f8f9fa;
}

.derm-services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.derm-service-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.derm-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.derm-service-card:hover {
    transform: translateY(-10px);
}

.derm-service-card:hover::before {
    opacity: 0.05;
}

.derm-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.derm-service-icon i {
    font-size: 28px;
    color: #007bff;
    transition: all 0.3s ease;
}

.derm-service-card:hover .derm-service-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.derm-service-card:hover .derm-service-icon i {
    color: white;
}

.derm-service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-align: center;
}

.derm-service-description {
    font-size: 1rem;
    color: #666;
    text-align: center;
}

.derm-features {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.derm-features-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&q=80') center/cover no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.derm-features-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #1a1a1a;
}

.derm-features-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.derm-features-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.derm-feature-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.derm-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.derm-feature-card:hover {
    transform: translateY(-10px);
}

.derm-feature-card:hover::before {
    opacity: 0.05;
}

.derm-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.derm-feature-icon i {
    font-size: 28px;
    color: #007bff;
    transition: all 0.3s ease;
}

.derm-feature-card:hover .derm-feature-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.derm-feature-card:hover .derm-feature-icon i {
    color: white;
}

.derm-feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-align: center;
}

.derm-feature-description {
    font-size: 1rem;
    color: #666;
    text-align: center;
}

.derm-programs {
    padding: 100px 0;
    background: #f8f9fa;
}

.derm-programs-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.derm-program-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.derm-program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.derm-program-card:hover {
    transform: translateY(-10px);
}

.derm-program-card:hover::before {
    opacity: 0.05;
}

.derm-program-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.derm-program-icon i {
    font-size: 28px;
    color: #007bff;
    transition: all 0.3s ease;
}

.derm-program-card:hover .derm-program-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.derm-program-card:hover .derm-program-icon i {
    color: white;
}

.derm-program-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-align: center;
}

.derm-program-description {
    font-size: 1rem;
    color: #666;
    text-align: center;
}

.derm-contact {
    padding: 100px 0;
    background: #f8f9fa;
}

.derm-contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.derm-contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.derm-contact-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.derm-contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.derm-form-group {
    margin-bottom: 20px;
}

.derm-form-control {
    background: white;
    border: 1px solid #ced4da;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

.derm-form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.derm-form-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.derm-submit-btn {
    width: 100%;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.derm-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

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

.derm-submit-btn i {
    transition: transform 0.3s ease;
}

.derm-submit-btn:hover i {
    transform: translateX(5px) rotate(45deg);
}

@media (max-width: 991px) {
    .derm-contact-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }

    .derm-contact-title {
        font-size: 2.2rem;
    }

    .derm-feature-item {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .derm-contact-title {
        font-size: 1.8rem;
    }

    .derm-contact-card {
        padding: 25px;
    }

    .derm-contact-form {
        grid-template-columns: 1fr;
    }
}

/* Anesthesia Page Styles */
.anes-hero {
    position: relative;
    min-height: 100vh;
    padding: 100px 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

.anes-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&q=80') center/cover no-repeat;
    opacity: 0.15;
    z-index: 1;
}

.anes-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #1a1a1a;
}

.anes-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.anes-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.anes-hero-btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    color: white;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.anes-hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

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

.anes-hero-btn i {
    margin-right: 10px;
    transition: transform 0.3s ease;
}

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

.anes-services {
    padding: 100px 0;
    background: #f8f9fa;
}

.anes-services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.anes-service-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.anes-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.anes-service-card:hover {
    transform: translateY(-10px);
}

.anes-service-card:hover::before {
    opacity: 0.05;
}

.anes-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.anes-service-icon i {
    font-size: 28px;
    color: #007bff;
    transition: all 0.3s ease;
}

.anes-service-card:hover .anes-service-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.anes-service-card:hover .anes-service-icon i {
    color: white;
}

.anes-service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-align: center;
}

.anes-service-description {
    font-size: 1rem;
    color: #666;
    text-align: center;
}

.anes-features {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.anes-features-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&q=80') center/cover no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.anes-features-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #1a1a1a;
}

.anes-features-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.anes-features-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.anes-feature-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.anes-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.anes-feature-card:hover {
    transform: translateY(-10px);
}

.anes-feature-card:hover::before {
    opacity: 0.05;
}

.anes-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}
/* Typing animation styles */
.typing-animation {
    display: inline-block;
    overflow: hidden;
    border-right: 2px solid #fff;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end),
               blink-caret .75s step-end infinite;
    margin: 0 auto;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #fff }
}

/* Custom styles for the carousel */
.carousel {
    background: #000;
    min-height: 100vh;
}

.carousel-inner {
    height: 100vh;
}

.carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.carousel-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.carousel-text {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.carousel-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.8s ease 0.2s;
    width: 100%; /* Change from fit-content to 100% */
    word-wrap: break-word; /* Allow long words to break */
    overflow-wrap: break-word; /* Alternative property for word breaking */
}


.carousel-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
}

.carousel-item.active .carousel-text {
    opacity: 1;
    transform: translateX(0);
}

.carousel-item.active .carousel-title {
    opacity: 1;
    transform: translateY(0);
}

.carousel-item.active .carousel-description {
    opacity: 1;
    transform: translateY(0);
}

.carousel-image {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease 0.6s;
    max-height: 70vh;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.carousel-item.active .carousel-image {
    opacity: 1;
    transform: translateX(0);
}

/* Loading animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading.hidden {
    display: none;
}

/* Banner styles */
.carousel-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-title {
        font-size: 2rem;
    }

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

    .carousel-image {
        max-height: 50vh;
        margin-top: 2rem;
    }
}

.stylish_heading {
    font-weight: bold;
    color: #000000;
    text-align: center;
    position: relative;
    letter-spacing: 2px;
    padding-bottom: 15px;
}
.stylish-heading {
    font-weight: bold;
    color: #000000;
    text-align: center;
    position: relative;
    letter-spacing: 2px;
    padding-bottom: 15px;
}

/* Underline with Gradient */
.stylish-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 50%;
    height: 5px;
    background: linear-gradient(90deg, #1d4175, #0a8ba0 , #1d4175);
    transform: translateX(-50%);
    border-radius: 5px;
}

/* Subtle text shadow */
.stylish-heading {
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}

.rcmsec{
    padding-top: 50px;
    padding-bottom: 50px;
}

.custom-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #1e3c72, #142c5a);
    
    color: white;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease;
    height: 100%;
}

.custom-card:hover {
    transform: translateY(-12px);  /* Moves the card upwards */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);  /* Increases shadow on hover */
    background: linear-gradient(135deg, #1e3c72, #00b4b8);
    color: #f0f0f0;
}

.custom-card .card-body {
    padding: 20px;
    text-align: center;
    
}

.custom-card .card-title {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
}

.custom-card .card-text {
    font-size: 16px;
    color: #f1f1f1;
}

/* Image Styling */
.custom-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.heattocon{
    padding: 25px 0px;
}

.box_saparator{
    margin-top: 10px;
    margin-bottom: 10px;
}

.features_body {
    background: linear-gradient(to right, #00a1e2, #2575fc);
    color: white;
}
.rcm-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    color: black;
}
.rcm-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.3);
}
.rcm-card img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.4s ease;
}
.rcm-card:hover img {
    transform: scale(1.1);
}
.rcm-card .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}
.rcm-card:hover .card-body {
    transform: translateY(0);
}
.header_box{
    position: relative;
}
.logo_sz{
    width: 285px;
    position: absolute;
    left: 0px;
    z-index: 9999;
}
.top_sec{
    background: linear-gradient(to right, #00a1e2, #0574a2);
    color: white;
}
.tx_wh{
    font-weight: bold;
  color: white;
  text-align: center;
  position: relative;
  letter-spacing: 2px;
  padding-bottom: 15px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    font-weight: 600;
}

/* Footer Styles */
.footer-section {
    background: #1a1a1a;
    color: #fff;
    padding-top: 70px;
    position: relative;
}

.footer-top {
    padding-bottom: 40px;
}

.footer-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
}

.footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-links a:hover {
    background: #007bff;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 2px;
    background: #007bff;
    bottom: 0;
    left: 0;
}

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

.footer-links ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.footer-links ul li i {
    font-size: 12px;
    color: #007bff;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li:hover i {
    margin-right: 15px;
}

.footer-links ul li:hover a {
    color: #fff;
    padding-left: 5px;
}

.footer-contact p {
    line-height: 26px;
}

.footer-contact p i {
    color: #007bff;
    margin-right: 10px;
}

.footer-newsletter form {
    position: relative;
    margin-top: 20px;
}

.footer-newsletter input[type="email"] {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 4px;
}

.footer-newsletter button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    border: 0;
    background: #007bff;
    color: #fff;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    transition: all 0.3s ease;
}

.footer-newsletter button:hover {
    background: #0056b3;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
}

.credits {
    text-align: right;
}

.credits a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-left: 20px;
    transition: all 0.3s ease;
}

.credits a:hover {
    color: #007bff;
}

@media (max-width: 768px) {
    .footer-newsletter,
    .footer-contact,
    .footer-links,
    .footer-info {
        margin-bottom: 30px;
    }
    
    .credits {
        text-align: center;
        margin-top: 20px;
    }
    
    .copyright {
        text-align: center;
    }
}

/* Partner Section Styles */
.partner-section {
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    position: relative;
    overflow: hidden;
}

.partner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23000" opacity="0.05"/></svg>');
    pointer-events: none;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d2ff);
    border-radius: 2px;
}

/* Custom Accordion Styles */
.custom-accordion .accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 15px;
}

.custom-accordion .accordion-button {
    background: white;
    border: none;
    border-radius: 10px !important;
    padding: 20px 25px;
    font-weight: 600;
    color: #1a1a1a;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.custom-accordion .accordion-button:hover {
    transform: translateX(10px);
}

.custom-accordion .accordion-body {
    padding: 20px 25px;
    background: white;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

/* Partner Image Styles */
.partner-image {
    position: relative;
}

.image-container {
    position: relative;
    padding: 20px;
}

.floating {
    animation: floating 3s ease-in-out infinite;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
    animation: pulse 2s infinite;
}

.experience-badge .number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-align: center;
}

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

/* Hover Effects */
.custom-accordion .accordion-button i {
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:hover i {
    transform: scale(1.2);
}

/* Add AOS animations */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }
    
    .partner-image {
        margin-top: 40px;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .custom-accordion .accordion-button {
        padding: 15px 20px;
    }
    
    .experience-badge {
        width: 80px;
        height: 80px;
        padding: 10px;
    }
    
    .experience-badge .number {
        font-size: 1.5rem;
    }
    
    .experience-badge .text {
        font-size: 0.8rem;
    }
}

/* RCM Solutions Section Styles */
.rcm-solutions-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

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

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.main-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d2ff);
    transform: translateX(-50%);
    border-radius: 2px;
}

.main-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.solution-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.solution-card:hover::before {
    opacity: 0.05;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.solution-card:hover .card-icon img {
    transform: scale(1.1) rotate(5deg);
}

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

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.card-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.learn-more {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.learn-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.learn-more:hover {
    color: #0056b3;
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .main-title {
        font-size: 2rem;
    }
    
    .solution-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 1.75rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
}

/* Medical Coding Section Styles */
.medical-coding-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.medical-coding-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("https://images.unsplash.com/photo-1451187863213-d1bcbaae3fa3?auto=format&amp;fit=crop&amp;w=1920&amp;q=80");
    pointer-events: none;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d2ff);
    border-radius: 2px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

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

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.icon-wrapper i {
    font-size: 28px;
    color: #007bff;
    transition: all 0.4s ease;
}

.feature-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.feature-card:hover .icon-wrapper i {
    color: white;
    transform: rotate(-10deg);
}

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

.content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hover-content {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    transition: all 0.4s ease;
    opacity: 0;
    z-index: 2;
}

.feature-card:hover .hover-content {
    bottom: 0;
    opacity: 1;
}

.learn-more-text {
    color: white;
    font-weight: 600;
    display: block;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .section-heading {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .section-heading {
        font-size: 1.75rem;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .icon-wrapper i {
        font-size: 24px;
    }
    
    .content h3 {
        font-size: 1.25rem;
    }
}

/* Get in Touch Section Styles */
.get-in-touch-section {
    position: relative;
    background: #0a1f44;
    overflow: hidden;
    padding: 100px 0;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0a1f44 0%, #1a3a6c 100%);
}

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

@keyframes backgroundMove {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

.contact-content {
    color: white;
    padding-right: 50px;
}

.contact-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #7eb6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-item i {
    color: #00d2ff;
    font-size: 1.5rem;
}

.contact-card2 {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(0deg);
    transition: transform 0.5s ease;
}

.contact-card2:hover {
    transform: perspective(1000px) rotateY(5deg);
}

.card-title {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.form-floating > .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.form-floating > .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #00d2ff;
    box-shadow: 0 0 0 0.25rem rgba(0, 210, 255, 0.25);
}

.form-floating > label {
    color: rgba(255, 255, 255, 0.7);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: #00d2ff;
}

.submit-btn {
    width: 100%;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

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

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

.submit-btn:hover i {
    transform: translateX(5px) rotate(45deg);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .contact-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }

    .contact-title {
        font-size: 2.2rem;
    }

    .feature-item {
        justify-content: center;
    }
}

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

    .contact-card {
        padding: 25px;
    }
}
.wh_color{
    color: white;
}

/* About Banner Styles */
.about-banner {
    position: relative;
    min-height: 100vh;
    background: #0a1f44;
    overflow: hidden;
}

.banner-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1538108149393-fbbd81895907?auto=format&fit=crop&q=80') center/cover;
    filter: brightness(0.3);
    animation: zoomInOut 20s infinite alternate;
    z-index: 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,123,255,0.9) 0%, rgba(0,210,255,0.7) 100%);
    mix-blend-mode: overlay;
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    padding: 150px 0;
    color: white;
    text-align: center;
}

.banner-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInDown 0.6s ease forwards;
}

.badge-text {
    font-size: 1rem;
    font-weight: 500;
    color: #00d2ff;
    margin-right: 10px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #00d2ff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.banner-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.gradient-text {
    background: linear-gradient(45deg, #ffffff, #7eb6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.typing-text {
    position: relative;
    display: inline-block;
    font-size: 3.5rem;
    color: #ffffff;
    min-height: 80px;
}

.typing-text::after {
    content: '|';
    position: absolute;
    right: -10px;
    animation: blink 0.7s infinite;
}

.banner-description {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

.banner-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.feature {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 28px;
    color: #00d2ff;
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.feature:hover .feature-icon i {
    color: white;
}

.feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

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

.banner-cta {
    margin-top: 50px;
}

.btn-discover {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    color: white;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-discover::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

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

.btn-discover:hover::before {
    transform: rotate(45deg) translateY(300%);
}

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

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

.banner-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 2;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0,210,255,0.7);
    }
    70% {
        transform: scale(1);
        opacity: 0.7;
        box-shadow: 0 0 0 10px rgba(0,210,255,0);
    }
    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0,210,255,0);
    }
}

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

/* Responsive Styles */
@media (max-width: 991px) {
    .banner-title {
        font-size: 3.5rem;
    }
    
    .typing-text {
        font-size: 2.8rem;
    }
    
    .banner-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 2.8rem;
    }
    
    .typing-text {
        font-size: 2.2rem;
    }
    
    .banner-features {
        grid-template-columns: 1fr;
    }
    
    .banner-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .banner-title {
        font-size: 2.2rem;
    }
    
    .typing-text {
        font-size: 1.8rem;
    }
    
    .feature {
        padding: 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 24px;
    }
}

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

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

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(45deg, #007bff20, #00d2ff20);
    color: #007bff;
    border-radius: 30px;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    opacity: 0.1;
    border-radius: 30px;
    z-index: -1;
    animation: pulse 2s infinite;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Stats Container Styles */
.stats-container {
    margin-bottom: 60px;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-card:hover::before {
    opacity: 0.05;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.stat-icon i {
    font-size: 28px;
    color: #007bff;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.stat-card:hover .stat-icon i {
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    position: relative;
    z-index: 2;
}

/* Feature Box Styles */
.feature-box {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.feature-box:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-box:hover::before {
    opacity: 0.05;
}

.feature-box .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.feature-box .feature-icon i {
    font-size: 32px;
    color: #007bff;
    transition: all 0.4s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.feature-box:hover .feature-icon i {
    color: white;
    transform: rotate(-10deg);
}

.feature-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.feature-box p {
    color: #666;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.feature-box .hover-content {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    transition: all 0.4s ease;
    opacity: 0;
    z-index: 2;
}

.feature-box:hover .hover-content {
    bottom: 0;
    opacity: 1;
}

.feature-box .learn-more {
    color: white;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.feature-box .learn-more i {
    transition: transform 0.3s ease;
}

.feature-box:hover .learn-more i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .stat-card {
        margin-bottom: 30px;
    }
    
    .feature-box {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .stat-icon, .feature-box .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i, .feature-box .feature-icon i {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Mission & Vision Section Styles */
.mission-vision {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

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

.mission-card,
.vision-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

.mission-card:hover::before,
.vision-card:hover::before {
    opacity: 0.05;
}

.mission-card .card-icon,
.vision-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.mission-card .card-icon i,
.vision-card .card-icon i {
    font-size: 32px;
    color: #007bff;
    transition: all 0.4s ease;
}

.mission-card:hover .card-icon,
.vision-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.mission-card:hover .card-icon i,
.vision-card:hover .card-icon i {
    color: white;
    transform: rotate(-10deg);
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.mission-card p,
.vision-card p {
    color: #666;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    line-height: 1.6;
}

.mission-points,
.vision-points {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.mission-points li,
.vision-points li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #666;
    font-size: 1.1rem;
}

.mission-points li i,
.vision-points li i {
    color: #007bff;
    margin-right: 10px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-points li i,
.vision-card:hover .vision-points li i {
    transform: scale(1.2);
}

/* Value Cards */
.value-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.value-card .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.value-card .card-icon i {
    font-size: 28px;
    color: #007bff;
    transition: all 0.4s ease;
}

.value-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.value-card:hover .card-icon i {
    color: white;
    transform: rotate(-10deg);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.value-card p {
    color: #666;
    position: relative;
    z-index: 2;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .mission-card,
    .vision-card {
        margin-bottom: 30px;
    }
    
    .value-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .mission-card h3,
    .vision-card h3 {
        font-size: 1.5rem;
    }
    
    .mission-card p,
    .vision-card p,
    .mission-points li,
    .vision-points li {
        font-size: 1rem;
    }
    
    .value-card .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-card .card-icon i {
        font-size: 24px;
    }
}

/* Team Section Styles */
.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

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

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 30px;
}

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

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.team-card:hover .member-image img {
    transform: scale(1.1);
}

.social-links {
    position: absolute;
    top: 20px;
    right: -60px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.4s ease;
}

.team-card:hover .social-links {
    right: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-links a:hover {
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
    transform: scale(1.1);
}

.member-info {
    padding: 25px;
    text-align: center;
    position: relative;
}

.member-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #00d2ff);
    border-radius: 2px;
}

.member-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.member-info .position {
    display: block;
    font-size: 1rem;
    color: #007bff;
    margin-bottom: 8px;
    font-weight: 500;
}

.member-info .specialty {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

.view-all-btn:hover::before {
    transform: rotate(45deg) translateY(300%);
}

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

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

/* Responsive Adjustments */
@media (max-width: 991px) {
    .team-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .member-image img {
        height: 350px;
    }
    
    .member-info h3 {
        font-size: 1.3rem;
    }
    
    .member-info .position {
        font-size: 0.9rem;
    }
}
.our-services{
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Services Page Specific Styles */
.services-hero {
    position: relative;
    min-height: 100vh; /* Changed to 100vh */
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0; /* Removed padding */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1631217868264-e5b90bb7e133?auto=format&fit=crop&q=80') center/cover;
    opacity: 0.2;
    animation: scale 20s infinite alternate;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(41,128,185,0.9) 0%, rgba(52,152,219,0.8) 100%);
    mix-blend-mode: multiply;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh; /* Added */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    margin-bottom: 30px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.badge-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    margin-right: 10px;
    letter-spacing: 1px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards 0.3s;
}

.gradient-text {
    background: linear-gradient(45deg, #fff, #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards 0.6s;
}

/* Featured Services Section */
.featured-services {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(45deg, rgba(76,175,80,0.1), rgba(33,150,243,0.1));
    color: #4CAF50;
    border-radius: 30px;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.service-card-wrapper {
    perspective: 1000px;
    height: 400px;
}

.service-card {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-wrapper:hover .service-card {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-front {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-back {
    background: linear-gradient(135deg, #4CAF50, #2196F3);
    color: white;
    transform: rotateY(180deg);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(76,175,80,0.1), rgba(33,150,243,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 40px;
    color: #4CAF50;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
}

.card-front h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.card-front p {
    color: #666;
    text-align: center;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.service-features li i {
    margin-right: 10px;
    color: #fff;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
    color: white;
}

.learn-more-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

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

/* Service Process Section */
.service-process {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #4CAF50, #2196F3);
}

.timeline-item {
    display: flex;
    justify-content: flex-start;
    padding-bottom: 50px;
    width: 50%;
    position: relative;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    justify-content: flex-start;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: absolute;
    left: -30px;
    top: 0;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -30px;
}

.timeline-icon i {
    font-size: 24px;
    color: #4CAF50;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-left: 60px;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 60px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.timeline-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Appointment Section */
.appointment-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    position: relative;
    overflow: hidden;
}

.appointment-content {
    color: white;
    padding-right: 50px;
}

.appointment-content .section-title {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 30px;
}

.appointment-content .section-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    line-height: 1.8;
}

.appointment-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: white;
}

.feature-item i {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4CAF50;
}

.appointment-form {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.form-floating > .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}

.form-floating > .form-control:focus {
    background: rgba(255,255,255,0.15);
    border-color: #00d2ff;
    box-shadow: 0 0 0 0.25rem rgba(0, 210, 255, 0.25);
}

.form-floating > label {
    color: rgba(255,255,255,0.7);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: #00d2ff;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #4CAF50, #2196F3);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .service-card-wrapper {
        height: 350px;
        margin-bottom: 30px;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        margin-left: 0;
    }
    
    .timeline-icon {
        left: 0;
    }
    
    .timeline-content {
        margin-left: 90px;
    }
    
    .appointment-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .appointment-features {
        align-items: center;
    }
}

@media (max-width: 576px) {
    .services-hero {
        min-height: 70vh;
        padding: 60px 0;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-badge {
        padding: 8px 20px;
    }
    
    .badge-text {
        font-size: 1rem;
    }
    
    .service-card-wrapper {
        height: 300px;
    }
    
    .card-front,
    .card-back {
        padding: 30px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
    }
    
    .service-icon i {
        font-size: 32px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .appointment-form {
        padding: 30px;
    }
}

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

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

/* Doctors Page Styles */
.doctors-hero {
    position: relative;
    min-height: 100vh;
    background: #0a1f44;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctors-hero .hero-bg {
    background: url('https://images.unsplash.com/photo-1504813184591-01572f98c85f?auto=format&fit=crop&q=80') center/cover;
    opacity: 0.2;
}

/* Department Filter Styles */
.department-filter {
    background: #f8f9fa;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.filter-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    background: white;
    color: #1a1a1a;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
    transform: translateY(-2px);
}

/* Doctor Card Styles */
.doctor-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

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

.doctor-image {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.doctor-card:hover .doctor-image img {
    transform: scale(1.1);
}

.doctor-image .social-links {
    position: absolute;
    top: 20px;
    right: -60px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.4s ease;
}

.doctor-card:hover .social-links {
    right: 20px;
}

.doctor-image .social-links a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.doctor-image .social-links a:hover {
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
    transform: scale(1.1);
}

.doctor-info {
    padding: 25px;
    position: relative;
}

.department-badge {
    display: inline-block;
    padding: 6px 15px;
    background: linear-gradient(45deg, rgba(0,123,255,0.1), rgba(0,210,255,0.1));
    color: #007bff;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.doctor-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.doctor-info .position {
    display: block;
    font-size: 1rem;
    color: #007bff;
    margin-bottom: 8px;
    font-weight: 500;
}

.doctor-info .specialty {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.doctor-info .stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0,123,255,0.05);
    border-radius: 10px;
}

.doctor-info .stat {
    flex: 1;
    text-align: center;
}

.doctor-info .stat .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 5px;
}

.doctor-info .stat .label {
    font-size: 0.8rem;
    color: #666;
}

.appointment-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.appointment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
    color: white;
}

/* Expertise Section Styles */
.expertise-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.expertise-content .section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(45deg, rgba(0,123,255,0.1), rgba(0,210,255,0.1));
    color: #007bff;
    border-radius: 30px;
    font-weight: 500;
    margin-bottom: 20px;
}

.expertise-content .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.expertise-content .section-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.expertise-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.expertise-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.expertise-features .feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.expertise-features .feature-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, rgba(0,123,255,0.1), rgba(0,210,255,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #007bff;
    transition: all 0.3s ease;
}

.expertise-features .feature-item:hover i {
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
    transform: rotate(360deg);
}

.expertise-features .feature-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.expertise-features .feature-text p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.expertise-image {
    position: relative;
    padding: 20px;
}

.expertise-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.expertise-image .experience-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 20px rgba(0,123,255,0.3);
    animation: pulse 2s infinite;
}

.expertise-image .experience-badge .number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.expertise-image .experience-badge .text {
    font-size: 0.9rem;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .doctor-image {
        height: 350px;
    }
    
    .expertise-content .section-title {
        font-size: 2rem;
    }
    
    .expertise-image .experience-badge {
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: 20px;
    }
    
    .expertise-image .experience-badge .number {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .doctor-image {
        height: 300px;
    }
    
    .doctor-info {
        padding: 20px;
    }
    
    .doctor-info h3 {
        font-size: 1.3rem;
    }
    
    .expertise-content .section-title {
        font-size: 1.75rem;
    }
    
    .expertise-features .feature-item {
        padding: 15px;
    }
    
    .expertise-features .feature-item i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Emergency & Contact Page Styles */
.emergency-hero {
    position: relative;
    min-height: 100vh;
    background: #0a1f44;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emergency-hero .hero-bg {
    background: url('https://images.unsplash.com/photo-1587351021759-3e566b6af7cc?auto=format&fit=crop&q=80') center/cover;
    opacity: 0.2;
}

.emergency-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    background: rgba(255,0,0,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    margin-bottom: 30px;
}

.emergency-badge .badge-text {
    color: #ff4444;
    font-weight: 600;
    margin-right: 10px;
}

.emergency-badge .badge-pulse {
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    animation: emergencyPulse 1.5s infinite;
}

@keyframes emergencyPulse {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255,68,68,0.7);
    }
    70% {
        transform: scale(1);
        opacity: 0.7;
        box-shadow: 0 0 0 15px rgba(255,68,68,0);
    }
    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255,68,68,0);
    }
}

.emergency-contact-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.emergency-btn, .hotline-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.emergency-btn {
    background: #ff4444;
    color: white;
}

.hotline-btn {
    background: rgba(255,255,255,0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.emergency-btn:hover {
    background: #ff0000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,0,0,0.3);
    color: white;
}

.hotline-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    color: white;
}

/* Emergency Services Section */
.emergency-services {
    background: #f8f9fa;
}

.emergency-content .section-badge {
    color: #ff4444;
    background: rgba(255,68,68,0.1);
}

.emergency-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.emergency-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    color: #1a1a1a; /* Added to ensure text visibility */
}

.emergency-features .feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.emergency-features .feature-item i {
    width: 50px;
    height: 50px;
    min-width: 50px; /* Added to prevent icon shrinking */
    background: rgba(255,68,68,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ff4444;
    transition: all 0.3s ease;
}

.emergency-features .feature-text {
    flex: 1;
}

.emergency-features .feature-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.emergency-features .feature-text p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

/* Response Badge Styles */
.response-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 140px; /* Increased width */
    height: 140px; /* Increased height */
    background: #ff4444;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 20px rgba(255,68,68,0.3);
    animation: pulse 2s infinite;
    padding: 15px; /* Added padding */
}

.response-badge .number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px; /* Added margin */
}

.response-badge .text {
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.2;
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .response-badge {
        width: 120px;
        height: 120px;
        bottom: 20px;
        right: 20px;
        padding: 10px;
    }
    
    .response-badge .number {
        font-size: 2rem;
    }
    
    .response-badge .text {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .emergency-features .feature-item {
        padding: 20px;
    }
    
    .emergency-features .feature-item i {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1.2rem;
    }
    
    .response-badge {
        width: 100px;
        height: 100px;
        padding: 8px;
    }
    
    .response-badge .number {
        font-size: 1.75rem;
    }
    
    .response-badge .text {
        font-size: 0.7rem;
    }
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.contact-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255,68,68,0.1) 0%, rgba(33,150,243,0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.contact-card .card-icon i {
    font-size: 32px;
    background: linear-gradient(135deg, #ff4444, #2196f3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.contact-card:hover .card-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, #ff4444, #2196f3);
}

.contact-card:hover .card-icon i {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff4444;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-card a i {
    transition: transform 0.3s ease;
}

.contact-card a:hover {
    color: #ff0000;
}

.contact-card a:hover i {
    transform: translateX(5px);
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, #0a1f44 0%, #1a3a6c 100%);
    color: white;
}

.contact-form-content .section-badge {
    background: rgba(255,255,255,0.1);
    color: white;
}

.contact-form-content .section-title {
    color: white;
}

.contact-form-content .section-description {
    color: rgba(255,255,255,0.8);
}

.contact-form {
    margin-top: 40px;
}

.form-floating > .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}

.form-floating > .form-control:focus {
    background: rgba(255,255,255,0.15);
    border-color: #ff4444;
    box-shadow: 0 0 0 0.25rem rgba(255,68,68,0.25);
}

.form-floating > label {
    color: rgba(255,255,255,0.7);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: rgba(255,255,255,0.9);
}

.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .emergency-contact-buttons {
        flex-direction: column;
    }
    
    .response-badge {
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: 20px;
    }
    
    .response-badge .number {
        font-size: 2rem;
    }
    
    .contact-card {
        margin-bottom: 30px;
    }
    
    .map-container {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .emergency-features .feature-item {
        padding: 20px;
    }
    
    .emergency-features .feature-item i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .contact-card {
        padding: 30px;
    }
    
    .contact-card .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-card .card-icon i {
        font-size: 24px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .appointment-form {
        padding: 30px;
    }
}

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

/* Typing animation styles */
.typing-animation {
    display: inline-block;
    overflow: hidden;
    border-right: 2px solid #fff;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end),
               blink-caret .75s step-end infinite;
    margin: 0 auto;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #fff }
}

/* Custom styles for the carousel */
.carousel {
    background: #000;
    min-height: 100vh;
}

.carousel-inner {
    height: 100vh;
}

.carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.carousel-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.carousel-text {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

/* Improved text wrapping solution */
.carousel-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.8s ease 0.2s;
    width: 100%;
    overflow-wrap: break-word; /* Breaks long words */
    word-wrap: break-word; /* Legacy for older browsers */
    word-break: break-word; /* Ensures words break if needed */
    white-space: normal !important; /* Override any nowrap */
    hyphens: auto; /* Adds hyphenation where appropriate */
    line-height: 1.3;
    padding-right: 15px;
}

.carousel-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
}

.carousel-item.active .carousel-text {
    opacity: 1;
    transform: translateX(0);
}

.carousel-item.active .carousel-title {
    opacity: 1;
    transform: translateY(0);
}

.carousel-item.active .carousel-description {
    opacity: 1;
    transform: translateY(0);
}

.carousel-image {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease 0.6s;
    max-height: 70vh;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.carousel-item.active .carousel-image {
    opacity: 1;
    transform: translateX(0);
}

/* Loading animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading.hidden {
    display: none;
}

/* Banner styles */
.carousel-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-title {
        font-size: 2rem;
    }

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

    .carousel-image {
        max-height: 50vh;
        margin-top: 2rem;
    }
}

.stylish_heading {
    font-weight: bold;
    color: #000000;
    text-align: center;
    position: relative;
    letter-spacing: 2px;
    padding-bottom: 15px;
}
.stylish-heading {
    font-weight: bold;
    color: #000000;
    text-align: center;
    position: relative;
    letter-spacing: 2px;
    padding-bottom: 15px;
}

/* Underline with Gradient */
.stylish-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 50%;
    height: 5px;
    background: linear-gradient(90deg, #1d4175, #0a8ba0 , #1d4175);
    transform: translateX(-50%);
    border-radius: 5px;
}

/* Subtle text shadow */
.stylish-heading {
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}

.rcmsec{
    padding-top: 50px;
    padding-bottom: 50px;
}

.custom-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #1e3c72, #142c5a);
    
    color: white;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease;
    height: 100%;
}

.custom-card:hover {
    transform: translateY(-12px);  /* Moves the card upwards */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);  /* Increases shadow on hover */
    background: linear-gradient(135deg, #1e3c72, #00b4b8);
    color: #f0f0f0;
}

.custom-card .card-body {
    padding: 20px;
    text-align: center;
    
}

.custom-card .card-title {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
}

.custom-card .card-text {
    font-size: 16px;
    color: #f1f1f1;
}

/* Image Styling */
.custom-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.heattocon{
    padding: 25px 0px;
}

.box_saparator{
    margin-top: 10px;
    margin-bottom: 10px;
}

.features_body {
    background: linear-gradient(to right, #00a1e2, #2575fc);
    color: white;
}
.rcm-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    color: black;
}
.rcm-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.3);
}
.rcm-card img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.4s ease;
}
.rcm-card:hover img {
    transform: scale(1.1);
}
.rcm-card .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}
.rcm-card:hover .card-body {
    transform: translateY(0);
}
.header_box{
    position: relative;
}
.logo_sz{
    width: 285px;
    position: absolute;
    left: 0px;
    z-index: 9999;
}
.top_sec{
    background: linear-gradient(to right, #00a1e2, #0574a2);
    color: white;
}
.tx_wh{
    font-weight: bold;
  color: white;
  text-align: center;
  position: relative;
  letter-spacing: 2px;
  padding-bottom: 15px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    font-weight: 600;
}

/* Footer Styles */
.footer-section {
    background: #1a1a1a;
    color: #fff;
    padding-top: 70px;
    position: relative;
}

.footer-top {
    padding-bottom: 40px;
}

.footer-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
}

.footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-links a:hover {
    background: #007bff;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 2px;
    background: #007bff;
    bottom: 0;
    left: 0;
}

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

.footer-links ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.footer-links ul li i {
    font-size: 12px;
    color: #007bff;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li:hover i {
    margin-right: 15px;
}

.footer-links ul li:hover a {
    color: #fff;
    padding-left: 5px;
}

.footer-contact p {
    line-height: 26px;
}

.footer-contact p i {
    color: #007bff;
    margin-right: 10px;
}

.footer-newsletter form {
    position: relative;
    margin-top: 20px;
}

.footer-newsletter input[type="email"] {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 4px;
}

.footer-newsletter button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    border: 0;
    background: #007bff;
    color: #fff;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    transition: all 0.3s ease;
}

.footer-newsletter button:hover {
    background: #0056b3;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
}

.credits {
    text-align: right;
}

.credits a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-left: 20px;
    transition: all 0.3s ease;
}

.credits a:hover {
    color: #007bff;
}

@media (max-width: 768px) {
    .footer-newsletter,
    .footer-contact,
    .footer-links,
    .footer-info {
        margin-bottom: 30px;
    }
    
    .credits {
        text-align: center;
        margin-top: 20px;
    }
    
    .copyright {
        text-align: center;
    }
}

/* Partner Section Styles */
.partner-section {
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    position: relative;
    overflow: hidden;
}

.partner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23000" opacity="0.05"/></svg>');
    pointer-events: none;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d2ff);
    border-radius: 2px;
}

/* Custom Accordion Styles */
.custom-accordion .accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 15px;
}

.custom-accordion .accordion-button {
    background: white;
    border: none;
    border-radius: 10px !important;
    padding: 20px 25px;
    font-weight: 600;
    color: #1a1a1a;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.custom-accordion .accordion-button:hover {
    transform: translateX(10px);
}

.custom-accordion .accordion-body {
    padding: 20px 25px;
    background: white;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

/* Partner Image Styles */
.partner-image {
    position: relative;
}

.image-container {
    position: relative;
    padding: 20px;
}

.floating {
    animation: floating 3s ease-in-out infinite;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
    animation: pulse 2s infinite;
}

.experience-badge .number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-align: center;
}

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

/* Hover Effects */
.custom-accordion .accordion-button i {
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:hover i {
    transform: scale(1.2);
}

/* Add AOS animations */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }
    
    .partner-image {
        margin-top: 40px;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .custom-accordion .accordion-button {
        padding: 15px 20px;
    }
    
    .experience-badge {
        width: 80px;
        height: 80px;
        padding: 10px;
    }
    
    .experience-badge .number {
        font-size: 1.5rem;
    }
    
    .experience-badge .text {
        font-size: 0.8rem;
    }
}

/* RCM Solutions Section Styles */
.rcm-solutions-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

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

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.main-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d2ff);
    transform: translateX(-50%);
    border-radius: 2px;
}

.main-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.solution-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.solution-card:hover::before {
    opacity: 0.05;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.solution-card:hover .card-icon img {
    transform: scale(1.1) rotate(5deg);
}

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

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.card-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.learn-more {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.learn-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.learn-more:hover {
    color: #0056b3;
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .main-title {
        font-size: 2rem;
    }
    
    .solution-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 1.75rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
}

/* Medical Coding Section Styles */
.medical-coding-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.medical-coding-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("images/chlanges.png");
    pointer-events: none;
    background-size: cover;
    background-position: center;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d2ff);
    border-radius: 2px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

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

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.icon-wrapper i {
    font-size: 28px;
    color: #007bff;
    transition: all 0.4s ease;
}

.feature-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.feature-card:hover .icon-wrapper i {
    color: white;
    transform: rotate(-10deg);
}

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

.content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hover-content {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    transition: all 0.4s ease;
    opacity: 0;
    z-index: 2;
}

.feature-card:hover .hover-content {
    bottom: 0;
    opacity: 1;
}

.learn-more-text {
    color: white;
    font-weight: 600;
    display: block;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .section-heading {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .section-heading {
        font-size: 1.75rem;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .icon-wrapper i {
        font-size: 24px;
    }
    
    .content h3 {
        font-size: 1.25rem;
    }
}

/* Get in Touch Section Styles */
.get-in-touch-section {
    position: relative;
    background: #0a1f44;
    overflow: hidden;
    padding: 100px 0;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0a1f44 0%, #1a3a6c 100%);
}

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

@keyframes backgroundMove {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

.contact-content {
    color: white;
    padding-right: 50px;
}

.contact-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #7eb6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-item i {
    color: #00d2ff;
    font-size: 1.5rem;
}

.contact-card2 {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(0deg);
    transition: transform 0.5s ease;
}

.contact-card2:hover {
    transform: perspective(1000px) rotateY(5deg);
}

.card-title {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.form-floating > .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.form-floating > .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #00d2ff;
    box-shadow: 0 0 0 0.25rem rgba(0, 210, 255, 0.25);
}

.form-floating > label {
    color: rgba(255, 255, 255, 0.7);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: #00d2ff;
}

.submit-btn {
    width: 100%;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

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

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

.submit-btn:hover i {
    transform: translateX(5px) rotate(45deg);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .contact-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }

    .contact-title {
        font-size: 2.2rem;
    }

    .feature-item {
        justify-content: center;
    }
}

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

    .contact-card {
        padding: 25px;
    }
}
.wh_color{
    color: white;
}

/* About Banner Styles */
.about-banner {
    position: relative;
    min-height: 100vh;
    background: #0a1f44;
    overflow: hidden;
}

.banner-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1538108149393-fbbd81895907?auto=format&fit=crop&q=80') center/cover;
    filter: brightness(0.3);
    animation: zoomInOut 20s infinite alternate;
    z-index: 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,123,255,0.9) 0%, rgba(0,210,255,0.7) 100%);
    mix-blend-mode: overlay;
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    padding: 150px 0;
    color: white;
    text-align: center;
}

.banner-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInDown 0.6s ease forwards;
}

.badge-text {
    font-size: 1rem;
    font-weight: 500;
    color: #00d2ff;
    margin-right: 10px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #00d2ff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.banner-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.gradient-text {
    background: linear-gradient(45deg, #ffffff, #7eb6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.typing-text {
    position: relative;
    display: inline-block;
    font-size: 3.5rem;
    color: #ffffff;
    min-height: 80px;
}

.typing-text::after {
    content: '|';
    position: absolute;
    right: -10px;
    animation: blink 0.7s infinite;
}

.banner-description {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

.banner-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.feature {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 28px;
    color: #00d2ff;
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.feature:hover .feature-icon i {
    color: white;
}

.feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

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

.banner-cta {
    margin-top: 50px;
}

.btn-discover {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    color: white;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-discover::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

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

.btn-discover:hover::before {
    transform: rotate(45deg) translateY(300%);
}

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

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

.banner-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 2;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0,210,255,0.7);
    }
    70% {
        transform: scale(1);
        opacity: 0.7;
        box-shadow: 0 0 0 10px rgba(0,210,255,0);
    }
    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0,210,255,0);
    }
}

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

/* Responsive Styles */
@media (max-width: 991px) {
    .banner-title {
        font-size: 3.5rem;
    }
    
    .typing-text {
        font-size: 2.8rem;
    }
    
    .banner-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 2.8rem;
    }
    
    .typing-text {
        font-size: 2.2rem;
    }
    
    .banner-features {
        grid-template-columns: 1fr;
    }
    
    .banner-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .banner-title {
        font-size: 2.2rem;
    }
    
    .typing-text {
        font-size: 1.8rem;
    }
    
    .feature {
        padding: 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 24px;
    }
}

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

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

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(45deg, #007bff20, #00d2ff20);
    color: #007bff;
    border-radius: 30px;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    opacity: 0.1;
    border-radius: 30px;
    z-index: -1;
    animation: pulse 2s infinite;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Stats Container Styles */
.stats-container {
    margin-bottom: 60px;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-card:hover::before {
    opacity: 0.05;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.stat-icon i {
    font-size: 28px;
    color: #007bff;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.stat-card:hover .stat-icon i {
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    position: relative;
    z-index: 2;
}

/* Feature Box Styles */
.feature-box {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.feature-box:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-box:hover::before {
    opacity: 0.05;
}

.feature-box .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.feature-box .feature-icon i {
    font-size: 32px;
    color: #007bff;
    transition: all 0.4s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.feature-box:hover .feature-icon i {
    color: white;
    transform: rotate(-10deg);
}

.feature-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.feature-box p {
    color: #666;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.feature-box .hover-content {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    transition: all 0.4s ease;
    opacity: 0;
    z-index: 2;
}

.feature-box:hover .hover-content {
    bottom: 0;
    opacity: 1;
}

.feature-box .learn-more {
    color: white;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.feature-box .learn-more i {
    transition: transform 0.3s ease;
}

.feature-box:hover .learn-more i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .stat-card {
        margin-bottom: 30px;
    }
    
    .feature-box {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .stat-icon, .feature-box .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i, .feature-box .feature-icon i {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Mission & Vision Section Styles */
.mission-vision {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

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

.mission-card,
.vision-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

.mission-card:hover::before,
.vision-card:hover::before {
    opacity: 0.05;
}

.mission-card .card-icon,
.vision-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.mission-card .card-icon i,
.vision-card .card-icon i {
    font-size: 32px;
    color: #007bff;
    transition: all 0.4s ease;
}

.mission-card:hover .card-icon,
.vision-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.mission-card:hover .card-icon i,
.vision-card:hover .card-icon i {
    color: white;
    transform: rotate(-10deg);
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.mission-card p,
.vision-card p {
    color: #666;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    line-height: 1.6;
}

.mission-points,
.vision-points {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.mission-points li,
.vision-points li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #666;
    font-size: 1.1rem;
}

.mission-points li i,
.vision-points li i {
    color: #007bff;
    margin-right: 10px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-points li i,
.vision-card:hover .vision-points li i {
    transform: scale(1.2);
}

/* Value Cards */
.value-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.value-card .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff20, #00d2ff20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.value-card .card-icon i {
    font-size: 28px;
    color: #007bff;
    transition: all 0.4s ease;
}

.value-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #007bff, #00d2ff);
}

.value-card:hover .card-icon i {
    color: white;
    transform: rotate(-10deg);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.value-card p {
    color: #666;
    position: relative;
    z-index: 2;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .mission-card,
    .vision-card {
        margin-bottom: 30px;
    }
    
    .value-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .mission-card h3,
    .vision-card h3 {
        font-size: 1.5rem;
    }
    
    .mission-card p,
    .vision-card p,
    .mission-points li,
    .vision-points li {
        font-size: 1rem;
    }
    
    .value-card .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-card .card-icon i {
        font-size: 24px;
    }
}

/* Team Section Styles */
.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

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

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 30px;
}

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

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.team-card:hover .member-image img {
    transform: scale(1.1);
}

.social-links {
    position: absolute;
    top: 20px;
    right: -60px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.4s ease;
}

.team-card:hover .social-links {
    right: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-links a:hover {
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
    transform: scale(1.1);
}

.member-info {
    padding: 25px;
    text-align: center;
    position: relative;
}

.member-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #00d2ff);
    border-radius: 2px;
}

.member-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.member-info .position {
    display: block;
    font-size: 1rem;
    color: #007bff;
    margin-bottom: 8px;
    font-weight: 500;
}

.member-info .specialty {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

.view-all-btn:hover::before {
    transform: rotate(45deg) translateY(300%);
}

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

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

/* Responsive Adjustments */
@media (max-width: 991px) {
    .team-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .member-image img {
        height: 350px;
    }
    
    .member-info h3 {
        font-size: 1.3rem;
    }
    
    .member-info .position {
        font-size: 0.9rem;
    }
}
.our-services{
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Services Page Specific Styles */
.services-hero {
    position: relative;
    min-height: 100vh; /* Changed to 100vh */
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0; /* Removed padding */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1631217868264-e5b90bb7e133?auto=format&fit=crop&q=80') center/cover;
    opacity: 0.2;
    animation: scale 20s infinite alternate;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(41,128,185,0.9) 0%, rgba(52,152,219,0.8) 100%);
    mix-blend-mode: multiply;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh; /* Added */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    margin-bottom: 30px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.badge-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    margin-right: 10px;
    letter-spacing: 1px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards 0.3s;
}

.gradient-text {
    background: linear-gradient(45deg, #fff, #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards 0.6s;
}

/* Featured Services Section */
.featured-services {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(45deg, rgba(76,175,80,0.1), rgba(33,150,243,0.1));
    color: black;
    border-radius: 30px;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.service-card-wrapper {
    perspective: 1000px;
    height: 400px;
}

.service-card {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-wrapper:hover .service-card {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-front {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-back {
    background: linear-gradient(135deg, #4CAF50, #2196F3);
    color: white;
    transform: rotateY(180deg);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(76,175,80,0.1), rgba(33,150,243,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 40px;
    color: #4CAF50;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
}

.card-front h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.card-front p {
    color: #666;
    text-align: center;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.service-features li i {
    margin-right: 10px;
    color: #fff;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
    color: white;
}

.learn-more-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

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

/* Service Process Section */
.service-process {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #4CAF50, #2196F3);
}

.timeline-item {
    display: flex;
    justify-content: flex-start;
    padding-bottom: 50px;
    width: 50%;
    position: relative;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    justify-content: flex-start;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: absolute;
    left: -30px;
    top: 0;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -30px;
}

.timeline-icon i {
    font-size: 24px;
    color: #4CAF50;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-left: 60px;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 60px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.timeline-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Appointment Section */
.appointment-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    position: relative;
    overflow: hidden;
}

.appointment-content {
    color: white;
    padding-right: 50px;
}

.appointment-content .section-title {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 30px;
}

.appointment-content .section-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    line-height: 1.8;
}

.appointment-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: white;
}

.feature-item i {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.appointment-form {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.form-floating > .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}

.form-floating > .form-control:focus {
    background: rgba(255,255,255,0.15);
    border-color: #4CAF50;
    box-shadow: 0 0 0 0.25rem rgba(76,175,80,0.25);
}

.form-floating > label {
    color: rgba(255,255,255,0.7);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: rgba(255,255,255,0.9);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #4CAF50, #2196F3);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .service-card-wrapper {
        height: 350px;
        margin-bottom: 30px;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        margin-left: 0;
    }
    
    .timeline-icon {
        left: 0;
    }
    
    .timeline-content {
        margin-left: 90px;
    }
    
    .appointment-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .appointment-features {
        align-items: center;
    }
}

@media (max-width: 576px) {
    .services-hero {
        min-height: 70vh;
        padding: 60px 0;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-badge {
        padding: 8px 20px;
    }
    
    .badge-text {
        font-size: 1rem;
    }
    
    .service-card-wrapper {
        height: 300px;
    }
    
    .card-front,
    .card-back {
        padding: 30px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
    }
    
    .service-icon i {
        font-size: 32px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .appointment-form {
        padding: 30px;
    }
}

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

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

/* Doctors Page Styles */
.doctors-hero {
    position: relative;
    min-height: 100vh;
    background: #0a1f44;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctors-hero .hero-bg {
    background: url('https://images.unsplash.com/photo-1504813184591-01572f98c85f?auto=format&fit=crop&q=80') center/cover;
    opacity: 0.2;
}

/* Department Filter Styles */
.department-filter {
    background: #f8f9fa;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.filter-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    background: white;
    color: #1a1a1a;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
    transform: translateY(-2px);
}

/* Doctor Card Styles */
.doctor-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

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

.doctor-image {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.doctor-card:hover .doctor-image img {
    transform: scale(1.1);
}

.doctor-image .social-links {
    position: absolute;
    top: 20px;
    right: -60px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.4s ease;
}

.doctor-card:hover .social-links {
    right: 20px;
}

.doctor-image .social-links a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.doctor-image .social-links a:hover {
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
    transform: scale(1.1);
}

.doctor-info {
    padding: 25px;
    position: relative;
}

.department-badge {
    display: inline-block;
    padding: 6px 15px;
    background: linear-gradient(45deg, rgba(0,123,255,0.1), rgba(0,210,255,0.1));
    color: #007bff;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.doctor-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.doctor-info .position {
    display: block;
    font-size: 1rem;
    color: #007bff;
    margin-bottom: 8px;
    font-weight: 500;
}

.doctor-info .specialty {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.doctor-info .stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0,123,255,0.05);
    border-radius: 10px;
}

.doctor-info .stat {
    flex: 1;
    text-align: center;
}

.doctor-info .stat .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 5px;
}

.doctor-info .stat .label {
    font-size: 0.8rem;
    color: #666;
}

.appointment-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.appointment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
    color: white;
}

/* Expertise Section Styles */
.expertise-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.expertise-content .section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(45deg, rgba(0,123,255,0.1), rgba(0,210,255,0.1));
    color: #007bff;
    border-radius: 30px;
    font-weight: 500;
    margin-bottom: 20px;
}

.expertise-content .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.expertise-content .section-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.expertise-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.expertise-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.expertise-features .feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.expertise-features .feature-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, rgba(0,123,255,0.1), rgba(0,210,255,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #007bff;
    transition: all 0.3s ease;
}

.expertise-features .feature-item:hover i {
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
    transform: rotate(360deg);
}

.expertise-features .feature-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.expertise-features .feature-text p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.expertise-image {
    position: relative;
    padding: 20px;
}

.expertise-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.expertise-image .experience-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 20px rgba(0,123,255,0.3);
    animation: pulse 2s infinite;
}

.expertise-image .experience-badge .number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.expertise-image .experience-badge .text {
    font-size: 0.9rem;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .doctor-image {
        height: 350px;
    }
    
    .expertise-content .section-title {
        font-size: 2rem;
    }
    
    .expertise-image .experience-badge {
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: 20px;
    }
    
    .expertise-image .experience-badge .number {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .doctor-image {
        height: 300px;
    }
    
    .doctor-info {
        padding: 20px;
    }
    
    .doctor-info h3 {
        font-size: 1.3rem;
    }
    
    .expertise-content .section-title {
        font-size: 1.75rem;
    }
    
    .expertise-features .feature-item {
        padding: 15px;
    }
    
    .expertise-features .feature-item i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Emergency & Contact Page Styles */
.emergency-hero {
    position: relative;
    min-height: 100vh;
    background: #0a1f44;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emergency-hero .hero-bg {
    background: url('https://images.unsplash.com/photo-1587351021759-3e566b6af7cc?auto=format&fit=crop&q=80') center/cover;
    opacity: 0.2;
}

.emergency-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    background: rgba(255,0,0,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    margin-bottom: 30px;
}

.emergency-badge .badge-text {
    color: #ff4444;
    font-weight: 600;
    margin-right: 10px;
}

.emergency-badge .badge-pulse {
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    animation: emergencyPulse 1.5s infinite;
}

@keyframes emergencyPulse {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255,68,68,0.7);
    }
    70% {
        transform: scale(1);
        opacity: 0.7;
        box-shadow: 0 0 0 15px rgba(255,68,68,0);
    }
    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255,68,68,0);
    }
}

.emergency-contact-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.emergency-btn, .hotline-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.emergency-btn {
    background: #ff4444;
    color: white;
}

.hotline-btn {
    background: rgba(255,255,255,0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.emergency-btn:hover {
    background: #ff0000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,0,0,0.3);
    color: white;
}

.hotline-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    color: white;
}

/* Emergency Services Section */
.emergency-services {
    background: #f8f9fa;
}

.emergency-content .section-badge {
    color: #ff4444;
    background: rgba(255,68,68,0.1);
}

.emergency-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.emergency-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    color: #1a1a1a; /* Added to ensure text visibility */
}

.emergency-features .feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.emergency-features .feature-item i {
    width: 50px;
    height: 50px;
    min-width: 50px; /* Added to prevent icon shrinking */
    background: rgba(255,68,68,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ff4444;
    transition: all 0.3s ease;
}

.emergency-features .feature-text {
    flex: 1;
}

.emergency-features .feature-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.emergency-features .feature-text p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

/* Response Badge Styles */
.response-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 140px; /* Increased width */
    height: 140px; /* Increased height */
    background: #ff4444;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 20px rgba(255,68,68,0.3);
    animation: pulse 2s infinite;
    padding: 15px; /* Added padding */
}

.response-badge .number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px; /* Added margin */
}

.response-badge .text {
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.2;
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .response-badge {
        width: 120px;
        height: 120px;
        bottom: 20px;
        right: 20px;
        padding: 10px;
    }
    
    .response-badge .number {
        font-size: 2rem;
    }
    
    .response-badge .text {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .emergency-features .feature-item {
        padding: 20px;
    }
    
    .emergency-features .feature-item i {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1.2rem;
    }
    
    .response-badge {
        width: 100px;
        height: 100px;
        padding: 8px;
    }
    
    .response-badge .number {
        font-size: 1.75rem;
    }
    
    .response-badge .text {
        font-size: 0.7rem;
    }
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.contact-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255,68,68,0.1) 0%, rgba(33,150,243,0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.contact-card .card-icon i {
    font-size: 32px;
    background: linear-gradient(135deg, #ff4444, #2196f3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.contact-card:hover .card-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, #ff4444, #2196f3);
}

.contact-card:hover .card-icon i {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff4444;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-card a i {
    transition: transform 0.3s ease;
}

.contact-card a:hover {
    color: #ff0000;
}

.contact-card a:hover i {
    transform: translateX(5px);
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, #0a1f44 0%, #1a3a6c 100%);
    color: white;
}

.contact-form-content .section-badge {
    background: rgba(255,255,255,0.1);
    color: white;
}

.contact-form-content .section-title {
    color: white;
}

.contact-form-content .section-description {
    color: rgba(255,255,255,0.8);
}

.contact-form {
    margin-top: 40px;
}

.form-floating > .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}

.form-floating > .form-control:focus {
    background: rgba(255,255,255,0.15);
    border-color: #ff4444;
    box-shadow: 0 0 0 0.25rem rgba(255,68,68,0.25);
}

.form-floating > label {
    color: rgba(255,255,255,0.7);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: rgba(255,255,255,0.9);
}

.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .emergency-contact-buttons {
        flex-direction: column;
    }
    
    .response-badge {
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: 20px;
    }
    
    .response-badge .number {
        font-size: 2rem;
    }
    
    .contact-card {
        margin-bottom: 30px;
    }
    
    .map-container {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .emergency-features .feature-item {
        padding: 20px;
    }
    
    .emergency-features .feature-item i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .contact-card {
        padding: 30px;
    }
    
    .contact-card .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-card .card-icon i {
        font-size: 24px;
    }
}



/* Community Health Page Styles */







/* Anesthesia Page Styles */
.anesthesia-hero {
    position: relative;
    min-height: 100vh;
    padding: 100px 0;
    overflow: hidden;
}

.anesthesia-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?auto=format&fit=crop&q=80') center/cover;
    opacity: 0.2;
    z-index: -2;
}

.anesthesia-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #dc3545 0%, #ff5722 100%);
    opacity: 0.9;
    z-index: -1;
}

.anesthesia-hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.anesthesia-hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
}

.anesthesia-badge-text {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.anesthesia-badge-pulse {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    margin-left: 10px;
    animation: pulse 2s infinite;
}

.anesthesia-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.anesthesia-hero-description {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.anesthesia-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.anesthesia-call-btn,
.anesthesia-learn-btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.anesthesia-call-btn {
    background: #fff;
    color: #dc3545;
}

.anesthesia-learn-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
}

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

.anesthesia-learn-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.anesthesia-services {
    padding: 100px 0;
    background: #f8f9fa;
}

.anesthesia-section-header {
    margin-bottom: 60px;
}

.anesthesia-section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #dc3545 0%, #ff5722 100%);
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.anesthesia-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #0a1f44;
    margin-bottom: 20px;
}

.anesthesia-section-subtitle {
    font-size: 18px;
    color: #6b7c93;
}

.anesthesia-service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.anesthesia-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #dc3545 0%, #ff5722 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 0;
}

.anesthesia-service-card:hover::before {
    opacity: 0.05;
}

.anesthesia-service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc3545 0%, #ff5722 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.anesthesia-service-icon i {
    font-size: 32px;
    color: #fff;
}

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

.anesthesia-service-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0a1f44;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.anesthesia-service-card p {
    color: #6b7c93;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.anesthesia-learn-more {
    color: #dc3545;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.anesthesia-learn-more:hover {
    color: #ff5722;
}

.anesthesia-learn-more:hover i {
    transform: translateX(5px);
}

.anesthesia-features {
    padding: 100px 0;
}

.anesthesia-features-content {
    padding-right: 50px;
}

.anesthesia-features-list {
    margin-top: 40px;
}

.anesthesia-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.anesthesia-feature-item:hover {
    background: rgba(220, 53, 69, 0.05);
}

.anesthesia-feature-item i {
    font-size: 24px;
    color: #dc3545;
    transition: all 0.3s ease;
}

.anesthesia-feature-text h4 {
    font-size: 20px;
    font-weight: 600;
    color: #0a1f44;
    margin-bottom: 10px;
}

.anesthesia-feature-text p {
    color: #6b7c93;
    margin: 0;
}

.anesthesia-features-image {
    position: relative;
}

.anesthesia-features-image img {
    width: 100%;
    border-radius: 20px;
}

.anesthesia-stats-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #dc3545 0%, #ff5722 100%);
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.anesthesia-stats-number {
    font-size: 32px;
    font-weight: 700;
    display: block;
}

.anesthesia-stats-text {
    font-size: 14px;
    opacity: 0.9;
}

.anesthesia-process {
    padding: 100px 0;
    background: #f8f9fa;
}

.anesthesia-process-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.anesthesia-process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc3545 0%, #ff5722 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.3s ease;
}

.anesthesia-process-icon i {
    font-size: 32px;
    color: #fff;
}

.anesthesia-process-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0a1f44;
    margin-bottom: 15px;
}

.anesthesia-process-card p {
    color: #6b7c93;
    margin-bottom: 25px;
}

.anesthesia-process-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.anesthesia-process-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6b7c93;
    margin-bottom: 10px;
}

.anesthesia-process-features li i {
    color: #dc3545;
}

.anesthesia-contact {
    padding: 100px 0;
}

.anesthesia-contact-content {
    padding-right: 50px;
}

.anesthesia-contact-info {
    margin-top: 40px;
}

.anesthesia-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.anesthesia-contact-item:hover {
    background: rgba(220, 53, 69, 0.05);
}

.anesthesia-contact-item i {
    font-size: 24px;
    color: #dc3545;
}

.anesthesia-contact-text h4 {
    font-size: 20px;
    font-weight: 600;
    color: #0a1f44;
    margin-bottom: 5px;
}

.anesthesia-contact-text p {
    color: #6b7c93;
    margin: 0;
}

.anesthesia-contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.anesthesia-contact-form h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0a1f44;
    margin-bottom: 30px;
}

.anesthesia-contact-form .form-control {
    height: 50px;
    border-radius: 10px;
    border: 1px solid #e5e9f2;
    padding: 10px 20px;
    margin-bottom: 20px;
}

.anesthesia-contact-form .form-control:focus {
    border-color: #dc3545;
    box-shadow: none;
}

.anesthesia-submit-btn {
    background: linear-gradient(135deg, #dc3545 0%, #ff5722 100%);
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

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

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

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

@media (max-width: 991px) {
    .anesthesia-hero-title {
        font-size: 36px;
    }

    .anesthesia-features-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .anesthesia-feature-item {
        padding: 15px;
    }

    .anesthesia-stats-badge {
        position: relative;
        bottom: auto;
        right: auto;
        display: inline-block;
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .anesthesia-hero-title {
        font-size: 28px;
    }

    .anesthesia-section-title {
        font-size: 28px;
    }

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

    .anesthesia-service-icon i {
        font-size: 24px;
    }

    .anesthesia-feature-item {
        flex-direction: column;
        text-align: center;
    }

    .anesthesia-feature-item i {
        margin-bottom: 10px;
    }

    .anesthesia-process-icon {
        width: 60px;
        height: 60px;
    }

    .anesthesia-process-icon i {
        font-size: 24px;
    }

    .anesthesia-contact-form {
        padding: 30px 20px;
    }
}
/* // ... existing code ... */

/* Cardiology Page Styles */
.cardiology-hero {
    position: relative;
    min-height: 100vh;
    padding: 100px 0;
    overflow: hidden;
}

.cardiology-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?auto=format&fit=crop&q=80') center/cover;
    opacity: 0.2;
    z-index: -2;
}

.cardiology-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #dc3545 0%, #ff5722 100%);
    opacity: 0.9;
    z-index: -1;
}

.cardiology-hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.cardiology-hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
}

.cardiology-badge-text {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.cardiology-badge-pulse {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    margin-left: 10px;
    animation: pulse 2s infinite;
}

.cardiology-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cardiology-hero-description {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cardiology-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cardiology-call-btn,
.cardiology-learn-btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cardiology-call-btn {
    background: #fff;
    color: #dc3545;
}

.cardiology-learn-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
}

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

.cardiology-learn-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cardiology-services {
    padding: 100px 0;
    background: #f8f9fa;
}

.cardiology-section-header {
    margin-bottom: 60px;
}

.cardiology-section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #dc3545 0%, #ff5722 100%);
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.cardiology-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #0a1f44;
    margin-bottom: 20px;
}

.cardiology-section-subtitle {
    font-size: 18px;
    color: #6b7c93;
}

.cardiology-service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.cardiology-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #dc3545 0%, #ff5722 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 0;
}

.cardiology-service-card:hover::before {
    opacity: 0.05;
}

.cardiology-service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc3545 0%, #ff5722 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.cardiology-service-icon i {
    font-size: 32px;
    color: #fff;
}

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

.cardiology-service-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0a1f44;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cardiology-service-card p {
    color: #6b7c93;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.cardiology-learn-more {
    color: #dc3545;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.cardiology-learn-more:hover {
    color: #ff5722;
}

.cardiology-learn-more:hover i {
    transform: translateX(5px);
}

.cardiology-features {
    padding: 100px 0;
}

.cardiology-features-content {
    padding-right: 50px;
}

.cardiology-features-list {
    margin-top: 40px;
}

.cardiology-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.cardiology-feature-item:hover {
    background: rgba(220, 53, 69, 0.05);
}

.cardiology-feature-item i {
    font-size: 24px;
    color: #dc3545;
    transition: all 0.3s ease;
}

.cardiology-feature-text h4 {
    font-size: 20px;
    font-weight: 600;
    color: #0a1f44;
    margin-bottom: 10px;
}

.cardiology-feature-text p {
    color: #6b7c93;
    margin: 0;
}

.cardiology-features-image {
    position: relative;
}

.cardiology-features-image img {
    width: 100%;
    border-radius: 20px;
}

.cardiology-stats-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #dc3545 0%, #ff5722 100%);
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.cardiology-stats-number {
    font-size: 32px;
    font-weight: 700;
    display: block;
}

.cardiology-stats-text {
    font-size: 14px;
    opacity: 0.9;
}

.cardiology-treatments {
    padding: 100px 0;
    background: #f8f9fa;
}

.cardiology-treatment-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.cardiology-treatment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc3545 0%, #ff5722 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.3s ease;
}

.cardiology-treatment-icon i {
    font-size: 32px;
    color: #fff;
}

.cardiology-treatment-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0a1f44;
    margin-bottom: 15px;
}

.cardiology-treatment-card p {
    color: #6b7c93;
    margin-bottom: 25px;
}

.cardiology-treatment-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.cardiology-treatment-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6b7c93;
    margin-bottom: 10px;
}

.cardiology-treatment-features li i {
    color: #dc3545;
}

.cardiology-contact {
    padding: 100px 0;
}

.cardiology-contact-content {
    padding-right: 50px;
}

.cardiology-contact-info {
    margin-top: 40px;
}

.cardiology-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.cardiology-contact-item:hover {
    background: rgba(220, 53, 69, 0.05);
}

.cardiology-contact-item i {
    font-size: 24px;
    color: #dc3545;
}

.cardiology-contact-text h4 {
    font-size: 20px;
    font-weight: 600;
    color: #0a1f44;
    margin-bottom: 5px;
}

.cardiology-contact-text p {
    color: #6b7c93;
    margin: 0;
}

.cardiology-contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cardiology-contact-form h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0a1f44;
    margin-bottom: 30px;
}

.cardiology-contact-form .form-control {
    height: 50px;
    border-radius: 10px;
    border: 1px solid #e5e9f2;
    padding: 10px 20px;
    margin-bottom: 20px;
}

.cardiology-contact-form .form-control:focus {
    border-color: #dc3545;
    box-shadow: none;
}

.cardiology-submit-btn {
    background: linear-gradient(135deg, #dc3545 0%, #ff5722 100%);
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

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

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

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

@media (max-width: 991px) {
    .cardiology-hero-title {
        font-size: 36px;
    }

    .cardiology-features-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .cardiology-feature-item {
        padding: 15px;
    }

    .cardiology-stats-badge {
        position: relative;
        bottom: auto;
        right: auto;
        display: inline-block;
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .cardiology-hero-title {
        font-size: 28px;
    }

    .cardiology-section-title {
        font-size: 28px;
    }

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

    .cardiology-service-icon i {
        font-size: 24px;
    }

    .cardiology-feature-item {
        flex-direction: column;
        text-align: center;
    }

    .cardiology-feature-item i {
        margin-bottom: 10px;
    }

    .cardiology-treatment-icon {
        width: 60px;
        height: 60px;
    }

    .cardiology-treatment-icon i {
        font-size: 24px;
    }

    .cardiology-contact-form {
        padding: 30px 20px;
    }
}


            .coronis-navbar {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 30px rgba(0, 86, 179, 0.1);
            padding: 0.5rem 0;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            border-bottom: 1px solid rgba(0, 86, 179, 0.08);
        }

        .coronis-navbar.scrolled {
            padding: 0.25rem 0;
            box-shadow: 0 4px 20px rgba(0, 86, 179, 0.15);
        }

        .navbar-brand img {
            height: 40px;
            transition: all 0.3s ease;
        }

        .scrolled .navbar-brand img {
            height: 35px;
        }

        .coronis-navbar .nav-link {
            font-weight: 600;
            color: #1a2b49;
            padding: 0.75rem 1rem;
            margin: 0 0.25rem;
            position: relative;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }

        .coronis-navbar .nav-link:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: #0056b3;
            transition: all 0.3s ease;
        }

        .coronis-navbar .nav-link:hover,
        .coronis-navbar .nav-link.active {
            color: #0056b3;
        }

        .coronis-navbar .nav-link:hover:before,
        .coronis-navbar .nav-link.active:before {
            width: calc(100% - 2rem);
        }

        /* Mega Dropdown */
        .mega-dropdown .dropdown-menu {
            width: 100vw;
            left: 50% !important;
            transform: translateX(-50%) !important;
            margin-top: 0.5rem;
            border: none;
            border-radius: 0 0 12px 12px;
            padding: 2rem;
            background: white;
            box-shadow: 0 15px 40px rgba(0, 86, 179, 0.15);
            border-top: 3px solid #0056b3;
        }
        .mega-dropdown .dropdown-menu2 {
            width: 50vw;
            left: 50% !important;
            transform: translateX(-50%) !important;
            margin-top: 0.5rem;
            border: none;
            border-radius: 0 0 12px 12px;
            padding: 2rem;
            background: white;
            box-shadow: 0 15px 40px rgba(0, 86, 179, 0.15);
            border-top: 3px solid #0056b3;
        }

        .mega-dropdown:hover .dropdown-menu {
            display: block !important;
            animation: fadeInUp 0.3s both;
        }

        .dropdown-header {
            color: #0056b3;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(0, 86, 179, 0.1);
        }

        .dropdown-item {
            padding: 0.5rem 1rem;
            color: #1a2b49;
            font-weight: 500;
            border-radius: 4px;
            transition: all 0.2s ease;
            margin-bottom: 0.25rem;
        }

        .dropdown-item:hover {
            background: #e6f0fa;
            color: #0056b3;
            transform: translateX(5px);
        }

        /* Emergency Button */
        .emergency-btn {
            background: linear-gradient(135deg, #ff7e33, #e65c00);
            color: white !important;
            border-radius: 6px;
            padding: 0.75rem 1.5rem !important;
            margin-left: 0.5rem !important;
            box-shadow: 0 4px 15px rgba(255, 126, 51, 0.3);
            transition: all 0.3s ease;
        }

        .emergency-btn:before {
            display: none;
        }

        .emergency-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 126, 51, 0.4);
            color: white !important;
        }

        /* Mobile Menu */
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
            font-size: 1.25rem;
            color: #1a2b49;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateX(-50%) translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 992px) {
            .coronis-navbar {
                padding: 0.5rem 1rem;
            }
            
            .mega-dropdown .dropdown-menu {
                width: 100%;
                position: static !important;
                transform: none !important;
                box-shadow: none;
                border-top: none;
                padding: 1rem;
                margin-top: 0;
            }
            
            .coronis-navbar .nav-link {
                padding: 0.5rem 0;
                margin: 0;
            }
            
            .emergency-btn {
                margin: 0.5rem 0 0 0 !important;
                display: inline-block;
                width: auto;
            }
        }
.sec_hed_colored{
    color: white;
    text-shadow: -1px 1px 3px gray;
}

  .get-in-touch-section {
    background: linear-gradient(135deg, #f8fcff 0%, #e6f7ff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  
  .get-in-touch-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,174,239,0.1) 0%, rgba(0,174,239,0) 70%);
    z-index: 0;
  }
  
  .touch-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  
  .touch-content {
    flex: 1;
    padding-right: 50px;
  }
  
  .logo-animation {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
  }
  
  .logo-circle {
    width: 60px;
    height: 60px;
    margin-right: 20px;
    animation: rotate 15s linear infinite;
  }
  
  @keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  .pulse {
    animation: pulse 2s ease-in-out infinite;
  }
  
  @keyframes pulse {
    0% { opacity: 0.7; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1); }
    100% { opacity: 0.7; transform: scale(0.95); }
  }
  
  .logo-text {
    display: flex;
    flex-direction: column;
  }
  
  .logo-hospital {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    letter-spacing: 1px;
  }
  
  .logo-billing {
    font-size: 24px;
    font-weight: 800;
    color: #00aeef;
    letter-spacing: 1px;
  }
  
  .touch-title {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.3;
  }
  
  .touch-description {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
  }
  
  .touch-button {
    position: relative;
    background: #00aeef;
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,174,239,0.3);
  }
  
  .touch-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0,174,239,0.4);
  }
  
  .touch-button:active {
    transform: translateY(0);
  }
  
  .button-text {
    position: relative;
    z-index: 2;
  }
  
  .button-icon {
    margin-left: 10px;
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
  }
  
  .touch-button:hover .button-icon {
    transform: translateX(5px);
  }
  
  .button-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    top: 0;
    left: 0;
    border-radius: 50px;
    animation: buttonPulse 2s infinite;
    z-index: 1;
  }
  
  @keyframes buttonPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
  }
  
  .touch-graphic {
    flex: 1;
    position: relative;
    height: 400px;
  }
  
  .graphic-element {
    position: absolute;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
  }
  
  .graphic-element img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .graphic-1 {
    width: 200px;
    height: 250px;
    top: 0;
    left: 0;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
  }
  
  .graphic-2 {
    width: 250px;
    height: 200px;
    top: 50px;
    right: 0;
    z-index: 2;
    animation: float 8s ease-in-out infinite 1s;
  }
  
  .graphic-3 {
    width: 180px;
    height: 220px;
    bottom: 0;
    left: 100px;
    z-index: 3;
    animation: float 7s ease-in-out infinite 0.5s;
  }
  
  @keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
  }
  
  /* Responsive adjustments */
  @media (max-width: 992px) {
    .touch-container {
      flex-direction: column;
      text-align: center;
    }
    
    .touch-content {
      padding-right: 0;
      margin-bottom: 50px;
    }
    
    .logo-animation {
      justify-content: center;
    }
    
    .touch-description {
      margin-left: auto;
      margin-right: auto;
    }
    
    .touch-graphic {
      width: 100%;
      height: 300px;
    }
  }
 

    .what_clint_says_section {
        padding: 80px 0;
        background-color: #f9fbfe;
        position: relative;
    }
    
    .what_clint_says_header h2 {
        font-size: 36px;
        color: #222;
        margin-bottom: 15px;
        font-weight: 700;
    }
    
    .what_clint_says_accent_line {
        width: 60px;
        height: 3px;
        background: #00aeef;
        margin-bottom: 50px;
    }
    
    .what_clint_says_card {
        background: white;
        border-radius: 12px;
        padding: 50px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.05);
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        display: flex;
        gap: 30px;
    }
    
    .what_clint_says_quote_icon {
        color: #00aeef;
        font-size: 36px;
        opacity: 0.2;
        position: absolute;
        top: 30px;
        left: 30px;
    }
    
    .what_clint_says_content {
        flex: 1;
    }
    
    .what_clint_says_text {
        font-size: 18px;
        line-height: 1.8;
        color: #555;
        font-style: italic;
        margin-bottom: 30px;
        position: relative;
    }
    
    .what_clint_says_client_info {
        border-left: 3px solid #00aeef;
        padding-left: 20px;
    }
    
    .what_clint_says_client_name {
        font-size: 20px;
        font-weight: 700;
        color: #222;
    }
    
    .what_clint_says_client_title {
        font-size: 16px;
        color: #666;
    }
    
    .what_clint_says_hospital_logo {
        width: 100px;
        height: 100px;
        background: rgba(0,174,239,0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #00aeef;
        font-size: 36px;
        flex-shrink: 0;
    }
    
    @media (max-width: 768px) {
        .what_clint_says_section {
            padding: 60px 0;
        }
        
        .what_clint_says_card {
            padding: 30px;
            flex-direction: column;
        }
        
        .what_clint_says_hospital_logo {
            margin: 30px auto 0;
        }
        
        .what_clint_says_text {
            font-size: 16px;
        }
    }
    
    
    .globle_cl_hero-section {
        background: linear-gradient(135deg, #0d6efd 0%, #1e88e5 50%, #42a5f5 100%);
        color: white;
        padding: 6rem 0;
        position: relative;
        overflow: hidden;
    }
    
    .globle_cl_hero-illustration {
        padding: 1rem;
    }
    
    .globle_cl_floating-shapes {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }
    
    .globle_cl_floating-shapes .globle_cl_shape {
        position: absolute;
        animation: globle_cl_float 6s infinite ease-in-out;
    }
    
    .globle_cl_floating-shapes .globle_cl_shape-1 {
        width: 120px;
        height: 120px;
        top: -20px;
        right: 50px;
    }
    
    .globle_cl_floating-shapes .globle_cl_shape-2 {
        width: 80px;
        height: 80px;
        bottom: 30px;
        left: 30px;
        animation-delay: 0.5s;
    }
    
    .globle_cl_floating-shapes .globle_cl_shape-3 {
        width: 150px;
        height: 40px;
        top: 50%;
        right: -30px;
        animation-delay: 1s;
    }
    
    @keyframes globle_cl_float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-20px); }
    }
    
    .globle_cl_wave-animation {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100px;
        overflow: hidden;
    }
    
    .globle_cl_wave {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 200%;
        height: 100%;
        background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="rgba(255,255,255,0.1)" /><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="rgba(255,255,255,0.2)" /><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="rgba(255,255,255,0.3)" /></svg>');
        animation: globle_cl_wave 10s linear infinite;
    }
    
    .globle_cl_wave-1 {
        opacity: 0.7;
        animation-delay: 0s;
        animation-duration: 10s;
    }
    
    .globle_cl_wave-2 {
        opacity: 0.5;
        animation-delay: -5s;
        animation-duration: 15s;
    }
    
    .globle_cl_wave-3 {
        opacity: 0.3;
        animation-delay: -2s;
        animation-duration: 20s;
    }
    
    @keyframes globle_cl_wave {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    
    .globle_cl_text-white-80 {
        color: rgba(255, 255, 255, 0.8);
    }
    
    /* Animation classes */
    .globle_cl_animate__animated {
        animation-duration: 1s;
        animation-fill-mode: both;
    }
    
    .globle_cl_animate__fadeInDown {
        animation-name: globle_cl_fadeInDown;
    }
    
    .globle_cl_animate__fadeIn {
        animation-name: globle_cl_fadeIn;
    }
    
    .globle_cl_animate__fadeInUp {
        animation-name: globle_cl_fadeInUp;
    }
    
    .globle_cl_animate__fadeInRight {
        animation-name: globle_cl_fadeInRight;
    }
    
    .globle_cl_animate__delay-1s {
        animation-delay: 1s;
    }
    
    .globle_cl_animate__delay-2s {
        animation-delay: 2s;
    }
    
    @keyframes globle_cl_fadeInDown {
        from {
            opacity: 0;
            transform: translate3d(0, -20px, 0);
        }
        to {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }
    }
    
    @keyframes globle_cl_fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    @keyframes globle_cl_fadeInUp {
        from {
            opacity: 0;
            transform: translate3d(0, 20px, 0);
        }
        to {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }
    }
    
    @keyframes globle_cl_fadeInRight {
        from {
            opacity: 0;
            transform: translate3d(20px, 0, 0);
        }
        to {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }
    }
  
.globle_cl_expertise-section {
position: relative;
}

.globle_cl_bg-light-blue {
background-color: #f0f7ff;
}

.globle_cl_expertise-card {
transition: transform 0.3s ease;
border: none;
overflow: hidden;
box-shadow: 0 5px 15px rgba(13, 110, 253, 0.1);
}

.globle_cl_expertise-card:hover {
transform: translateY(-10px);
}

.globle_cl_icon-wrapper {
width: 80px;
height: 80px;
transition: all 0.3s ease;
}

.globle_cl_expertise-card:hover .globle_cl_icon-wrapper {
transform: rotate(15deg) scale(1.1);
box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.globle_cl_divider {
width: 80px;
height: 3px;
margin-top: 1rem;
}

.globle_cl_wave-decoration {
height: 30px;
}

/* Animations */
.globle_cl_expertise-card {
animation: globle_cl_fadeInUp 0.6s ease forwards;
opacity: 0;
}

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

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

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

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

.globle_cl_testimonials-section {
position: relative;
overflow: hidden;
}

.globle_cl_testimonial-card {
transition: transform 0.3s ease, box-shadow 0.3s ease;
border-top: 3px solid var(--primary-blue);
}

.globle_cl_testimonial-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(13, 110, 253, 0.1) !important;
}

.globle_cl_testimonial-text {
position: relative;
font-style: italic;
color: #555;
}

.globle_cl_rating {
font-size: 1.1rem;
}

.globle_cl_divider {
width: 80px;
height: 3px;
margin-top: 1rem;
}

.globle_cl_stat-card {
transition: all 0.3s ease;
}

.globle_cl_stat-card:hover {
background: var(--primary-blue) !important;
color: black !important;
}

.globle_cl_stat-card:hover h3,
.globle_cl_stat-card:hover p {
color: black     !important;
}

/* Animation */
.globle_cl_testimonial-card {
animation: globle_cl_fadeInUp 0.6s ease forwards;
opacity: 0;
}

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

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

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

.globle_cl_stat-card {
animation: globle_cl_fadeIn 0.6s ease forwards;
opacity: 0;
}

.globle_cl_stat-card:nth-child(1) {
animation-delay: 0.8s;
}

.globle_cl_stat-card:nth-child(2) {
animation-delay: 1s;
}

.globle_cl_stat-card:nth-child(3) {
animation-delay: 1.2s;
}

.globle_cl_stat-card:nth-child(4) {
animation-delay: 1.4s;
}

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

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

/* Unique Color Classes */
.globle_cl_hc-icon-purple { color: #6f42c1; }

/* Base Card Styles */
.globle_cl_hc-collection-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  background: white;
  border-radius: 12px !important;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.globle_cl_hc-collection-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12) !important;
}

/* Icon Container */
.globle_cl_hc-icon-container {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.globle_cl_hc-collection-card:hover .globle_cl_hc-icon-container {
  transform: scale(1.1);
}

/* Hover Background Effect */
.globle_cl_hc-card-hover-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.globle_cl_hc-collection-card:hover .globle_cl_hc-card-hover-bg {
  opacity: 1;
}

/* Individual Card Styles */
.globle_cl_hc-card-1 .globle_cl_hc-icon-container { background: rgba(13, 110, 253, 0.1); }
.globle_cl_hc-card-1:hover .globle_cl_hc-card-hover-bg { background: linear-gradient(135deg, rgba(13,110,253,0.08) 0%, rgba(255,255,255,0) 70%); }

.globle_cl_hc-card-2 .globle_cl_hc-icon-container { background: rgba(25, 135, 84, 0.1); }
.globle_cl_hc-card-2:hover .globle_cl_hc-card-hover-bg { background: linear-gradient(135deg, rgba(25,135,84,0.08) 0%, rgba(255,255,255,0) 70%); }

.globle_cl_hc-card-3 .globle_cl_hc-icon-container { background: rgba(255, 193, 7, 0.1); }
.globle_cl_hc-card-3:hover .globle_cl_hc-card-hover-bg { background: linear-gradient(135deg, rgba(255,193,7,0.08) 0%, rgba(255,255,255,0) 70%); }

.globle_cl_hc-card-4 .globle_cl_hc-icon-container { background: rgba(13, 202, 240, 0.1); }
.globle_cl_hc-card-4:hover .globle_cl_hc-card-hover-bg { background: linear-gradient(135deg, rgba(13,202,240,0.08) 0%, rgba(255,255,255,0) 70%); }

.globle_cl_hc-card-5 .globle_cl_hc-icon-container { background: rgba(220, 53, 69, 0.1); }
.globle_cl_hc-card-5:hover .globle_cl_hc-card-hover-bg { background: linear-gradient(135deg, rgba(220,53,69,0.08) 0%, rgba(255,255,255,0) 70%); }

.globle_cl_hc-card-6 .globle_cl_hc-icon-container { background: rgba(111, 66, 193, 0.1); }
.globle_cl_hc-card-6:hover .globle_cl_hc-card-hover-bg { background: linear-gradient(135deg, rgba(111,66,193,0.08) 0%, rgba(255,255,255,0) 70%); }

/* Content Styles */
.globle_cl_hc-card-title {
  transition: color 0.3s ease;
}

.globle_cl_hc-collection-card:hover .globle_cl_hc-card-title {
  color: #212529 !important;
}

.globle_cl_hc-card-text {
  transition: transform 0.3s ease;
}

.globle_cl_hc-collection-card:hover .globle_cl_hc-card-text {
  transform: translateY(2px);
}

/* Custom Styles */
.globle_cl_denial-services-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow: hidden;
}

.globle_cl_py-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.globle_cl_mb-6 {
  margin-bottom: 4rem;
}

.globle_cl_text-gradient {
  background: linear-gradient(90deg, #2c3e50 0%, #3498db 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.globle_cl_service-card {
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(0,0,0,0.05) !important;
}

.globle_cl_service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
}

.globle_cl_service-image {
  background-size: cover;
  background-position: center;
  transition: all 0.5s ease;
}

.globle_cl_service-card:hover .globle_cl_service-image {
  transform: scale(1.05);
}

.globle_cl_service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: all 0.3s ease;
}

.globle_cl_service-card:hover .globle_cl_service-icon {
  transform: rotate(15deg) scale(1.1);
}

/* Color Utilities */
.globle_cl_bg-primary-light { background: rgba(13, 110, 253, 0.1); }
.globle_cl_bg-success-light { background: rgba(25, 135, 84, 0.1); }
.globle_cl_bg-warning-light { background: rgba(255, 193, 7, 0.1); }
.globle_cl_bg-info-light { background: rgba(13, 202, 240, 0.1); }
.globle_cl_bg-danger-light { background: rgba(220, 53, 69, 0.1); }
.globle_cl_bg-purple-light { background: rgba(111, 66, 193, 0.1); }
.globle_cl_text-purple { color: #6f42c1; }

.globle_cl_innovative-billing-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.globle_cl_text-gradient {
  background: linear-gradient(90deg, #2c3e50 0%, #3498db 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.globle_cl_custom-accordion .globle_cl_accordion-button {
  border-radius: 0.5rem !important;
  transition: all 0.3s ease;
}

.globle_cl_custom-accordion .globle_cl_accordion-button:not(.collapsed) {
  background-color: #fff;
  box-shadow: none;
  transform: translateX(5px);
}

.globle_cl_custom-accordion .globle_cl_accordion-item {
  transition: all 0.3s ease;
}

.globle_cl_custom-accordion .globle_cl_accordion-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.globle_cl_accordion-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  transition: all 0.5s ease;
}

.globle_cl_accordion-image-wrapper img {
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.globle_cl_active-accordion .globle_cl_accordion-button {
  border-left: 4px solid #3498db;
}
/* Base Section Styles */
.globle_cl_hc-tailored-solutions {
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.globle_cl_hc-container {
  max-width: 1200px;
}

/* Text Color Utilities */
.globle_cl_text-white-80 {
  color: rgba(255, 255, 255, 0.8);
}

.globle_cl_text-white-90 {
  color: rgba(255, 255, 255, 0.9);
}

/* Header Styles */
.globle_cl_hc-header {
  margin-bottom: 4rem;
}

.globle_cl_hc-heading {
  background: linear-gradient(90deg, #ffffff 0%, #eeeeee 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Card Grid Layout */
.globle_cl_hc-card-row {
  margin-left: -15px;
  margin-right: -15px;
}

.globle_cl_hc-card-col {
  padding-left: 15px;
  padding-right: 15px;
}

/* Card Styles */
.globle_cl_hc-specialty-card {
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.globle_cl_hc-specialty-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px rgba(0,0,0,0.2);
}

.globle_cl_hc-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.9;
}

/* Card Background Gradients with Better Contrast */
.globle_cl_hc-card-bg-anesthesia {
  background: linear-gradient(135deg, #3a56b0 0%, #1a237e 100%);
}

.globle_cl_hc-card-bg-behavioral {
  background: linear-gradient(135deg, #0d7e74 0%, #1b5e20 100%);
}

.globle_cl_hc-card-bg-ems {
  background: linear-gradient(135deg, #c62828 0%, #b71c1c 100%);
}

.globle_cl_hc-card-bg-healthsystem {
  background: linear-gradient(135deg, #7b1fa2 0%, #4a148c 100%);
}

.globle_cl_hc-card-bg-hospital {
  background: linear-gradient(135deg, #0277bd 0%, #01579b 100%);
}

.globle_cl_hc-card-bg-physician {
  background: linear-gradient(135deg, #ad1457 0%, #880e4f 100%);
}

/* Card Content Styles */
.globle_cl_hc-card-body {
  color: white;
}

.globle_cl_hc-card-title {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.globle_cl_hc-card-text {
  /* font-size: 1.25rem; */
}

/* Icon Styles */
.globle_cl_hc-service-icon {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: white;
  transition: all 0.3s ease;
}

.globle_cl_hc-specialty-card:hover .globle_cl_hc-service-icon {
  transform: scale(1.1) rotate(10deg);
  background: rgba(255,255,255,0.25);
}

/* Section Base Styles */
.globle_cl_hc-superior-solutions {
  position: relative;
  overflow: hidden;
}

/* Typography */
.globle_cl_hc-main-heading {
  background: linear-gradient(90deg, #2c3e50 0%, #3498db 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}

.globle_cl_hc-card-heading {
  font-size: 1.5rem;
  font-weight: 600;
}

.globle_cl_hc-card-description {
  font-size: 1.1rem;
  color: #555;
}

/* Visual Elements */
.globle_cl_hc-visual-container {
  min-height: 350px;
}

.globle_cl_hc-main-card {
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(0,0,0,0.05);
}

.globle_cl_hc-floating-card-1 {
  top: 0;
  left: 0;
  width: 140px;
  transform: rotate(-5deg);
  animation: globle_cl_float1 8s ease-in-out infinite;
}

.globle_cl_hc-floating-card-2 {
  bottom: 20%;
  right: 5%;
  width: 140px;
  transform: rotate(3deg);
  animation: globle_cl_float2 7s ease-in-out infinite;
}

.globle_cl_hc-floating-card-3 {
  top: 30%;
  right: 0;
  width: 140px;
  transform: rotate(-2deg);
  animation: globle_cl_float3 9s ease-in-out infinite;
}

/* Icons */
.globle_cl_hc-icon-circle {
  width: 50px;
  height: 50px;
  font-size: 1.25rem;
}

.globle_cl_hc-icon-circle-sm {
  width: 30px;
  height: 30px;
  font-size: 0.9rem;
}

/* Stats Highlight */
.globle_cl_hc-stat-highlight {
  font-size: 1.1rem;
}

.globle_cl_hc-stat-number {
  font-size: 1.4rem;
}

/* CTA Button */
.globle_cl_hc-cta-btn {
  transition: all 0.3s ease;
  font-weight: 600;
}

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

/* Animations */
@keyframes globle_cl_float1 {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-15px) rotate(-8deg); }
}

@keyframes globle_cl_float2 {
  0%, 100% { transform: translateY(0) rotate(3deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

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

/* Responsive Adjustments */
@media (max-width: 992px) {
  .globle_cl_hc-main-heading {
    font-size: 2.5rem;
  }
  
  .globle_cl_hc-visual-container {
    min-height: 300px;
    margin-top: 3rem;
  }
  
  .globle_cl_hc-floating-card-1,
  .globle_cl_hc-floating-card-2,
  .globle_cl_hc-floating-card-3 {
    position: relative;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 200px;
    transform: none !important;
    animation: none !important;
  }
}
.globle_cl_rcm-section {
        padding: 100px 0;
        font-family: 'Poppins', sans-serif;
        background-color: #f8fafc;
    }
    
    .globle_cl_section-heading {
        color: #1a2b50;
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
    }
    
    .globle_cl_section-heading:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -15px;
        width: 60px;
        height: 3px;
        background: #2a5bd7;
    }
    
    .globle_cl_content-text p {
        color: #4a5568;
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 25px;
    }
    
    .globle_cl_highlight-text {
        color: #2a5bd7;
        font-weight: 600;
        margin: 30px 0 15px;
        display: block;
    }
    
    .globle_cl_image-container {
        height: 100%;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .globle_cl_image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    @media (max-width: 992px) {
        .globle_cl_image-container {
            height: 400px;
            margin-top: 40px;
        }
    }
    .globle_cl_pas-section-content {
         padding: 60px;
     }
     
     .globle_cl_pas-section-heading {
         font-size: 2.5rem;
         font-weight: 700;
         color: #2c3e50;
         margin-bottom: 20px;
         position: relative;
     }
     
     .globle_cl_pas-section-heading:after {
         content: '';
         position: absolute;
         left: 0;
         bottom: -10px;
         width: 60px;
         height: 4px;
         background: linear-gradient(90deg, #3498db, #9b59b6);
         border-radius: 2px;
     }
     
     .globle_cl_pas-section-subtext {
         color: #7f8c8d;
         font-size: 1.1rem;
         margin-bottom: 40px;
     }
     
     .globle_cl_pas-feature-list {
         list-style: none;
         padding: 0;
     }
     
     .globle_cl_pas-feature-item {
         padding: 15px 0;
         border-bottom: 1px solid rgba(0, 0, 0, 0.05);
         display: flex;
         align-items: center;
         transition: all 0.3s ease;
     }
     
     .globle_cl_pas-feature-item:last-child {
         border-bottom: none;
     }
     
     .globle_cl_pas-feature-item:hover {
         transform: translateX(10px);
     }
     
     .globle_cl_pas-feature-icon {
         width: 40px;
         height: 40px;
         background: linear-gradient(135deg, #3498db, #9b59b6);
         color: white;
         border-radius: 50%;
         display: flex;
         align-items: center;
         justify-content: center;
         margin-right: 15px;
         flex-shrink: 0;
     }
     
     .globle_cl_pas-feature-text {
         font-weight: 500;
         color: #34495e;
     }
     
     .globle_cl_pas-image-container {
         height: 100%;
         display: flex;
         align-items: center;
         justify-content: center;
         padding: 30px;
         position: relative;
     }
     
     .globle_cl_pas-main-image {
         max-width: 100%;
         height: auto;
         border-radius: 15px;
         box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
         transform: perspective(1000px) rotateY(-5deg);
         transition: all 0.5s ease;
     }
     
     .globle_cl_pas-main-image:hover {
         transform: perspective(1000px) rotateY(0deg);
     }
     
     .globle_cl_pas-decoration-circle {
         position: absolute;
         border-radius: 50%;
         background: rgba(52, 152, 219, 0.1);
         z-index: 0;
     }
     
     .globle_cl_pas-circle-1 {
         width: 120px;
         height: 120px;
         top: -30px;
         right: -30px;
     }
     
     .globle_cl_pas-circle-2 {
         width: 80px;
         height: 80px;
         bottom: 20px;
         left: -20px;
     }
     
     @media (max-width: 991.98px) {
         .globle_cl_pas-section-content {
             padding: 40px;
         }
         
         .globle_cl_pas-image-container {
             padding-bottom: 60px;
         }
     }
     
     @media (max-width: 767.98px) {
         .globle_cl_pas-section-content {
             padding: 30px;
         }
         
         .globle_cl_pas-section-heading {
             font-size: 2rem;
         }
     }
 
  /* Unique CSS classes */
  .behavioral_Health_RCM_Expertise_section {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.behavioral_Health_RCM_Expertise_heading {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.behavioral_Health_RCM_Expertise_heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #3498db;
}

.behavioral_Health_RCM_Expertise_stats_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.behavioral_Health_RCM_Expertise_stat_item {
    background: white;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    width: 220px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.behavioral_Health_RCM_Expertise_stat_icon {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 15px;
}

.behavioral_Health_RCM_Expertise_stat_number {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.behavioral_Health_RCM_Expertise_stat_label {
    font-size: 1rem;
    color: #7f8c8d;
    font-weight: 500;
}

/* Animation classes */
.behavioral_Health_RCM_Expertise_stat_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #9b59b6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.behavioral_Health_RCM_Expertise_stat_item:hover::before {
    transform: scaleX(1);
}

/* Custom Scrollable Testimonials */
.behavioral_Health_RCM_Testimonials_wrapper {
  padding: 0 30px;
}

.behavioral_Health_RCM_Testimonials_scroller {
  scrollbar-width: thin;
  scrollbar-color: #3498db #f1f1f1;
  scroll-snap-type: x proximity;
  padding-bottom: 20px;
}

.behavioral_Health_RCM_Testimonials_scroller::-webkit-scrollbar {
  height: 8px;
}

.behavioral_Health_RCM_Testimonials_scroller::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.behavioral_Health_RCM_Testimonials_scroller::-webkit-scrollbar-thumb {
  background: #3498db;
  border-radius: 10px;
}

.behavioral_Health_RCM_Testimonial_card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  scroll-snap-align: start;
}

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

.remover_under_ln{
    text-decoration: none;
}
.cdh{
    height: 100%;
}
.cd_box_saparator{
    margin-top: 10px;
    margin-bottom: 10px;
    height: 100%!important;
}

.about_down_section_area_main {
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    background-size: 400% 400%;
    animation: about_down_section_area_gradientBG 15s ease infinite;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

@keyframes about_down_section_area_gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.about_down_section_area_container {
    position: relative;
    z-index: 2;
}

.about_down_section_area_title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.about_down_section_area_subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.about_down_section_area_btn {
    background-color: #ff7e5f;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 126, 95, 0.4);
    position: relative;
    overflow: hidden;
}

.about_down_section_area_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 126, 95, 0.6);
    background-color: #ff6a4f;
}

.about_down_section_area_btn:active {
    transform: translateY(1px);
}

.about_down_section_area_btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.about_down_section_area_btn:hover::after {
    transform: translateX(100%);
}

.about_down_section_area_shape {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.about_down_section_area_shape1 {
    top: -50px;
    left: -50px;
    animation: about_down_section_area_float 6s ease-in-out infinite;
}

.about_down_section_area_shape2 {
    bottom: -80px;
    right: -60px;
    width: 300px;
    height: 300px;
    animation: about_down_section_area_float 8s ease-in-out infinite;
    animation-delay: 1s;
}

.about_down_section_area_shape3 {
    top: 30%;
    right: 10%;
    width: 100px;
    height: 100px;
    animation: about_down_section_area_float 5s ease-in-out infinite;
    animation-delay: 0.5s;
}

@keyframes about_down_section_area_float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@media (max-width: 768px) {
    .about_down_section_area_title {
        font-size: 2.2rem;
    }
    
    .about_down_section_area_subtitle {
        font-size: 1rem;
    }
}

.footer_down_social_media_icon_section_main {
    padding: 20px;
    text-align: center;
}

.footer_down_social_media_icon_section_title {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.footer_down_social_media_icon_section_text {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer_down_social_media_icon_section_wrapper {
    display: flex;
    justify-content: left;
    gap: 15px;
    flex-wrap: wrap;
}

.footer_down_social_media_icon_section_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer_down_social_media_icon_section_icon:hover {
    background: #ffffff;
    color: #2a2a2a;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Specific icon colors on hover */
.footer_down_social_media_icon_section_icon:nth-child(1):hover { background: #3b5998; color: white; } /* Facebook */
.footer_down_social_media_icon_section_icon:nth-child(2):hover { background: #1DA1F2; color: white; } /* Twitter */
.footer_down_social_media_icon_section_icon:nth-child(3):hover { background: #0077B5; color: white; } /* LinkedIn */
.footer_down_social_media_icon_section_icon:nth-child(4):hover { background: #E1306C; color: white; } /* Instagram */
.footer_down_social_media_icon_section_icon:nth-child(5):hover { background: #FF0000; color: white; } /* YouTube */

.tranfparent_img_shadow{
    filter: drop-shadow(-2px 2px 3px #1c1c1cf5);
}