/* ==========================================
   ROOT VARIABLES & RESET
   ========================================== */
:root {
    --primary-color: #c13832;
    --primary-light: #e01414;
    --secondary-color: #952624;
    --secondary-dark: #6b1b19;
    --dark-color: #1a365d;
    --dark-medium: #1e293b;
    --light-color: #f8fafc;
    --light-medium: #f1f5f9;
    --text-color: #1a365d;
    --text-light: #44596E;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #cb0c0c 0%, #952624 100%);
    --gradient-light: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    --shadow-sm: 0 2px 8px rgba(203, 12, 12, 0.08);
    --shadow-md: 0 4px 20px rgba(203, 12, 12, 0.12);
    --shadow-lg: 0 10px 40px rgba(203, 12, 12, 0.15);
    --shadow-xl: 0 20px 60px rgba(203, 12, 12, 0.2);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --border-radius-lg: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
h1, h2, h3, h4, h5, h6 {
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-color);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================
   HERO SECTION - ENHANCED
   ========================================== */
.roboticsur-section {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 50%, #ffe5e5 100%);
    position: relative;
    overflow: hidden;
    padding: 40px 0 40px;
}

/* Animated Particles Background */
.roboticsur-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

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

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

.roboticsur-badge {
    /* display: inline-flex; */
    display: none;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease;
}

.roboticsur-badge i {
    font-size: 1.1rem;
}

.roboticsur-title {
    font-size: 3.2rem;
    font-weight: 700;
    /* color: var(--white); */
    letter-spacing: -2px;
    line-height: 1.1;
    animation: fadeInUp 1s ease 0.2s both;
    margin-bottom: 30px;
}

.text-highlight {
    /* background: linear-gradient(to right, rgba(255, 255, 255, 0.9), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; */
    position: relative;
    display: inline-block;
}

.text-highlight::after {
        content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--primary-color);
    border-radius: 60px;
    opacity: 0.2;
}

.roboticsur-subtitle {
    font-size: 1.15rem;
    color: var(--dark-color);
    line-height: 1.6;
    max-width: 600px;
    margin: 10px 0;
    animation: fadeInUp 1s ease 0.4s both;
}

.roboticsur-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.roboticno-item {
    text-align: center;
}

.roboticno-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.roboticno-label {
    font-size: 0.95rem;
    color: var(--dark-color);
    font-weight: 500;
}

.roboticsur-cta {
    animation: fadeInUp 1s ease 0.8s both;
}

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

/* Hero Image Section */
.roboticsur-image-wrapper {
    position: relative;
    z-index: 2;
}

.roboticsur-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(203, 12, 12, 0.2), transparent);
    z-index: 1;
    transition: var(--transition);
}

/* .image-frame:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
} */

.image-frame:hover::before {
    opacity: 0.5;
}

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

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--white);
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.floating-card span {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
}

.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -8%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 15%;
    left: -5%;
    animation-delay: 2s;
}

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

.wave-decoration {
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 150px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23ffffff'%3E%3C/path%3E%3C/svg%3E") no-repeat center bottom;
    background-size: cover;
    z-index: 1;
}

/* ==========================================
   HERO BUTTONS
   ========================================== */
.btn-hero-primary {
    background: var(--primary-color);
    color: var(--white);
    /* border: 2px solid var(--white); */
    border-radius: 9px;
    font-weight: 400;
    font-size: 1.1rem;
    padding: 0.92rem 1.6rem;

    transition: var(--transition);
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
    background-color: #cb0c0c;
    color: var(--white);
    /* border-color: var(--white); */
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);

}

.btn-hero-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid #cb0c0c;
       border-radius: 9px;
    font-weight: 400;
    font-size: 1.1rem;
    padding: 0.88rem 1.6rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.btn-hero-outline:hover {
    background:var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
 
}

/* ==========================================
   SECTION STYLES - ENHANCED
   ========================================== */
 

.roboticsec-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-light);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.roboticsec-badge i {
    font-size: 1rem;
}

.roboticsec-title {
    font-size: 2.25rem;
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    letter-spacing: -1px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 3px;
    position: relative;
}

/* .title-underline::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
} */

.roboticsec-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* ==========================================
   BEST HOSPITAL SECTION - ENHANCED
   ========================================== */
.best-hospital-section {
    padding: 100px 0;
    background: var(--white);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
    color: var(--text-color);
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* Modern Image Layout */
.robot-images-modern {
    position: relative;
}

.main-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 24px;
    transition: var(--transition);
}

.main-image:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.main-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
}

.image-badge i {
    color: #fbbf24;
    font-size: 1.1rem;
}

.secondary-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.secondary-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 190px;
}

.secondary-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

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

/* ==========================================
   INFO SECTIONS - ENHANCED
   ========================================== */
.bg-light-pattern {
    background: var(--light-color);
    position: relative;
}

.bg-light-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(203, 12, 12, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(203, 12, 12, 0.03) 0%, transparent 50%);
}

.info-card {
    position: relative;
    z-index: 1;
}

