@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@1,400;1,500&display=swap');

:root {
    --primary: #000000;
    --secondary: #E74C3C;
    --accent: #3498DB;
    --background: #ffffff;
    --text: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Standard syntax */
}

body {
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
    padding-top: 100px;
}





/* Navigation Styles */





nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-title {
    font-size: 1rem;
    padding-right: 12px !important;
    font-weight: bold;
    color: var(--text);
    text-align: center;

    display: none;
    /* Hidden by default */
}

.nav-title .nav-data {
    font-family: 'Cormorant Garamond', serif !important;
    font-style: italic;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: black;
    display: block;
    line-height: 1.2;
    margin-top: 2px;
    margin-left: 5px !important;
}

.nav-reg-button {
    display: none;
}

.nav-menu {
    display: flex;
    gap: 3rem;
    align-items: center;
    list-style: none;
    margin: 0;
    /* Reset margin */
    padding: 0;
    /* Reset padding */
}

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 450;
    transition: color 0.3s ease;
    font-size: 1.1rem;

}

.nav-menu a:hover {
    color: #666;
}

.nav-register-btn {
    background: transparent;
    border: 1px black solid;
    border-radius: 10px;
    padding: 0.7rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}


.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-container {
        justify-content: space-between;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 85px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-reg-button {
        background: black;
        border: 1px black solid;
        color: white;
        border-radius: 10px;
        padding: 0.1rem 0.5rem;
        text-decoration: none;
        font-weight: 400;
        transition: background 0.3s ease;
        display: block;
    }

    .nav-reg-button:hover {
        background: white;
        color: black;
    }

    .nav-title {
        display: block;
        /* Show title on mobile */
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

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

    .nav-menu a {
        padding: 0.5rem 2rem;
        width: 100%;
        text-align: center;
    }

    .nav-register-btn {
        margin: 1rem auto;
        /* Changed from margin: 1rem 2rem; to center it */
        text-align: center;
        display: block;
        width: 80%;
        /* Added to control width */
        max-width: 200px;
        /* Added to limit maximum width */
    }
}

@media(max-width:450px) {
    .nav-reg-button {
        font-size: 12px;
    }

    .nav-register-btn {
        margin: 0.5rem auto;
        /* Changed to auto for horizontal centering */
        padding: 0.5rem 1rem;
        /* Adjusted padding for better mobile display */
        text-align: center;
        display: block;
        width: 80%;
        /* Control width */
        max-width: 180px;
        /* Limit maximum width */
    }
}






header {
    margin-top: -20px;
    background: var(--primary);
    color: white;
    padding: 2rem 0;
    text-align: center;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    z-index: 999;
}

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


.header-heading {
    font-size: 5rem;
    line-height: 1.0;
    font-weight: 450;
    color: rgb(255, 255, 255);
}

.header-para {
    font-size: 1.3rem;
    padding-left: 8rem;
    padding-right: 8rem;
    color: #ffffff;
}

@media (max-width: 768px) {
    .header-heading {
        font-size: 3rem;
    }

    .header-para {
        font-size: 1rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

@media (max-width: 480px) {
    .header-heading {
        font-size: 2.5rem;
    }

    .header-para {
        font-size: 0.8rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}





.carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-top: 130px;
    margin-bottom: 2rem;
}

.carousel-container {
    display: flex;
    width: 500%;
    /* Updated to account for 5 slides (100% * 5) */
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.carousel-slide {
    position: relative;
    width: 20%;
    /* Updated to account for 5 slides (100% / 5) */
    height: 100%;
    flex-shrink: 0;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    width: 80%;
    z-index: 2;
}

.carousel-caption h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 1rem;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background 0.3s ease;
    z-index: 2;
}

.carousel-button:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-button.prev {
    left: 1rem;
}

.carousel-button.next {
    right: 1rem;
}

.carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: white;
}

@media (max-width: 768px) {
    .carousel {
        height: 300px;
        margin-top: 90px;
    }

    .carousel-caption h2 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
        margin-bottom: 0;
    }
}

@media(max-width: 480px) {
    .carousel {
        height: 300px;
        margin-top: 82px;
    }
}



.hero {
    padding: 3rem 0 0;
    text-align: center;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    line-height: 1.0;
    font-weight: 450;
    color: black;
}

.hero p {
    font-size: 1.3rem;
    padding-left: 8rem;
    padding-right: 8rem;
    color: #666;
}

.hero-register-btn {
    display: inline-block;
    padding: 0.7rem 3rem;
    background: black;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 400;
    transition: all 0.3s ease;
    border: #000000 solid 1.5px;
    margin-top: 1rem;
}

.hero-register-btn:hover {
    border: #000000 solid 1.5px;
    background: #c03a2b00;
    color: #000000;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .hero-register-btn {
        padding: 0.5rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 0.9rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-register-btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }
}
















