/* =======================================
   Variables & Design System
   ======================================= */
:root {
    /* Exact colors from the template */
    --clr-primary: #1428a0;
    /* Samsung Navy Blue */
    --clr-primary-dark: #0f1c70;
    --clr-primary-light: #eaf0ff;
    --clr-dark: #111625;
    --clr-dark-card: #1c2333;
    --clr-light: #ffffff;
    --clr-bg-light: #f4f7fb;
    --clr-text: #334155;
    --clr-text-light: #64748b;
    --clr-red: #ef4444;

    --font-family: 'Inter', sans-serif;
    --section-padding: 6rem 0;

    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;

    --shadow-sm: 0 4px 15px rgba(20, 40, 160, 0.03);
    --shadow-md: 0 12px 35px rgba(20, 40, 160, 0.06), 0 4px 10px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 25px 50px -12px rgba(20, 40, 160, 0.15), 0 12px 24px -10px rgba(20, 40, 160, 0.05);
    --shadow-glow: 0 15px 35px rgba(20, 40, 160, 0.18);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--clr-text);
    line-height: 1.6;
    background-color: var(--clr-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.text-white {
    color: var(--clr-light) !important;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--clr-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--clr-text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #111625;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.5);
    background: linear-gradient(135deg, #fcd34d, #fbbf24);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #f59e0b;
    color: #f59e0b;
}

.btn-outline:hover {
    background-color: #f59e0b;
    color: #111625;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.btn-outline:active {
    transform: translateY(-1px);
}

/* Header */
.header {
    background-color: #212a3b;
    color: var(--clr-light);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(17, 22, 37, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    background: white;
    padding: 8px 12px;
    border-radius: 8px;
}

.brand-logo {
    height: 55px;
    width: auto;
    transition: height 0.3s ease;
}

.header.scrolled .brand-logo {
    height: 45px;
}

.footer-logo {
    filter: brightness(0) invert(1);
    opacity: 0.9;
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    list-style: none;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #e2e8f0;
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 25px;
}

.nav-links a:hover {
    color: var(--clr-light);
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-links a.active {
    color: white;
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-links .btn {
    padding: 0.6rem 1.5rem;
    margin-left: 1rem;
}

.nav-links .btn::after {
    display: none;
}

/* Remove underline from button */
.mobile-menu-btn {
    display: none;
}

/* Hero Section */
.hero {
    background-color: #212a3b;
    color: var(--clr-light);
    padding: 0 0 8rem;
    position: relative;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.hero-image img {
    max-width: 120%;
    margin-left: -10%;
    /* To simulate the pop-out effect */
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 450px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Stats Wrapper (Overlapping) */
.stats-wrapper {
    position: relative;
    margin-top: -6rem;
    z-index: 10;
    padding: 0 1.5rem;
}

.stats-banner {
    background: var(--clr-light);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 2.5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.stat-item h3 {
    font-size: 2rem;
    color: var(--clr-dark);
    font-weight: 700;
}

.stat-item p {
    color: var(--clr-text);
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.stat-divider {
    width: 3px;
    height: 55px;
    background: linear-gradient(to bottom,
            #f59e0b,
            #fbbf24,
            #f59e0b);
    border-radius: 20px;
    box-shadow:
        0 0 8px rgba(251, 191, 36, .4),
        0 0 18px rgba(245, 158, 11, .35);
}

/* Services Provided Grid */
.services-provided {
    padding: 8rem 0 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1050px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(145deg, #ffffff 0%, #fcfdfd 100%);
    border: 3px solid #3b82f6;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(20, 40, 160, 0.2);
}

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

.feature-icon-wrapper {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--clr-primary-light), #f1f5f9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(20, 40, 160, 0.08);
}

.feature-card:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
    box-shadow: 0 8px 25px rgba(20, 40, 160, 0.3);
}

.feature-card:hover .feature-icon {
    stroke: white;
}

.feature-card h3 {
    color: #000000;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #000000 !important;
}

.feature-icon {
    transition: all 0.4s ease;
}

/* Popular Services (Split Background) */
.popular-services-wrapper {
    position: relative;
}

.popular-bg-dark {
    background-color: var(--clr-dark);
    padding: 5rem 0 10rem;
}

.popular-bg-dark .section-title {
    color: white;
    margin-bottom: 0;
}

.popular-bg-light {
    background-color: var(--clr-bg-light);
    padding: 0 0 6rem;
    margin-top: -6rem;
}

.services-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.service-card {
    background: var(--clr-light);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 4px solid var(--clr-primary);
}

.service-info {
    padding: 2rem;
    text-align: center;
}

.service-info h3 {
    color: var(--clr-dark);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-info p {
    color: var(--clr-text-light);
    font-size: 0.95rem;
}

/* Pricing */
.pricing-section {
    padding: var(--section-padding);
    background-color: var(--clr-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.price-card {
    background: var(--clr-light);
    border: 1px solid #e2e8f0;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 4px;
    transition: 0.3s;
}

.price-card.popular {
    background: var(--clr-dark);
    color: var(--clr-light);
    border-color: var(--clr-dark);
    padding: 4rem 2rem;
    transform: scale(1.05);
    z-index: 10;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
}

.price-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--clr-dark);
}

.price-card.popular h3 {
    color: var(--clr-light);
}

.price-circle {
    width: 120px;
    height: 120px;
    border: 2px solid var(--clr-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2rem;
    color: var(--clr-dark);
}

.price-card.popular .price-circle {
    color: var(--clr-light);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    align-self: flex-start;
    margin-top: 30px;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
}

.price-features li {
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: var(--clr-text);
}

.price-card.popular .price-features li {
    color: #cbd5e1;
}

/* How We Work */
.how-it-works {
    padding: var(--section-padding);
    background-color: var(--clr-dark);
}

.how-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--clr-light);
    flex-shrink: 0;
}

.step-item.active .step-number {
    background: var(--clr-primary);
}

.step-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--clr-light);
}

.step-item p {
    color: #94a3b8;
    font-size: 0.95rem;
}

/* Footer */
.footer-links a:hover {
    color: #f59e0b;
}


/* =======================================
   WhatsApp Floating Button
   ======================================= */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 2px 5px 20px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes pulse-blue {

    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, .7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 99, 235, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }

}

/* =======================================
   About Section Layout
   ======================================= */
/* (Moved to 3D stack section below) */

.about-images {
    position: relative;
    height: 500px;
}

.about-images::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    border: 1px dashed #cbd5e1;
    border-radius: 50%;
    z-index: 0;
    animation: spin 20s linear infinite;
}

.about-images::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 550px;
    height: 550px;
    border: 1px dashed #cbd5e1;
    border-radius: 50%;
    z-index: 0;
    animation: spin-reverse 30s linear infinite;
}

.img-box {
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

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

.img-1 {
    width: 60%;
    height: 75%;
    top: 0;
    left: 0;
}

.img-2 {
    width: 45%;
    height: 55%;
    bottom: 0;
    right: 5%;
}

.experience-badge {
    position: absolute;
    bottom: 20%;
    left: 45%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 4;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 140px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    animation: float 4s ease-in-out infinite;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes spin-reverse {
    0% {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-15px);
    }
}

.exp-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--clr-primary);
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    color: var(--clr-text);
    font-weight: 500;
    margin-top: 5px;
}

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

.about-content .about-icon {
    margin-bottom: 1rem;
}

.about-content .section-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--clr-primary-dark);
    font-weight: 700;
}

.title-yellow {
    color: #ca8a04;
}

/* Static Mustard Yellow */

/* Scroll Reveal Animations — defined in the section below (line ~2148+) */

/* =======================================
   Animated Title Gradients
   (consolidated from inline <style> blocks)
   ======================================= */
.animated-title-blue {
    background: linear-gradient(to right, #0f172a, #2563eb, #60a5fa, #2563eb, #0f172a);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shineLeftToRight 4s linear infinite;
    display: table;
    margin: 0 auto;
    text-align: center;
}

.animated-title-yellow {
    background: linear-gradient(to right, #422006, #ca8a04, #fef08a, #ca8a04, #422006);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shineLeftToRight 4s linear infinite;
    display: table;
    margin: 0;
    text-align: left;
}

@keyframes shineLeftToRight {
    to {
        background-position: 200% center;
    }
}

/* =======================================
   Specialization Cards (from index.html inline)
   ======================================= */
.special-card {
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 3px solid transparent;
    background-image: 
        linear-gradient(165deg, #ffffff 0%, #f0f4ff 40%, #e8f0fe 100%),
        linear-gradient(90deg, #1428a0, #3b82f6, #f59e0b);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    box-shadow:
        0 4px 20px rgba(20, 40, 160, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.special-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(ellipse at top center, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 13px;
}

.special-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow:
        0 20px 40px rgba(20, 40, 160, 0.12),
        0 8px 16px rgba(59, 130, 246, 0.08);
    background-image: 
        linear-gradient(165deg, #ffffff 0%, #eef2ff 50%, #e0eaff 100%),
        linear-gradient(90deg, #f59e0b, #3b82f6, #1428a0);
}

.special-card img {
    display: block;
    margin: 0 auto 1.5rem auto;
    object-fit: contain;
}

/* =======================================
   Contact Page Animations (from contact.html inline)
   ======================================= */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease-out forwards;
}

.animate-delay-1 {
    animation-delay: 0.2s;
}

.animate-delay-2 {
    animation-delay: 0.4s;
}

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

.contact-card h3,
.contact-card h4,
.contact-card .form-label {
    color: #000000 !important;
}


/* Stagger the card animations by column */
.features-grid .feature-card:nth-child(1),
.features-grid .feature-card:nth-child(4) {
    animation-delay: 0s;
}

.features-grid .feature-card:nth-child(2),
.features-grid .feature-card:nth-child(5) {
    animation-delay: 0.1s;
}

.features-grid .feature-card:nth-child(3),
.features-grid .feature-card:nth-child(6) {
    animation-delay: 0.2s;
}

/* Stagger the stats banner items */
.stats-banner .stat-item:nth-child(1) {
    animation-delay: 0s;
}

.stats-banner .stat-item:nth-child(3) {
    animation-delay: 0.1s;
}

.stats-banner .stat-item:nth-child(5) {
    animation-delay: 0.2s;
}

.stats-banner .stat-item:nth-child(7) {
    animation-delay: 0.3s;
}

/* =======================================
   Service Details Horizontal Cards
   ======================================= */
.service-horizontal-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 3.5rem 4rem;
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 950px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-left: 6px solid var(--clr-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-horizontal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, var(--clr-primary-light) 0%, transparent 40%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.service-horizontal-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.service-horizontal-card:hover::before {
    opacity: 0.6;
}

.service-title {
    color: var(--clr-primary-dark);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.service-text {
    color: var(--clr-text);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.service-horizontal-card .btn {
    position: relative;
    z-index: 1;
}

/* =======================================
   Typography Graphics
   ======================================= */
.animated-heading {
    background: linear-gradient(120deg, var(--clr-primary-dark) 40%, #3b82f6 50%, var(--clr-primary-dark) 60%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: textShine 4s linear infinite;
}

@keyframes textShine {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* =======================================
   Sleek Auto-Scrolling Carousel
   ======================================= */
.carousel-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 1rem 0 2.5rem;
}

.carousel-container::before,
.carousel-container::after {
    display: none;
}

.carousel-track {
    display: inline-flex;
    gap: 1.5rem;
    animation: scroll 40s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-card {
    display: inline-block;
    white-space: normal;
    width: 240px;
    flex-shrink: 0;
    vertical-align: top;
    padding: 1.5rem 1rem;
}

.carousel-card .feature-icon-wrapper {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
}

.carousel-card .feature-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.carousel-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.carousel-card p {
    font-size: 0.85rem !important;
    line-height: 1.4;
}

/* =======================================
   About Us Section (3D Stack)
   ======================================= */
.about-section {
    padding: var(--section-padding);
    background-color: var(--clr-light);
    overflow: hidden;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-3d-stack {
    position: relative;
    width: 100%;
    height: 600px;
}

.stack-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: var(--clr-primary);
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
}

.glow-1 {
    top: 20%;
    left: 10%;
}

.glow-2 {
    bottom: 20%;
    right: 20%;
    background: #3b82f6;
}

.stack-card {
    position: absolute;
    width: 220px;
    height: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.stack-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-3 {
    top: 0;
    left: 0;
    z-index: 1;
    box-shadow: var(--shadow-md);
}

.card-2 {
    top: 150px;
    left: 28%;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.card-1 {
    top: 300px;
    left: 56%;
    z-index: 3;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.card-3:hover,
.card-2:hover,
.card-1:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 35px 70px rgba(20, 40, 160, 0.3);
    z-index: 10;
}

.experience-badge-3d {
    position: absolute;
    bottom: 50px;
    left: 10%;
    z-index: 5;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
    color: white;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(20, 40, 160, 0.4);
    border: 3px solid white;
    transform: translateZ(40px);
}

.exp-number {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    color: white !important;
}

.exp-text {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    opacity: 0.9;
    color: white !important;
}

.about-content {
    padding-right: 2rem;
}

.about-text {
    color: black;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-3d-stack {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }
}

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

    100% {
        transform: translateX(calc(-50% - 1rem));
    }
}

/* =======================================
   Split-Screen Services UI
   ======================================= */
.split-services-section {
    padding: 2rem 0 2rem;
    background: #e2e8f0;
    /* Darker blue-gray background to make white cards pop */
}

.split-services-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.service-tabs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-tab-btn {
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    text-align: left;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.service-tab-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.service-tab-btn.active {
    background-image: 
        linear-gradient(#ffffff, #ffffff),
        linear-gradient(90deg, #1428a0, #3b82f6, #f59e0b);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    border-color: transparent;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-tab-btn .tab-icon {
    color: var(--clr-text-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-tab-btn:hover .tab-icon {
    transform: scale(1.1) translateX(3px);
    color: var(--clr-primary);
}

.service-tab-btn.active .tab-icon {
    color: var(--clr-primary);
}

.service-tab-btn .tab-text h4 {
    color: var(--clr-text);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    transition: color 0.3s ease;
}

.service-tab-btn.active .tab-text h4 {
    color: var(--clr-primary-dark);
}

.service-tab-btn .tab-text p {
    color: var(--clr-text-light);
    font-size: 0.85rem;
    margin: 0;
}

.service-content-wrapper {
    position: relative;
    min-height: 300px;
}

.service-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
}

.panel-glass {
    background: linear-gradient(145deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 4rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.panel-glass .btn {
    position: relative;
    overflow: hidden;
}

.panel-glass .btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: btnShine 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes btnShine {
    0% {
        transform: translateX(-150%) rotate(45deg);
    }

    100% {
        transform: translateX(150%) rotate(45deg);
    }
}

/* =======================================
   Warranty Features Grid
   ======================================= */
.warranty-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.warranty-feature-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    padding: 1.25rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.warranty-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md), 0 10px 20px rgba(0, 85, 255, 0.1);
    border-color: var(--clr-primary-light);
}

.warranty-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(0, 85, 255, 0.1);
    border-radius: 50%;
    color: var(--clr-primary);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.warranty-feature-card:hover .warranty-icon {
    background: var(--clr-primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.warranty-text {
    color: var(--clr-text);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .split-services-container {
        grid-template-columns: 1fr;
    }

    .service-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 1rem;
    }

    .service-tab-btn {
        min-width: 200px;
    }
}

.footer-logo {
    background: white;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    display: block;
    width: 200px;
    height: auto;
}

/* =======================================
   Popular Services Redesign (Dark Photo Cards)
   ======================================= */
.popular-services-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.9)), url('assets/service_refrigerator_1783528683844.png') center/cover no-repeat fixed;
    color: white;
}

.popular-services-section .section-title {
    color: white;
    text-align: center;
    margin-bottom: 4rem;
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.popular-card {
    background: var(--clr-primary-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.popular-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
}

.popular-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.popular-card-content {
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.popular-card-title {
    color: white;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.popular-card-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =======================================
   Services Dashboard (New Page)
   ======================================= */
.services-dashboard {
    padding: 3rem 0 6rem;
    background: var(--clr-bg-light);
    /* Soft light blue/gray background */
    min-height: 80vh;
    color: var(--clr-text);
    overflow-x: hidden;
}

.dashboard-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(90deg, #1428a0 0%, #3a5bf2 25%, #212a3b 50%, #3a5bf2 75%, #1428a0 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine 4s linear infinite;
}

.dashboard-subtitle {
    text-align: center;
    color: var(--clr-text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.dashboard-container {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2rem;
    align-items: flex-start;
    min-width: 0;
}

.dashboard-container>* {
    min-width: 0;
}

.dashboard-sidebar {
    background-image: 
        linear-gradient(#ffffff, #ffffff),
        linear-gradient(90deg, #1428a0, #3b82f6, #f59e0b);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    border: 2px solid transparent;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
}

.dashboard-sidebar h3 {
    color: var(--clr-dark);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    border-bottom: 1px solid var(--clr-primary-light);
    padding-bottom: 0.75rem;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    padding: 0.85rem 1.2rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    border-radius: var(--radius-md);
    color: var(--clr-text);
    font-size: 1.15rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-list li:hover {
    background: var(--clr-primary-light);
    color: var(--clr-primary);
    border: 2px solid rgba(20, 40, 160, 0.2);
}

.category-list li.active {
    background: linear-gradient(135deg, #1a33b8, #1428a0);
    color: white;
    box-shadow: 0 4px 15px rgba(20, 40, 160, 0.25);
    border-color: transparent;
}

.dashboard-content {
    background-image: 
        linear-gradient(#ffffff, #ffffff),
        linear-gradient(90deg, #1428a0, #3b82f6, #f59e0b);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    border: 2px solid transparent;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
}

.dashboard-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.toggle-switch {
    display: flex;
    background: #f1f5f9;
    padding: 0.4rem;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
}

.toggle-btn {
    padding: 0.75rem 1.8rem;
    border: 2px solid transparent;
    background: transparent;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--clr-text-light);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn:hover {
    color: var(--clr-dark);
}

.toggle-btn.active {
    background-image: 
        linear-gradient(#ffffff, #ffffff),
        linear-gradient(90deg, #1428a0, #3b82f6, #f59e0b);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    color: var(--clr-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.search-input {
    padding: 0.75rem 1.25rem;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 50px;
    width: 320px;
    font-size: 1.1rem;
    color: var(--clr-dark);
    outline: none;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: #94a3b8;
}

.search-input:focus {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(20, 40, 160, 0.1);
}

.data-table {
    display: none;
    overflow-x: auto;
}

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

.data-table.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.data-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-image: 
        linear-gradient(#ffffff, #ffffff),
        linear-gradient(90deg, #1428a0, #3b82f6, #f59e0b);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.data-table th {
    background: #ffffff;
    color: #000000;
    font-weight: 700;
    text-align: left;
    padding: 1.5rem;
    border-bottom: 2px solid black;
    border-right: 1px solid black;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.data-table th:last-child {
    border-right: none;
}

.data-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid black;
    border-right: 1px solid black;
    color: #000000;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.data-table td:last-child {
    border-right: none;
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tbody tr {
    cursor: pointer;
}

.data-table tbody tr:hover td {
    background: #ffffff;
    color: #111625;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.data-table tbody tr:hover td:first-child {
    box-shadow: inset 4px 0 0 #f59e0b;
    color: #f59e0b;
    font-weight: 600;
    padding-left: 1.75rem;
    /* slight nudge to the right */
}

.data-table tr[style*="background:#f1f5f9;"] {
    background: #eaf0ff !important;
}

.data-table tr[style*="background:#f1f5f9;"] td {
    color: var(--clr-primary-dark);
    font-weight: 600;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #d4e0ff;
}

@media (max-width: 992px) {
    .dashboard-container {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar h3 {
        display: none;
        /* Hide 'Categories' title to save space on mobile */
    }

    .category-list {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        gap: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .category-list li {
        margin-bottom: 0;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .dashboard-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .search-input {
        width: 100%;
        max-width: none;
    }

    .dashboard-content {
        padding: 1.5rem;
    }
}

/* =======================================
   Mobile Responsiveness (Media Queries)
   ======================================= */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        margin-left: 0;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stats-banner {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .stat-item {
        flex: 1 1 40%;
    }

    .stat-divider {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .price-card.popular {
        transform: scale(1);
    }

    .extended-warranty-section .container>div {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .split-services-container {
        grid-template-columns: 1fr !important;
    }

    .split-services-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .header-container {
        justify-content: space-between;
    }

    .header .btn-primary {
        display: none;
        /* Hide Book button on mobile to save space */
    }

    .mobile-menu-btn {
        display: block;
        background: transparent;
        border: none;
        cursor: pointer;
        color: white;
        padding: 0.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--clr-dark);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        text-align: center;
        gap: 1.5rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links .btn {
        margin: 1rem auto 0;
    }

    /* Responsive Grids */
    .popular-grid,
    .features-grid,
    .pricing-grid,
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

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

    .section-title {
        font-size: 2rem !important;
    }

    .experience-badge {
        left: 50%;
        width: 120px;
        height: 120px;
    }

    .exp-number {
        font-size: 2.5rem;
    }

    .carousel-card {
        width: 220px;
    }

    /* Fix about section overflows */
    .about-images::before,
    .about-images::after {
        display: none !important;
    }

    .about-images {
        height: 350px;
    }

    .about-3d-stack {
        height: 420px;
    }

    .stack-card {
        width: 160px;
        height: 200px;
    }

    .card-2 {
        top: 100px;
        left: 20%;
    }

    .card-1 {
        top: 200px;
        left: 40%;
    }

    .experience-badge-3d {
        bottom: 0;
        left: 5%;
        transform: scale(0.8) translateZ(40px);
    }

    .img-1 {
        width: 70%;
        height: 80%;
    }

    .img-2 {
        width: 50%;
        height: 60%;
    }

    /* Dashboard mobile fixes */
    .dashboard-content {
        padding: 1rem;
    }

    .data-table {
        max-width: 100%;
    }
}

/* Shine Text Animation */
.shine-text {
    background: linear-gradient(120deg,
            var(--clr-primary-dark) 0%,
            var(--clr-primary) 35%,
            #93c5fd 50%,
            var(--clr-primary) 65%,
            var(--clr-primary-dark) 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine 3s linear infinite;
    display: inline-block;
}


/* =======================================
   About Our Founder Section
   ======================================= */
.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.founder-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #000000;
}

@media (max-width: 768px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* =======================================
   Bento Style (Why Choose Us)
   ======================================= */

/* =======================================
   Contact Page Styles
   ======================================= */
.contact-section {
    padding: 6rem 0;
    background: #e6f0fb;
    /* Light sky blue */
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-card {
    background-image: 
        linear-gradient(#ffffff, #ffffff),
        linear-gradient(90deg, #1428a0, #3b82f6, #f59e0b);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    border: 2px solid transparent;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-card h3 {
    font-size: 1.75rem;
    color: var(--clr-dark);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--clr-primary-light);
    padding-bottom: 1rem;
}

.contact-detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-detail-icon {
    font-size: 1.5rem;
    color: var(--clr-primary);
    background: var(--clr-primary-light);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-detail-content h4 {
    color: #000000;
    margin-bottom: 0.25rem;
}

.contact-detail-content p {
    color: #000000;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--clr-dark);
}

.form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    color: #000000;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-control:focus {
    outline: none;
    border-color: #f59e0b;
    /* Marigold */
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
    background: #ffffff;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes shine {
    from {
        background-position: 200% center;
    }

    to {
        background-position: 0% center;
    }
}


/* =======================================
   Scroll Reveal Animations
   ======================================= */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.slide-in-left.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.slide-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Staggering delays for multiple items */
.reveal-up:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal-up:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal-up:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal-up:nth-child(4) {
    transition-delay: 0.4s;
}

.reveal-up:nth-child(5) {
    transition-delay: 0.5s;
}

/* =======================================
   Hero Section Animations
   ======================================= */
@keyframes heroFadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-80px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes heroFadeInRight {
    0% {
        opacity: 0;
        transform: translateX(80px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroFadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-image {
    animation: heroFadeInLeft 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-title {
    opacity: 0;
    animation: heroFadeInRight 1s cubic-bezier(0.25, 1, 0.5, 1) 0.2s forwards;
}

.hero-subtitle {
    opacity: 0;
    animation: heroFadeInRight 1s cubic-bezier(0.25, 1, 0.5, 1) 0.4s forwards;
}

.hero-actions {
    opacity: 0;
    animation: heroFadeUp 1s cubic-bezier(0.25, 1, 0.5, 1) 0.6s forwards;
}

/* =======================================
   Text Highlight Animations
   ======================================= */
@keyframes pulseGold {
    0% {
        color: #fbbf24;
        text-shadow: 0 0 5px rgba(251, 191, 36, 0.1);
    }

    50% {
        color: #fef08a;
        text-shadow: 0 0 20px rgba(251, 191, 36, 0.8);
    }

    100% {
        color: #fbbf24;
        text-shadow: 0 0 5px rgba(251, 191, 36, 0.1);
    }
}

.highlight-gold {
    color: #fbbf24;
    display: inline-block;
    animation: pulseGold 2.5s infinite ease-in-out;
}

@keyframes sweepGold {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.sweep-gold {
    background: linear-gradient(120deg,
            #f59e0b 0%,
            #fbbf24 40%,
            #fffbeb 50%,
            #fbbf24 60%,
            #f59e0b 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: sweepGold 4s linear infinite;
    display: inline-block;
}

/* =======================================
   Floating Call Button
   ======================================= */

.call-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 105px;
    right: 30px;

    background: #2563eb;
    color: #fff;

    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

    text-decoration: none;

    box-shadow: 2px 2px 15px rgba(0, 0, 0, .2);

    z-index: 1000;

    transition: all .3s ease;

    animation: pulse-blue 2s infinite;
}

.call-float svg {
    width: 30px;
    height: 30px;
}

.call-float:hover {
    background: #1d4ed8;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 2px 5px 20px rgba(37, 99, 235, .5);
}


/* ===========================
   Service Tab Buttons – Mustard Yellow
=========================== */

.service-tab-btn:nth-child(1) {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #3a2e0a;
    border: none;
}

.service-tab-btn:nth-child(1) h4,
.service-tab-btn:nth-child(1) p {
    color: #3a2e0a;
}

.service-tab-btn:nth-child(1) .tab-icon {
    color: #5c4a12;
}

.service-tab-btn:nth-child(2) {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #3a2e0a;
    border: none;
}

.service-tab-btn:nth-child(2) h4,
.service-tab-btn:nth-child(2) p {
    color: #3a2e0a;
}

.service-tab-btn:nth-child(2) .tab-icon {
    color: #5c4a12;
}

.service-tab-btn:hover {
    transform: translateX(8px) scale(1.03);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .25);
}