.modern-card, .modern-card-white {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.modern-card:hover, .modern-card-white:hover {
    /* transform: translateY(-5px); */
    box-shadow: var(--shadow-md);
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.22rem;
    color: var(--white);
}

.icon-wrapper i {
    transform: rotate(-45deg);
    font-size: 1.8rem;
}


/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-item {
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.step-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

/* ==========================================
   BENEFITS SECTION - ENHANCED
   ========================================== */
.bg-gradient {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 50%, #fef2f2 100%);
}

.benefits-section {
    padding: 60px 0;
}

.benefit-card {
       background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

/* .benefit-card:hover::before {
    transform: scaleX(1);
} */

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: var(--gradient-primary);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    transition: var(--transition);
    /* transform: rotate(45deg); */
    box-shadow: var(--shadow-md);
}

/* .benefit-icon i {
    transform: rotate(-30deg);
} */

/* .benefit-card:hover .benefit-icon {
    transform: rotate(45deg) scale(1.1);
    box-shadow: var(--shadow-lg);
} */

.benefit-title {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.benefit-text {
    font-size: 1.05rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* ==========================================
   SURGERIES SECTION - ENHANCED
   ========================================== */
.surgeries-section {
    padding: 100px 0;
    background: var(--white);
}

.surgery-list-card {
    background: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 5px solid var(--primary-color);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.surgery-list-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(203, 12, 12, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.surgery-list-card:hover {
    transform: translatey(6px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--secondary-color);
    background: var(--white);
}

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

.custom-list li {
    font-size: 1.15rem;
    color: var(--text-color);
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    line-height: 1.7;
    font-weight: 500;
}

.custom-list li:last-child {
    margin-bottom: 0;
}

.custom-list li i {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-right: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ==========================================
   WHY CHOOSE SECTION - ENHANCED
   ========================================== */
.why-choose-section {
    padding: 100px 0;
    background: var(--light-color);
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 2px solid transparent;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: var(--transition);
}

/* .feature-card:hover::before {
    transform: scaleY(1);
} */

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.feature-number {
    font-size: 2.6rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

.feature-title {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 16px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.feature-text {
    font-size: 1.05rem;
    color: var(--text-light);
    margin: 0;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

/* ==========================================
   CTA SECTION - ENHANCED
   ========================================== */
.cta-section {
    background: var(--gradient-primary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite reverse;
}

.cta-title {
    font-size: 2.25rem;
    color: var(--white);
    font-weight: 600;
    letter-spacing: -1px;
}

.cta-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

.cta-buttons {
    position: relative;
    z-index: 1;
}

/* ==========================================
   BUTTONS - ENHANCED
   ========================================== */
.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
    padding: 16px 36px;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
    font-size: 1.1rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 16px 36px;;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-3px);
}
 
/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablets (≥768px to <992px) */
@media (max-width: 991.98px) {
    .roboticsur-title {
        font-size: 3.5rem;
        letter-spacing: -1px;
    }
    
    .roboticsur-subtitle {
        font-size: 1.15rem;
    }
    
    .roboticsec-title {
        font-size: 2.25rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .roboticsur-stats {
        gap: 30px;
    }
    
    .roboticno-number {
        font-size: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Mobile Landscape (≥576px to <768px) */
@media (max-width: 767.98px) {
    section {
        padding: 30px 0 !important;
    }
    
    .roboticsur-section {
        padding: 60px 0 100px;
    }
    
    .roboticsur-title {
        font-size: 2.75rem;
        letter-spacing: -0.5px;
    }
    
    .text-highlight::after {
        display: none;
    }
    
    .roboticsur-subtitle {
        font-size: 1.05rem;
    }
    
    .roboticsur-stats {
        gap: 25px;
    }
    
    .roboticno-number {
        font-size: 1.8rem;
    }
    
    .roboticsec-title {
        font-size: 2rem;
    }
    
    .roboticsec-text {
        font-size: 1.05rem;
    }
    
    .modern-card, .modern-card-white {
        padding: 40px 30px;
    }
    
    .main-image img {
        height: 300px;
    }
    
    .secondary-images {
        grid-template-columns: 1fr;
    }
    
    .secondary-image {
        height: 200px;
    }
    
    .cta-title {
        font-size: 2.25rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .btn-primary,
    .btn-outline-light,
    .btn-hero-primary,
    .btn-hero-outline {
        padding: 16px 35px;
        font-size: 1rem;
        width: 100%;
    }
}

/* Mobile Portrait (≤576px) */
@media (max-width: 575.98px) {
    .roboticsur-section {
        padding: 30px 0 40px;
    }
    .content-wrapper{ padding: 0px 10px !important;}
    .btn-hero-primary{display: block;}
    .roboticsur-title {
        font-size: 2.25rem;
    }
    .best-hospital-section{padding: 30px 0px;}
    
    .roboticsur-subtitle {
        font-size: 1rem;
    }
    
    .roboticsur-badge {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    
    .roboticsur-stats {
        gap: 20px;
    }
    
    .roboticno-number {
        font-size: 1.6rem;
    }
    
    .roboticno-label {
        font-size: 0.85rem;
    }
    
    .roboticsec-title {
        font-size: 1.75rem;
    }
    
    .roboticsec-text {
        font-size: 1rem;
    }
    
    .modern-card, .modern-card-white {
        padding: 35px 25px;
    }
    
    .icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .main-image img {
        height: 250px;
    }
    
    .benefit-icon {
        width: 56px;
        height: 56px;
        font-size: 1.8rem;
    }
    
    .benefit-title {
        font-size: 1.25rem;
    }
    
    .benefit-text {
        font-size: 1rem;
    }
    
    .benefit-card,
    .feature-card,
    .surgery-list-card {
        padding: 20px 20px;
    }
    
    .custom-list li {
        font-size: 1.05rem;
    }
    
    .feature-number {
        font-size: 2.4rem;
        top: 15px;
        right: 20px;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .feature-text {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 1.85rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .wave-decoration {
        height: 80px;
    }
}

/* Extra Small Devices (≤380px) */
@media (max-width: 380px) {
    .roboticsur-title {
        font-size: 2rem;
    }
    
    .roboticsec-title {
        font-size: 1.6rem;
    }
    
    .main-image img {
        height: 220px;
    }
}

/* ==========================================
   ANIMATIONS & UTILITIES
   ========================================== */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

 
/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

 

/* Loading Animation */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

 