/* SLIDER */

.slider {
    width: 100%;
    max-width: auto;
    margin: 50px auto;
    padding: 20px 0;
    text-align: center;
    overflow: hidden;
    background: #f5f5f5;
}

.slider h2 {
    text-align: center;
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    color: #000000;
    position: relative;
}

.slide-track {
    display: flex;
    width: calc(200px * 20);
    /* Width of single slide (200px) * number of slides */
    animation: scroll 30s linear infinite;
}

.slide {
    width: 200px;
    /* Fixed width for each slide */
    height: 100px;
    /* Fixed height for each slide */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-sizing: border-box;
    flex-shrink: 0;
    /* Prevent slides from shrinking */
}

.slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Keep image proportions */
}

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

    100% {
        transform: translateX(calc(-200px * 10));
        /* Half the total width since we duplicate the slides */
    }
}

/* Ensure slider works on smaller screens */
@media (max-width: 768px) {
    .slider {
        padding: 10px 0;
    }

    .slider h2 {
        font-size: 3rem;
    }

    /* The slide size stays the same, we just adjust container padding */
    .slide {
        /* Same dimensions as above */
        width: 200px;
        height: 100px;
    }

    /* Animation continues to work the same */
}










/* FEATURES SECTION */

.about-container {
    margin: 0 auto;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    padding: 0rem 2rem 2rem;
}

.features h2 {
    margin-top: 30px;
    text-align: center;
    font-size: 4rem;
    font-weight: 600;
    padding: 1rem 0;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    color: #000000;
    position: relative;
}

.feature-card {
    background-color: rgb(0, 0, 0);
    color: #ffffff;
    padding: 4rem 0rem;
    text-align: center;
    border-radius: 10px;
    position: relative;
}

.feature-card::before {
    content: attr(data-number);
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: white;
    color: black;
    font-weight: 450;
    font-size: 1rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: rgb(255, 255, 255);
}

.feature-card h3 {
    margin: 1rem 0;
    font-size: 1.5rem;
    color: rgb(255, 255, 255);
    font-weight: 450;
}

.feature-card p {
    font-size: 0.9rem;
    color: #ffffff;
    line-height: 1.5;
    padding: 0 2rem;
    font-weight: 350;
    margin: 0;
}

@media (max-width: 1200px) {
    .about-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .features h2 {
        font-size: 3rem;
        line-height: 1.0;
        padding-bottom: 1rem;
        padding-top: 0rem;
    }

    .feature-card h3 {
        font-size: 1rem;
    }

    .feature-card p {
        padding-left: 2rem;
        padding-right: 2rem;
        font-size: 0.6rem;
    }

    .feature-card {
        padding: 5rem 1.5rem;
    }

    .feature-card i {
        font-size: 3rem;
        margin-bottom: 1rem;
        color: rgb(255, 255, 255);
    }
}

/* Mobile screens */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }

    .features h2 {
        font-size: 3rem;
        line-height: 1.0;
    }

    .features {
        padding: 2rem 1rem;
    }

    .feature-card {
        padding: 4rem 1rem;
    }

    .feature-card h3 {
        font-size: 1.5rem;
    }

    .feature-card p {
        padding-left: 1rem;
        padding-right: 1rem;
        font-size: 1rem;
    }

    .feature-card i {
        font-size: 2.5rem;
    }
}





/* STAGES SECTION */





.stages {
    padding: 2rem 1rem;
}

.selection-heading {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    text-align: center;
    color: #000000;
    position: relative;

}

.stage-container {
    text-align: left;
    background-color: #f5f5f500;
    padding: 2rem 1.5rem 1.5rem;
    border-radius: 1rem;
    border: 1.5px black solid;
    color: rgb(0, 0, 0);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    box-sizing: border-box;
}


.top-line {
    width: 100%;
    height: 1.5px;
    background-color: rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
}

.stage-subtitle {
    font-size: clamp(1.5rem, 2vw, 1.5rem);
    margin-bottom: 1.5rem;
    color: #000000;
    opacity: 0.9;
}

