:root {
    --primary-color: #010125;
    --secondary-color:#007bff;
    --text-color: #333;
    --white: #fff;
    --light-bg: #f5f9fc;
    --primary-dark: #1d4ed8;
    --heading-color: #1e293b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Top Bar Styles */
.top-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a4a 100%);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
    position: relative;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.top-bar-left a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar-left a:hover {
    color: var(--secondary-color);
}

.top-bar-left i {
    color: var(--secondary-color);
    font-size: 16px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

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

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.language-selector {
    position: relative;
}

.language-btn {
    background: transparent;
    border: none;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-btn i {
    font-size: 14px;
}

.language-btn i.fa-chevron-down {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.language-selector:hover .language-btn i.fa-chevron-down {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 150px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.language-selector:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: block;
    padding: 8px 15px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.language-option:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--secondary-color);
}

/* Hero Section with Integrated Header */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a4a 100%);
   
    overflow: hidden;
}

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

/* Medical Icons Background */
.hero-bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255,255,255,0.05)'%3E%3Cpath d='M12 2L2 7v10l10 5 10-5V7L12 2zm0 2.8L20 9l-8 4-8-4 8-4.2zM4 8.5l8 4v8.5l-8-4V8.5zm10 12.5v-8.5l8-4v8.5l-8 4z'/%3E%3C/svg%3E");
    background-size: 50px 50px;
    opacity: 0.1;
    animation: bgMove 30s linear infinite;
}

/* Floating Medical Elements */
.hero-floating {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.hero-floating-element::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.hero-floating-element:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.hero-floating-element:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 30%;
    right: 15%;
    animation-delay: 2s;
}

.hero-floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 25%;
    left: 20%;
    animation-delay: 4s;
}

.hero-floating-element:nth-child(4) {
    width: 40px;
    height: 40px;
    bottom: 15%;
    right: 25%;
    animation-delay: 6s;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

/* Background Movement */
@keyframes bgMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

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

/* Header Styles */
.header {
    background: transparent;
    position: sticky;
    top: 0;
    z-index: 999;
    padding:  0;
    width: 100%;
}

.header .container {
    padding:  10px 20px;
}

.header-wrapper {
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 30px;
    margin: 0 auto;
    max-width: 1400px;
    position: relative;
    z-index: 1;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    flex-shrink: 0;
    z-index: 0 !important;
}

.logo img {
    max-width: 150px;
    height: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    color: var(--heading-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-color);
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.call-now {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
}

.call-now:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.call-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

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

.call-label {
    font-size: 12px;
    color: var(--white);
    opacity: 0.8;
}

.call-number {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

/* Hero Main Content */
.hero-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

.hero-text {
    color: var(--white);
    max-width: 800px;
    flex:1;
}

.hero-subtitle {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-left: 20px;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 2px;
    background: var(--secondary-color);
    transform: translateY(-50%);
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--white), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 16px;
}

.cta-button.primary {
    background: var(--secondary-color);
    color: var(--white);
}

.cta-button.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--secondary-color);
}

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

.cta-button.primary:hover {
    background: var(--white);
    color: var(--secondary-color);
}

.cta-button.secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary-color);
}

.stat-icon {
    min-width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    transition: all 0.3s ease;
}

.stat-box:hover .stat-icon {
    transform: rotate(360deg);
}

.stat-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--white);
}

