/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    height: 80vh;
    overflow: hidden;
    margin-top: -50px;
}

/* ===== Carousel ===== */
/* .hero-carousel {
    position: absolute;
    width: 100%;
    height: 100%;
} */

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 80%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

/* ===== Dark Overlay ===== */
.hero-overlay {
    position: absolute;
    width: 100%;
    height: 80%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 2;
}

/* ===== Content ===== */
.hero-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-lead {
    font-size: 18px;
    max-width: 700px;
    margin-bottom: 35px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

/* ===== Buttons ===== */
.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.primary-btn,
.outline-btn {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Primary Button */
.primary-btn {
    background: #63c0e5;
    border-radius: 50px;
    color: #ffffff;
}

.primary-btn:hover {
    background: #ffffff;
    color: #000;
}

/* Outline Button */
.outline-btn {
    background-color: #63c0e5;
    color: #fff;
}

.outline-btn:hover {
    background: #fff;
    color: #000;
}

/* ===== Stats ===== */
.hero-stats {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}


/* ===== Responsive ===== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-lead {
        font-size: 16px;
    }

    .hero-stats {
        gap: 25px;
    }
}


/* ===== Services Section ===== */
.services-section {
    padding: 80px 20px;
    background: #f5f7fa;
}

.services-container {
    max-width: 1200px;
    margin: auto;
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-sub {
    font-size: 14px;
    color: #0d6efd;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.heading-line {
    width: 60px;
    height: 4px;
    background: #63c0e5;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* ===== Grid ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* ===== Card ===== */
.service-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* ===== Icon Image ===== */
.service-icon {
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 10px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.service-card:hover .service-icon img {
    transform: scale(1.08);
}

/* ===== Text ===== */
.service-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #222;
}

.service-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ===== Button ===== */
.service-btn {
    display: inline-block;
    padding: 8px 18px;
    border: 2px solid #0d6efd;
    color: #0d6efd;
    border-radius: 5px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s ease;
}

.service-btn:hover {
    background: #0d6efd;
    color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }
}


/* ===== AC Spotlight Section ===== */
.ac-spotlight {
    background: #f0f8ff;
    padding: 80px 20px;
    
}

.spotlight-container {
    max-width: 1200px;
    margin:0 auto;
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.spotlight-title {
    font-size: 34px;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 10px;
}

.spotlight-subtitle {
    color: #555;
    font-size: 16px;
}

/* ===== Grid ===== */
.ac-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    align-items: stretch;
}

/* ===== Card ===== */
.ac-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.ac-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ===== Image ===== */
.ac-image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.ac-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* ===== Titles ===== */
.ac-card-title {
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
}

.primary-color {
    color: #0066cc;
}

.secondary-color {
    color: #5d46ee;
}

/* ===== Description ===== */
.ac-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ===== List ===== */
.ac-list {
    list-style: none;
    margin: 20px 0;
}

.ac-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #555;
}

.primary-list i {
    color: #0066cc;
}

.secondary-list i {
    color: #5d46ee;
}

/* ===== Buttons ===== */
.primary-btns,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    transition: 0.3s;
}

.primary-btns {
    background: #63c0e5;
}

.primary-btns:hover {
    background: #2d0781;
    color: #000;
}

.secondary-btn {
    background: #63c0e5;

}

.secondary-btn:hover {
    background: #480a99;
    color: #000;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .spotlight-title {
        font-size: 26px;
    }

    .ac-services-grid {
        grid-template-columns: 1fr;
    }
}


/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #cc005c, #5d46ee);
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Button Wrapper */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Base Button Style */
.call-btns {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;

}


/* White Outline Button */
.white-btn {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.white-btn:hover {
    background: #ffffff;
    color: #0066cc;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-title {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .call-btns {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}