.stage-content {
    display: flex;
    align-items: flex-start;
    color: #000000;
    gap: 1.5rem;
    position: relative;
}

.stage-number {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: bold;
    line-height: 1;
    color: rgb(0, 0, 0);
}

.stage-text {
    flex: 1;
    min-width: 250px;

}



.stage-text .hero-register-btn {
    display: flex;
    padding: 0.2rem 1rem;
    background: black;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 400;
    transition: all 0.3s ease;
    justify-content: center;
    border: #000000 solid 1.5px;
    max-width: 400px;



}

.stage-text .hero-register-btn:hover {
    border: #000000 solid 1.5px;
    background: #c03a2b00;
    color: #000000;
}

@media(max-width:768px) {
    .stage-text .hero-register-btn {
        padding: 0.5rem 2rem;
    }
}

.stage-heading {
    font-size: clamp(1.75rem, 4vw, 2rem);
    font-weight: normal;
    margin: 0 0 1rem 0;
}



.stage-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

/* Mobile styles */
@media (max-width: 768px) {
    .stage-container {
        padding: 2rem 1.5rem;
        margin: 1rem auto;
        background-color: #ffffff;
    }

    .stages {
        padding: 0rem 1.5rem 2rem;
    }

    .stage-content {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .stage-number {
        font-size: 7rem;
    }

    .stage-text {
        min-width: unset;
        width: 100%;
    }

    .stage-subtitle {
        font-size: 1.3rem;
    }

    .stage-heading {
        font-size: 3rem;
    }

    .stage-description {
        font-size: 1rem;
        color: #666;
    }

    .selection-heading {
        font-size: 3rem;
        line-height: 1;
    }
}

@media (max-width: 480px) {
    .stage-container {
        padding: 1.5rem 1rem;
    }

    .stage-number {
        font-size: 6rem;
    }


    .stage-heading {
        font-size: 1.45rem;
    }



}





.benefits-container {
    padding: 5rem 5rem;
    text-align: left;
    background: #00000000;
}

.benefits-heading {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    color: #000000;
    line-height: 1;
    position: relative;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    font-size: 1.5rem;
    font-weight: 400;
    color: #000000;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1.5px solid rgb(0, 0, 0);
    padding-bottom: 10px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .benefits-container {
        padding: 2rem 1.5rem;
    }

    .benefits-heading {
        font-size: 3rem;
        line-height: 1.2;
    }

    .benefits-list li {
        font-size: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 15px;
    }

}

@media screen and (max-width: 480px) {
    .benefits-container {
        padding: 2rem 1.5rem;
    }

    .benefits-heading {
        font-size: 2.0rem;

    }


    .benefits-list li {
        font-size: 1.2rem;
    }

    .benefits-list li::before {
        width: 12px;
        height: 12px;
    }
}



.rules {
    padding: 5rem 5rem;
    text-align: left;
    background: #000000;
}

.rules h2 {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    color: #ffffff;
    position: relative;
}



.rules-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rules-list li {
    font-size: 1.5rem;
    font-weight: 300;
    color: #ffffff;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid white;
    padding-bottom: 10px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .rules {
        padding: 2rem 1.5rem;
    }

    .rules h2 {
        font-size: 3rem;
        line-height: 1.2;
    }

    .rules-list li {
        font-size: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 15px;
    }

}

@media screen and (max-width: 480px) {
    .rules {
        padding: 2rem 1.5rem;
    }

    .rules h2 {
        font-size: 2.5rem;
    }

    .rules-list li {
        font-size: 1.2rem;
    }

    .rules-list li::before {
        width: 12px;
        height: 12px;
    }
}





.query-box {
    text-align: center;
    background-color: #f5f5f500;
    padding: 1rem 2rem 1.5rem 2rem;
    border-radius: 1rem;
    border: 1.5px black solid;
    color: rgb(0, 0, 0);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    box-sizing: border-box;
}

.query-heading {
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: 450;
    color: rgb(0, 0, 0);
}

.query-box textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    border-radius: 5px;
    border: 1.5px black solid;
    background: #00000000;
    color: #000000;
    resize: none;
}

