/* ================= GENERAL RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ================= BODY ================= */
body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* ================= HEADER ================= */
header {
    background: linear-gradient(90deg, #0d3b66, #145da0);
    color: #fff;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

header img {
    height: 60px;
    border-radius: 8px;
}

header h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ================= PAGE TITLE ================= */
.india {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(120deg, #ffffff, #e1f0ff);
}

.india .title-box {
    font-size: 36px;
    font-weight: 700;
    color: #0d3b66;
    margin-bottom: 15px;
}

.india .subtitle {
    font-size: 18px;
    color: #145da0;
}

/* ================= SECTIONS ================= */
section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.makeer p {
    font-size: 18px;
    color: #222;
    text-align: justify;
}

.makeer .make {
    font-size: 32px;
    font-weight: 700;
    color: #145da0;
}

/* ================= FEATURES & BENEFITS ================= */
.features h2,
.benefits h2,
.options h2,
.materials h2,
.contact-cta h2 {
    color: #0d3b66;
    font-size: 28px;
    margin-bottom: 20px;
    border-bottom: 2px solid #145da0;
    display: inline-block;
    padding-bottom: 5px;
}

.features ul,
.benefits ul,
.options ul,
.materials ul {
    list-style-type: disc;
    padding-left: 25px;
}

.features li,
.benefits li,
.options li,
.materials li {
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
}

/* ================= SLIDER ================= */
.button-slider {
    padding: 50px 0;
    background-color: #e1f0ff;
}

.slider-wrapper {
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.slider {
    display: flex;
    gap: 20px;
    height:150px;
    transition: all 0.5s ease-in-out;
    animation: slide 20s linear infinite;
}

.slide {
    min-width: 250px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slide img {
    width: 100%;
    display: block;
}

/* Slider Animation */
@keyframes slide {
    0% { transform: translateX(0); }
    20% { transform: translateX(-20%); }
    40% { transform: translateX(-40%); }
    60% { transform: translateX(-60%); }
    80% { transform: translateX(-80%); }
    100% { transform: translateX(0); }
}

/* ================= CONTACT CTA ================= */
.contact-cta {
    text-align: center;
    background: linear-gradient(120deg, #145da0, #0d3b66);
    color: #fff;
    padding: 50px 20px;
    border-radius: 10px;
    margin: 40px 0;
}

.contact-cta p {
    font-size: 18px;
    margin-top: 10px;
    
}
.contact-cta h2{
  color:white;
}

/* ================= FOOTER ================= */
footer {
    text-align: center;
    padding: 20px;
    background-color: #0d3b66;
    color: #fff;
    font-size: 14px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    header h1 {
        font-size: 24px;
    }

    .slider {
        flex-direction: column;
        animation: none;
    }

    .slide {
        min-width: 100%;
        margin-bottom: 20px;
    }

    .india .title-box {
        font-size: 28px;
    }

    .features h2,
    .benefits h2,
    .options h2,
    .materials h2,
    .contact-cta h2 {
        font-size: 24px;
    }
}