.stat-content p {
    font-size: 14px;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.hero-image {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-main-content {
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .top-bar-right {
        gap: 15px;
    }
    
    .social-links {
        display: none;
    }
    
    .header-wrapper {
        padding: 10px 20px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .hero-main-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .stats-container {
        justify-content: center;
    }
    
    .logo img {
        max-width: 120px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 10px 0;
    }
    
    .top-bar-left {
        gap: 15px;
    }
    
    .header-wrapper {
        padding: 10px 15px !important;
        border-radius: 10px;
    }
    
    .logo img {
        max-width: 120px;
    }
    
    .nav-links {
        display: none;
    }
    
    .call-now {
        display: none;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .top-bar {
        padding: 5px 0;
    }
    
    .top-bar-left {
        gap: 10px;
    }
    
    .header-wrapper {
        padding: 15px 10px !important;
    }
    
    .logo img {
        max-width: 120px;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    .location-link{
        display: none !important;
    }
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.healthcare-professional {
    width: 100%;
    max-width: 450px;
    display: block;
    border-radius: 10px;
}

.about-section {
    padding: 80px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    height: auto;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: auto;
    max-height: 300px;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

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

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

.main-image {
    height: auto;
    max-height: 300px;
}

.secondary-image {
    height: auto;
    max-height: 250px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 123, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.about-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.about-image:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 40px;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.overlay-content h3 {
    font-size: 24px;
    margin: 0;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.about-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about-subtitle {
    color: #007bff;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.about-subtitle::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 2px;
    background: #007bff;
}

.about-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.3;
    font-weight: 700;
}

.about-description {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(0, 123, 255, 0.05);
}



.feature-item:hover {
    background: rgba(0, 123, 255, 0.1);
    transform: translateX(5px);
}

.feature-icon {
    color: #007bff;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.2);
}

.feature-text {
    color: #444;
    font-weight: 500;
    font-size: 16px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 30px;
    background: rgba(0, 123, 255, 0.1);
}

.read-more:hover {
    background: #007bff;
    color: white;
    transform: translateX(5px);
}

.arrow-circle {
    width: 30px;
    height: 30px;
    background: #e6f3ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.read-more:hover .arrow-circle {
    transform: translateX(5px);
    background: white;
    color: #007bff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .about-images {
        max-width: 600px;
        margin: 0 auto;
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .about-title {
        font-size: 30px;
    }

    .about-image {
        max-height: 250px;
    }

    .main-image {
        max-height: 250px;
    }

    .secondary-image {
        max-height: 200px;
    }
}

@media (max-width: 768px) {
    .about-features {
        grid-template-columns: 1fr;
    }

    .about-images {
        grid-template-columns: 1fr;
    }

    .about-image {
        max-height: 200px;
    }

    .main-image {
        max-height: 200px;
    }

    .secondary-image {
        max-height: 180px;
    }
    .overlay-content h3{
        font-size: 14px;

    }
}

@media (max-width: 576px) {
    .feature-item:nth-child(4){
       display: none;
    }
    .feature-item:nth-child(5){
        display: none;
    }
    .feature-item:nth-child(6){
        display: none;
    }
}
        
      
.services-container {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a4a 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.services-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></svg>') repeat;
    opacity: 0.1;
    z-index: 1;
}

/* Background elements */
.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--secondary-color);
    opacity: 0.05;
    z-index: 0;
    transition: transform 0.5s ease;
}

.bg-circle-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -150px;
    animation: float 8s ease-in-out infinite;
}

.bg-circle-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.bg-circle-3 {
    width: 300px;
    height: 300px;
    top: 40%;
    right: 20%;
    animation: float 12s ease-in-out infinite;
}

.dots-pattern {
    position: absolute;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(var(--secondary-color) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
    z-index: 0;
}

.dots-pattern-1 {
    top: 30%;
    left: 20%;
    animation: float 7s ease-in-out infinite;
}

.dots-pattern-2 {
    bottom: 10%;
    right: 30%;
    animation: float 9s ease-in-out infinite reverse;
}

.waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(0deg, rgba(28, 169, 229, 0.1) 0%, rgba(1,1,37,0) 100%);
    clip-path: polygon(0 70%, 100% 40%, 100% 100%, 0% 100%);
    z-index: 0;
}

/* Content styling */
.section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), rgba(28, 169, 229, 0.5));
    transform: translateY(-4px);
    transition: transform 0.3s ease;
}

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

.service-card:hover::before {
    transform: translateY(0);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    position: relative;
    transition: all 0.5s ease;
}

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

.service-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--heading-color);
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--secondary-color);
}

