/* Premium Button Style (Added from previous step) */
.btn-octal-main {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 14px 35px;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    color: #ffffff !important;
    /* Button text stays pure white for contrast */
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border: none;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

.btn-octal-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.5);
    background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 100%);
}

.btn-octal-main .icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #ffffff;
    border-radius: 50%;
    color: #2563eb;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.btn-octal-main:hover .icon-circle {
    transform: translateX(5px);
}

/* Smooth transition for text changing */
#dynamic-heading, #dynamic-desc {
    transition: opacity 0.3s ease-in-out;
}


/* 1. Pink/Dark Blue Text Gradient Style */
.text-gradient-pink-blue {
    background: linear-gradient(90deg, #ff00cc 0%, #333399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    /* Extra Bold */
}

/* 2. New Awards Grid Styles */
.awards-row {
    margin-top: 60px;
}

.award-card {
    background-color: #1a1a2e;
    /* Dark background matches screenshot */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px 15px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.award-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.award-icon-img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

.award-text {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
}



/* Section Background */
.stats-modern-section {
    background-color: #111827;
    /* Dark background */
    padding: 80px 0;
    color: #ffffff;
}

/* Left Side Heading & Text */
.stats-heading-large {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.stats-desc-large {
    font-size: 1rem;
    color: #b0b0b0;
    /* Light gray text */
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

/* PREMIUM BUTTON UI/UX (Matches Hero Section) */
.btn-shine-blue {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 12px 35px;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    /* Vibrant Blue */
    color: #ffffff !important;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border: none;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    /* Glow Shadow */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

/* Button Hover Effect */
.btn-shine-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.5);
    background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 100%);
}

/* Button Icon Circle */
.btn-shine-blue .icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #ffffff;
    border-radius: 50%;
    color: #2563eb;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

/* Icon Animation on Hover */
.btn-shine-blue:hover .icon-circle {
    transform: translateX(5px);
}

/* Right Side Grid Styling */
.stat-card-box {
    background-color: #1f2937;
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-card-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #f59e0b;
    /* Orange/Yellow */
    margin-bottom: 10px;
    line-height: 1;
}

.stat-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 0.9rem;
    color: #9ca3af;
    line-height: 1.4;
}

label {
    display: flex !important;
}


/* Section Background & Spacing */
.estimate-section {
    background-color: #0b0f19;
    position: relative;
    overflow: hidden;

    /* --- ADDED SPACING HERE --- */
    margin-top: 100px;
    /* Space above the section */
    margin-bottom: 100px;
    /* Space below the section */
    /* -------------------------- */
}

/* Ambient Background Glows */
.estimate-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

/* Card Styling */
.cost-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Hover Effects */
.cost-card:hover {
    transform: translateY(-10px);
    border-color: var(--card-accent);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5),
        0 0 20px -5px var(--card-accent-glow);
}

/* Icon Container */
.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--card-accent);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.cost-card:hover .icon-wrapper {
    background: var(--card-accent);
    color: #000;
    box-shadow: 0 0 15px var(--card-accent-glow);
}

/* Typography */
.cost-card h5 {
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.cost-card p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* CTA Link */
.card-link {
    color: var(--card-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
    transition: 0.3s;
}

.card-link:hover {
    opacity: 1;
    gap: 0.75rem;
}

/* Card Specific Colors */
.theme-orange {
    --card-accent: #f97316;
    --card-accent-glow: rgba(249, 115, 22, 0.4);
}

.theme-green {
    --card-accent: #10b981;
    --card-accent-glow: rgba(16, 185, 129, 0.4);
}

.theme-yellow {
    --card-accent: #eab308;
    --card-accent-glow: rgba(234, 179, 8, 0.4);
}

.theme-blue {
    --card-accent: #3b82f6;
    --card-accent-glow: rgba(59, 130, 246, 0.4);
}

.theme-purple {
    --card-accent: #a855f7;
    --card-accent-glow: rgba(168, 85, 247, 0.4);
}

.theme-pink {
    --card-accent: #ec4899;
    --card-accent-glow: rgba(236, 72, 153, 0.4);
}


#imageSliderPopup img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

#popupCard {
    max-width: 900px;
    width: 90%;
    z-index: 1050;
    padding: 20px;
}

.popup-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    z-index: 9999;
}