body{
    background: #001B24;
}

.activation-section {
    position: relative;
    width: 100%;
    height: 650px;
    background: url('../images/activation_area_bg.webp') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Dark Overlay */
.activation-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.activation-section .content-box {
    position: relative;
    z-index: 2;
    width: 75%;
    max-width: 1150px;
    padding: 70px 40px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    text-align: center;
    backdrop-filter: blur(2px);
}

.activation-section .content-box h1 {
    color: #fff;
    font-size: 64px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 18px;
}

.activation-section .content-box p {
    color: #fff;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 35px;
}

.activation-section .tour-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #43ba90;
    color: #fff;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s ease;
}

.activation-section .tour-btn:hover {
    background: #43ba90;
    transform: translateY(-2px);
}

.activation-section .tour-btn i {
    font-size: 16px;
}


/* Infrastructure Section */
.infra-section {
    width: 92%;
    max-width: 1500px;
    margin: auto;
    padding-top: 40px;
}

.section-subtitle {
    color: #43ba90;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 10px;
}

.section-title {
    text-align: center;
    font-size: 52px;
    font-weight: 700;
    color: #43ba90;
    margin-bottom: 40px;
}

/* Main Card */
.infra-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #43ba90;
    padding: 24px;
    min-height: 620px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 50px;
    
    background-image: url(../images/content-bg.webp);
    background-repeat: no-repeat;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Left Image */
.infra-image {
    width: 58%;
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    height: 570px;
    flex-shrink: 0;
}

.infra-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.infra-card:hover .infra-image img {
    transform: scale(1.04);
}

/* Right Content */
.infra-content {
    width: 42%;
    color: #fff;
    padding-right: 20px;
}

.infra-content h2 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 28px;
    font-weight: 700;
}

.infra-content p {
    font-size: 16px;
    line-height: 1.9;
    opacity: 0.95;
    margin-bottom: 22px;
    font-weight: bold;
}

.read-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: #fff;
    color: #43ba90;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
    margin-top: 10px;
}

.read-btn:hover {
    transform: translateY(-3px);
    background: #eaf1ff;
}

/* Navigation */
.slider-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.nav-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #c9c9c9;
    cursor: pointer;
    transition: 0.3s ease;
}

.nav-dot.active {
    background: #43ba90;
    transform: scale(1.2);
}

/* Arrows */
.custom-arrow {
    display: block !important;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s ease;
}

.custom-arrow:hover {
    background: #5d5d5d;
}


/*Gallery Section*/
.gallery-section{
    padding-top: 40px;
}

.gallery-section .gallery-slide img{
    height: 450px;
}

.gallery-section .slick-next {
    right: 15px;
}

.gallery-section .slick-prev {
    left: 15px;
}

.slick-dots li{
    margin: 0;
}


.overviewPara{
    width: 600px;
    height: unset;
}

.overviewPara h1{
    font-size: 32px;
    font-weight: bold;
}

.overviewDiv{
    flex-wrap: wrap !important;
}

/* Responsive */
@media(max-width:1400px) {
    .infra-card{
        gap: 20px;
    }
}


@media(max-width:1280px) {
    .activation-section .content-box h1{
        font-size: 50px;
    }
    .gallery-section .gallery-slide img{
        height: 350px;
    }
}

@media(max-width:1100px) {
    .infra-card {
        flex-direction: column;
    }

    .infra-image,
    .infra-content {
        width: 100%;
    }

    .infra-image {
        height: 420px;
    }

    .infra-content {
        padding: 10px;
    }

    .section-title {
        font-size: 40px;
    }

    #upcoming-infra .infra-content {
        order: 1;
    }
}


@media(max-width:992px) {
    .activation-section .content-box {
        width: 90%;
        padding: 50px 25px;
    }

    .activation-section .content-box h1 {
        font-size: 42px;
    }

    .activation-section .content-box p {
        font-size: 18px;
    }

}

@media(max-width:768px) {
    .infra-card {
        padding: 10px;
    }

    .infra-image {
        height: 250px;
    }

    .infra-content h2 {
        font-size: 28px;
    }

    .infra-content p {
        font-size: 15px;
        line-height: 1.8;
        margin: 0;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
    }

    .section-title {
        font-size: 32px;
    }
    
    .slick-prev {
        left: -15px;
    }
    .slick-next {
        right: -15px;
    }
    
    .homeMain.dholera-page{
        height: 350px;
    }
}

@media(max-width:576px) {
    .activation-section {
        height: 500px;
    }

    .activation-section .content-box h1 {
        font-size: 30px;
    }

    .activation-section .content-box p {
        font-size: 16px;
    }

    .activation-section .tour-btn {
        padding: 12px 24px;
        font-size: 16px;
    }
}