.service-description {
    line-height: 1.8;
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 25px;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.service-stats {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 500;
}

@media (max-width: 1400px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .services-container {
        padding: 80px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .service-card {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon img {
        width: 30px;
        height: 30px;
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 20px);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Medical Care Services Section Styles */
.mc-services-container {
    position: relative;
    padding: 80px 20px;
    background: #f8f9fa;
    overflow: hidden;
}

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

.mc-bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.mc-bg-circle-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color, #007bff);
    top: -100px;
    left: -100px;
}

.mc-bg-circle-2 {
    width: 200px;
    height: 200px;
    background: var(--secondary-color, #6c757d);
    bottom: 10%;
    right: 5%;
}

/* Header Styles */
.mc-services-header {
    position: relative;
    z-index: 2;
    text-align: center;
	max-width:1200px;
  
    margin: 0 auto 60px;
}

.mc-services-title {
    font-size: 2.5rem;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 20px;
    font-weight: 700;
}

.mc-services-subtitle {
    font-size: 1.1rem;
    color: var(--text-color, #666);
    line-height: 1.6;
}

/* Services Grid */
.mc-services-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 50px;
}

/* Service Card Container */
.mc-service-card-container {
    perspective: 1000px;
    height: 500px; /* Increased height to fit all points without scrolling */
}

/* Service Card */
.mc-service-card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.mc-service-card-container:hover .mc-service-card,
.mc-service-card.flipped {
    transform: rotateY(180deg);
}

.mc-service-front, .mc-service-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    background-color: white;
}

.mc-service-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f0f7 100%);
    justify-content: space-between;
}

/* Service Icon */
.mc-service-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mc-service-icon img {
    width: 50px;
    height: auto;
    position: relative;
    z-index: 2;
}

.mc-service-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

/* Service Content */
.mc-service-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.mc-service-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 20px;
    flex-grow: 1;
}

.mc-flip-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    font-weight: 500;
    cursor: pointer;
    padding: 10px 0;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: auto;
}

.mc-flip-btn:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.mc-flip-btn.back-btn:hover {
    transform: translateX(-5px);
}

/* Service Points Styling - No Scroll */
.mc-service-points {
    margin-top: 20px;
    margin-bottom: 20px;
    flex-grow: 1;
    /* Removed overflow-y: auto; to prevent scrolling */
}

.mc-service-points ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px; /* Reduced gap to fit more points */
}

.mc-service-points li {
    display: flex;
    align-items: center;
    padding: 8px 12px; /* Reduced padding to make points more compact */
    font-size: 14px; /* Slightly smaller font */
    color: var(--text-color);
    background-color: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.mc-service-points li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.1);
}

.mc-service-points li i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 14px; /* Slightly smaller icon */
    flex-shrink: 0;
}

.mc-service-points li span {
    flex-grow: 1;
}