.query-box button {
    margin-top: 10px;
    padding: 0.7rem 3rem;
    border: black solid 1.5px;
    background: #000000;
    color: #ffffff;
    font-weight: 400;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.query-box button:hover {
    background: #ffffff;
    color: #000000;

}



/* 🔹 Responsive Design */
@media (max-width: 768px) {
    .query-box {
        padding: 1rem 1.5rem;
    }

    .query-heading {
        font-size: 2rem;
    }

    .query-box textarea {
        max-width: 100%;
        /* Allows flexibility but keeps it structured */
        font-size: 0.9rem;
    }

    .query-box button {
        padding: 0.6rem 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .query-box {
        width: 90%;
        padding: 1rem;
    }

    .query-heading {
        font-size: 2.5rem;
        line-height: 1;
    }

    .query-box textarea {
        height: 120px;
        /* Slightly smaller height */
        font-size: 0.85rem;
        margin-top: 1rem;

    }


    .query-box button {
        padding: 0.5rem 1.5rem;
        font-size: 0.85rem;
    }
}









.contact-box {
    text-align: center;
    margin: 25px auto;
    background-color: #000000;
    color: white;
    width: fit-content;
    padding: 0 5rem;
    border: 1px solid black;
    border-radius: 25px;
}

.contact-heading {
    padding-top: 10px;
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: 450;
    color: rgb(255, 255, 255);
}

.contact-box p {
    font-size: 1.3rem;
    color: white;
}

.temp {
    padding-bottom: 20px;
}

.contact-box i {
    color: #ffffff;
    margin-right: 10px;
}


/* Responsive Design */
@media (max-width: 768px) {
    .contact-box {
        padding: 1rem 2rem;
    }

    .contact-heading {
        font-size: 2rem;
    }

    .contact-box p {
        font-size: 1rem;
    }

    .contact-box i {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .contact-box {
        width: 90%;
        padding: 1rem;
    }

    .contact-heading {
        font-size: 2.5rem;
    }



    .contact-box p {
        font-size: 1.2rem;
    }

    .contact-box i {
        font-size: 1.2rem;
    }
}




.deadline-container {
    text-align: center;
    margin: 20px auto;
    max-width: 1000px;
}

.dead-line-para {
    font-size: 1.3rem;
}

.deadline-container h2 {
    font-size: 3rem;
    line-height: 1;
    font-weight: 450;
    color: black;
    margin: 2rem;
}

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

.grid-item {
    color: white;
    background: #000000;
    padding: 2rem 1rem;
    border-radius: 5px;
    font-size: 1.5rem;
}

.grid-para {
    font-size: 2rem;
    line-height: 1;
    font-weight: 300;
    color: #ffffff;
}

.dead-register-btn {
    display: inline-block;
    padding: 0.7rem 3rem;
    background: black;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 400;
    transition: all 0.3s ease;
    border: #000000 solid 1.5px;
    margin-top: 1rem;
}

.dead-register-btn:hover {
    background: #ffffff00;

    color: #000000;
}

@media screen and (max-width: 768px) {
    .deadline-container h2 {
        font-size: 2rem;
        /* Smaller heading on mobile */
        margin: 1rem;
    }

    .grid {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
        /* Single column on mobile */
    }

    .grid-item {
        padding: 1.5rem 1rem;
    }

    .grid-para {
        font-size: 1.3rem;
        /* Smaller text on mobile */
    }

    .dead-line-para {
        font-size: 1.1rem;
    }

    .dead-register-btn {
        padding: 0.7rem 2rem;
        font-size: 1rem;
    }
}

footer {
    text-align: center !important;

}

footer p a {
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

footer p a:hover {
    color: black;
}

/* For very small screens */
@media screen and (max-width: 320px) {
    .deadline-container h2 {
        font-size: 1.5rem;
    }

    .grid-item p {
        font-size: 1.2rem;
    }
}



/* faqs */
/* tailwind */
.faq {
    border: 2px solid black;
    margin-top: 30px;
    padding: 10px 35px 35px;
    border-radius: 20px;
}

.custom-font {
    font-family: 'Roboto', sans-serif;
    font-size: 3rem;
    font-weight: 800;
}

/* Follow Us ICONS */

.social-box {
    background-color: #f8f9fa;
    border-radius: 10px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    padding: 20px;
    text-align: center;
    max-width: 800px;
    margin: 30px auto;
}

.social-heading {
    font-family: 'Roboto', sans-serif !important;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000000;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 30px;
    color: white;
    text-decoration: none;
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp {
    background-color: #25D366;
}

.linkedin {
    background-color: #0077B5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-icons {
        gap: 20px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

@media (max-width: 480px) {
    .social-icons {
        gap: 15px;
    }

    .social-heading {
        font-size: 2.5rem;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}