/* Service Footer */
.mc-service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mc-specialist-count {
    color: var(--primary-color, #007bff);
    font-weight: 600;
    font-size: 0.9rem;
}

.mc-learn-more {
    color: var(--primary-color, #007bff);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.mc-learn-more:hover {
    color: var(--primary-dark, #0056b3);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .mc-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .mc-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mc-services-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .mc-services-container {
        padding: 60px 15px;
    }
    
    .mc-services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .mc-service-card-container {
        height: 480px;
    }
    
    .mc-services-title {
        font-size: 1.8rem;
    }
    
    .mc-services-subtitle {
        font-size: 1rem;
    }
}
        
      
/* Medical Care Team Section Styles */
.mc-team-section {
    position: relative;
    padding: 100px 20px;
    background: #ffffff;
    overflow: hidden;
}

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

.mc-team-shape {
    position: absolute;
    background: var(--primary-color);
    opacity: 0.05;
}

.mc-team-shape-1 {
    width: 600px;
    height: 600px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: -100px;
    right: -100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    animation: shapeFloat 8s ease-in-out infinite;
}

.mc-team-shape-2 {
    width: 400px;
    height: 400px;
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    bottom: -50px;
    left: -50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    animation: shapeFloat 10s ease-in-out infinite reverse;
}

.mc-team-shape-3 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    animation: shapeFloat 12s ease-in-out infinite;
}

.mc-team-shape-4 {
    width: 200px;
    height: 200px;
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    top: 20%;
    right: 20%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    animation: shapeFloat 9s ease-in-out infinite reverse;
}

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

/* Header Styles */
.mc-team-header {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.mc-team-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

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

.mc-team-title {
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

/* Team Grid */
.mc-team-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Team Card */
.mc-team-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

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

/* Team Image */
.mc-team-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.mc-team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mc-team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.mc-team-card:hover .mc-team-overlay {
    opacity: 1;
}

/* Team Info */
.mc-team-info {
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mc-team-card:hover .mc-team-info {
    transform: translateY(0);
}

.mc-team-name {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mc-team-role {
    display: block;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Team Social */
.mc-team-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mc-team-card:hover .mc-team-social {
    transform: translateY(0);
    opacity: 1;
}

.mc-social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.mc-social-link:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .mc-team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .mc-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mc-team-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .mc-team-section {
        padding: 60px 15px;
    }
    
    .mc-team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .mc-team-title {
        font-size: 1.8rem;
    }
    
    .mc-team-image {
        height: 350px;
    }
}
        
      
/* Why Choose Us Section Styles */
.mc-why-choose-section {
    position: relative;
    padding: 60px 20px;
    background: #ffffff;
    overflow: hidden;
}

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

.mc-why-choose-shape {
    position: absolute;
    background: var(--primary-color);
    opacity: 0.05;
    animation: shapeFloat 8s ease-in-out infinite;
}

.shape-1 {
    width: 500px;
    height: 500px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: -100px;
    right: -100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.shape-2 {
    width: 400px;
    height: 400px;
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    bottom: -50px;
    left: -50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    animation-delay: 2s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    animation-delay: 4s;
}

.shape-4 {
    width: 200px;
    height: 200px;
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    top: 20%;
    right: 20%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    animation-delay: 6s;
}

/* Header Styles */
.mc-why-choose-header {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.mc-why-choose-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

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

.mc-why-choose-title {
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

/* Content Grid */
.mc-why-choose-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Feature Styles */
.mc-why-choose-feature {
    position: relative;
    padding: 40px;
    background: transparent;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.mc-why-choose-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    border-radius: 20px;
    z-index: -1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mc-why-choose-feature:hover::before {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mc-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #ffffff;
    font-size: 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mc-why-choose-feature:hover .mc-feature-icon {
    transform: translateY(-10px) rotate(360deg);
}

.mc-feature-content {
    position: relative;
}

.mc-feature-content h3 {
    font-size: 1.5rem;
    color: var(--heading-color);
    margin-bottom: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mc-why-choose-feature:hover .mc-feature-content h3 {
    color: var(--primary-color);
}

.mc-feature-content p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 0;
}

.mc-feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
    transition: all 0.3s ease;
}

.mc-why-choose-feature:hover .mc-feature-number {
    color: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .mc-why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mc-why-choose-section {
        padding: 60px 15px;
    }
    
    .mc-why-choose-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .mc-why-choose-title {
        font-size: 2rem;
    }
    
    .mc-why-choose-feature {
        padding: 30px;
    }
    
    .mc-feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}
        
      
/* Testimonials Section Styles */
.mc-testimonials-section {
    position: relative;
    padding: 80px 20px;
    background: #ffffff;
    overflow: hidden;
    min-height: 600px;
}

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

.mc-testimonials-title {
    font-size: 2.5rem;
    color: var(--heading-color) !important;
    font-weight: 700;
    margin-bottom: 20px;
}

.mc-testimonials-center {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    z-index: 2;
}

.mc-doctor-image {
    position: relative;
    width: 100%;
    height: auto;
    background: linear-gradient(135deg, rgba(232, 244, 255, 0.8), rgba(255, 255, 255, 0.8));
    border-radius: 50%;
    padding: 20px;
}

.mc-doctor-image img {
    width: 100%;
    height: auto;
    display: block;
}

.mc-testimonials-floating {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.mc-testimonial-card {
    position: absolute;
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 300px;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.mc-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.mc-testimonial-card.top-left {
    top: 20%;
    left: 15%;
}

.mc-testimonial-card.top-right {
    top: 15%;
    right: 15%;
}

.mc-testimonial-card.bottom-left {
    bottom: 20%;
    left: 20%;
}

.mc-testimonial-card.bottom-right {
    bottom: 15%;
    right: 20%;
}

.mc-testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mc-testimonial-author {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    border: 2px solid var(--primary-color);
}

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

.mc-testimonial-content p {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.6;
    font-style: italic;
}

.mc-testimonial-content h4 {
    font-size: 1.1rem;
    color: var(--heading-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.mc-testimonials-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.decoration-star {
    position: absolute;
    top: 15%;
    right: 10%;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.1;
    animation: float 6s infinite ease-in-out;
}

.decoration-dot {
    position: absolute;
    bottom: 20%;
    left: 15%;
    font-size: 3rem;
    color: var(--secondary-color);
    opacity: 0.1;
    animation: float 5s infinite ease-in-out;
}

.decoration-smile {
    position: absolute;
    top: 30%;
    left: 10%;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.1;
    animation: float 7s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(0, -20px);
    }
}

@media (max-width: 1200px) {
    .mc-testimonial-card {
        width: 280px;
    }
    
    .mc-testimonial-card.top-left {
        left: 5%;
    }
    
    .mc-testimonial-card.top-right {
        right: 5%;
    }
    
    .mc-testimonial-card.bottom-left {
        left: 10%;
    }
    
    .mc-testimonial-card.bottom-right {
        right: 10%;
    }
}

@media (max-width: 992px) {
    .mc-testimonials-center {
        max-width: 300px;
    }
    
    .mc-testimonial-card {
        position: relative;
        width: 100%;
        max-width: 280px;
        margin: 20px auto;
    }
    
    .mc-testimonials-floating {
        position: relative;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding: 20px;
        margin-top: 40px;
    }
    
    .mc-testimonial-card.top-left,
    .mc-testimonial-card.top-right,
    .mc-testimonial-card.bottom-left,
    .mc-testimonial-card.bottom-right {
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
}

@media (max-width: 768px) {
    .mc-testimonials-section {
        padding: 60px 15px;
    }
    
    .mc-testimonials-title {
        font-size: 2rem;
    }
    
    .mc-testimonial-card {
        padding: 20px;
    }
    
    .mc-testimonial-content p {
        font-size: 0.9rem;
    }
    
    .mc-testimonial-content h4 {
        font-size: 1rem;
    }
}
        
      
.mc-partners-section {
    padding: 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.mc-partners-header {
    text-align: center;
    margin-bottom: 50px;
}

.mc-partners-subtitle {
    color:var(--secondary-color);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.mc-partners-title {
    font-size: 36px;
    color: #1a1a1a;
    margin: 0;
    font-weight: 700;
}

.mc-partners-infinite {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.infinite-row {
    display: flex;
    width: 100%;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.infinite-track {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 0 20px;
}

.partner-logo {
    flex: 0 0 auto;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

.partner-gradient {
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
}

.partner-gradient.left {
    left: 0;
    background: linear-gradient(to right, #f8f9fa, transparent);
}

.partner-gradient.right {
    right: 0;
    background: linear-gradient(to left, #f8f9fa, transparent);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 992px) {
    .mc-partners-title {
        font-size: 30px;
    }
    
    .partner-logo {
        width: 120px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .mc-partners-section {
        padding: 0;
    }
    
    .mc-partners-title {
        font-size: 24px;
    }
    
    .partner-logo {
        width: 100px;
        height: 50px;
    }
    
    .partner-gradient {
        width: 100px;
    }
}
        
      
/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1000;
    position: relative;
}

.menu-bar {
    width: 100%;
    height: 3px;
    background-color: var(--heading-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--primary-color);
        padding: 80px 30px 30px;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        transition: all 0.3s ease;
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .nav-link{
        color: var(--white);
        font-size: 18px;
        padding: 10px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-decoration: none;
        display: block;
        transition: all 0.3s ease;
    }

    .menu-item{
        color: var(--white);
    }

    
    .nav-link:hover {
        color: var(--secondary-color);
        transform: translateX(10px);
    }

    .header-right {
        width: 100%;
        margin-top: 20px;
    }

    .call-now {
        width: 100%;
        justify-content: center;
        padding: 15px;
        background: var(--secondary-color);
        border-radius: 10px;
        margin-top: 20px;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    /* Mobile Menu Toggle Animation */
    .mobile-menu-toggle.active .menu-bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: var(--white);
    }

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

    .mobile-menu-toggle.active .menu-bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: var(--white);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        width: 100%;
        padding-top: 60px;
    }

    .nav-link {
        font-size: 16px;
        color: white;
    }

    .call-now {
        padding: 12px;
    }
}
        
      
/* Contact Section Styles */
.contact-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23000000" stroke-width="0.5" opacity="0.1"/></svg>') repeat;
    opacity: 0.1;
    z-index: 1;
}

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

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

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.contact-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    transform: translateX(-50%);
    border-radius: 2px;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.contact-form-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--heading-color);
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(28, 169, 229, 0.1);
    background: #ffffff;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

.submit-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    transform: rotate(360deg);
    background: var(--primary-color);
}

.info-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.info-content p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
}

.map-container {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
    min-height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-container {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 1rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .map-container {
        min-height: 350px;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 1.75rem;
    }
    
    .contact-form-container {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.75rem;
    }
    
    .submit-btn {
        padding: 0.75rem 1.5rem;
    }
    
    .map-container {
        min-height: 300px;
    }
}
        
           
      
.testimonials-section {
    padding: 10px 0;
    background: #f8f9fa;
    position: relative;
}

.testimonials-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--heading-color) !important;
    font-weight: 700;
    margin-bottom: 15px;
}

.testimonials-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    opacity: 0.8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.testimonial-content {
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    color: var(--primary-color);
    opacity: 0.2;
    font-size: 3rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 25px;
    padding-left: 20px;
}

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

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

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

.author-info h4 {
    font-size: 1.1rem;
    color: var(--heading-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

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

.testimonial-nav:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

.testimonial-nav i {
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto 40px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .author-image {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-text {
        padding-left: 15px;
    }
}
        
      
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: float 15s infinite ease-in-out;
    transition: all 0.5s ease;
}

.shape:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 8s infinite ease-in-out;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
}

.shape-2 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 10%;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morph 10s infinite ease-in-out;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.06));
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    border-radius: 50% 50% 20% 80% / 25% 80% 20% 75%;
    animation: morph 12s infinite ease-in-out;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
}

.shape-4 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    right: 20%;
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    animation: morph 9s infinite ease-in-out;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.shape-5 {
    width: 110px;
    height: 110px;
    top: 40%;
    left: 25%;
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    animation: morph 11s infinite ease-in-out;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.06));
}

@keyframes morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translateY(-20px) rotate(5deg) scale(1.05);
    }
    50% {
        border-radius: 50% 50% 20% 80% / 25% 80% 20% 75%;
        transform: translateY(0) rotate(0deg) scale(1);
    }
    75% {
        border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
        transform: translateY(20px) rotate(-5deg) scale(0.95);
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: translateY(0) rotate(0deg) scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@media (max-width: 768px) {
    .shape {
        width: 80px !important;
        height: 80px !important;
        backdrop-filter: blur(5px);
    }
    
    .shape-3 {
        width: 100px !important;
        height: 100px !important;
    }
}
        
.testimonial-heading {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
    padding-left: 40px;
}

.testimonial-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 40px;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}


.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

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

.footer .footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding: 0 15px;
    transition: transform 0.3s ease;
}

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

.footer .logo-section {
    flex: 1.5;
}

.footer .footer-logo {
    margin-bottom: 20px;
}

.footer .footer-logo img {
    max-width: 150px;
    height: auto;
    transition: transform 0.3s ease;
}

.footer .footer-logo img:hover {
    transform: scale(1.05);
}

.footer .links-section {
    background-color: transparent;
}

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

.footer .footer-quick-links li {
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.footer .footer-quick-links li:hover {
    transform: translateX(5px);
}

.footer .footer-quick-links a {
    color: var(--white);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    display: block;
}

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

.footer .footer-quick-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer .footer-quick-links a:hover:after {
    width: 100%;
}

.footer .footer-section h3 {
    color: var(--secondary-color);
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer .footer-section h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer .footer-section h3:hover:after {
    width: 75px;
}

.footer .footer-section p {
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.footer .fcontact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.footer .fcontact-info li:hover {
    transform: translateX(5px);
}

.footer .fcontact-info li i {
    margin-right: 10px;
    color: var(--secondary-color);
    font-size: 16px;
    transition: transform 0.3s ease;
}

.footer .fcontact-info li:hover i {
    transform: scale(1.2);
}

.footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer .copyright {
    margin-bottom: 10px;
    font-size: 14px;
    opacity: 0.8;
}

.footer .footer-links {
    display: flex;
    flex-wrap: wrap;
}

.footer .footer-links a {
    color: var(--white);
    margin: 0 10px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.footer .footer-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

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

.footer .footer-links a:hover:after {
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .footer .footer-container {
        padding: 0 15px;
    }
    
    .footer .footer-section {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer .footer-container {
        flex-direction: column;
    }
    
    .footer .footer-section {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .footer .footer-bottom {
        flex-direction: column;
    }
    
    .footer .copyright {
        margin-bottom: 15px;
    }
    
    .footer .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer .footer-section h3 {
        font-size: 18px;
    }
    
    .footer .footer-links a {
        margin: 0 8px;
        font-size: 13px;
    }
    
    .footer .contact-info li i {
        font-size: 14px;
    }
}
/* 404 Page Styles */
.error-404 {
    padding: 100px 0;
    text-align: center;
    background-color: #f8f9fa;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-title {
    font-size: 120px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.error-subtitle {
    font-size: 32px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 20px;
}

.error-message {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 30px;
}

.back-home-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #010125;
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-home-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}