* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}


body {

    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    color: white;
}


@media (max-width: 768px) {
    body {
        background-attachment: fixed;

        background-repeat: no-repeat;
    }
}


.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #600505;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    z-index: 9999;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}


.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li a {
    font-family: "Smooch Sans", sans-serif;
    font-weight: 500;
    color: white;
    text-decoration: none;
    margin-left: 22px;
    font-size: 20px;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #ff7e15;
}


.hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
}



.content {
    padding: 30px 20px;
    background: rgb(255, 255, 255);
    text-align: center;
}

.content h2 {

    font-size: 2rem;
    color: black;
}

.content p,
.content ul {

    text-align: left;
    max-width: 100%;
    line-height: 1.6;
    color: black;
}

.content ul li {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    margin-bottom: 12px;
    color: black;
}



.malayalam-text {

    max-width: 900px;
    margin: 0 auto 40px;
    text-align: left;
    line-height: 1.9;
    font-size: 1.05rem;
    color: black;
}

.malayalam-text ul li {
    margin-bottom: 18px;
}


@media (max-width: 768px) {
    .malayalam-text {
        font-size: 1rem;
        line-height: 2;
        padding: 0 6px;
    }
}


.card-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.card {
    width: 280px;
    height: 200px;
    overflow: hidden;
    border-radius: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 12px 25px #ff7e15;
}


footer {
    padding: 20px;
    background: #600505;
    text-align: center;
}


@media (max-width: 768px) {

    .navbar {
        padding: 12px 16px;
    }

    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        display: none;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        padding: 14px;
        text-align: center;
    }

    .hamburger {
        display: block;
    }

    .content {
        padding: 40px 16px;
    }

    .hero p {
        font-size: 1rem;
    }
}

.content ul {
    padding-left: 40px;
    padding-right: 20px;
}


.content p {
    padding-left: 40px;
    padding-right: 20px;
}

@media (max-width: 768px) {
    .content ul {
        padding-left: 24px;
        padding-right: 16px;
    }

    .content p {
        padding-left: 24px;
        padding-right: 16px;
    }
}

div img.desktop{


    position: relative;
    width:100%;
    height: auto;
    display: block;
}

div img.mobile{
    display: none;
}

@media (max-width: 768px){
    div img.mobile{
        margin-top: 60px;
        display: block;
        position: relative;
        width: 100%;
        height: auto;
    }
    div img.desktop{
        display: none;
    }

}
.top-image {
    
    position: relative;
    width: 100%;
}

.top-image img {
    width: 100vw;
    height: auto;
    display: block;
}




.image-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 14px 32px;
    background-color: #0a9b83;
    color: white;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s, transform 0.3s;
}

.image-btn:hover {
    background-color: #087a67;
    transform: translateX(-50%) translateY(-2px);
}

@media (max-width: 768px) {
    .image-btn {
        padding: 6px 15px;
        font-size: 12px;
        bottom: 3px;
    }
}




@media (max-width: 768px) {
    .top-image {
        margin-top: 60px;
    }
}

.download-button {
    transform: translateX(-50%);
    padding: 14px 32px;
    background-color: #ff7e15;
    color: white;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s, transform 0.3s;

}

@media (max-width: 768px) {
    .download-button {
        padding: 6px 15px;
        font-size: 12px;
        bottom: 3px;
    }
}



.Register-button {
    transform: translateX(-50%);
    padding: 14px 32px;
    background-color: #ff7e15;
    color: rgb(255, 255, 255);
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s, transform 0.3s;
    justify-content: center;
}

@media (max-width: 768px) {
    .Register-button {
        padding: 6px 15px;
        font-size: 12px;
        bottom: 3px;
    }
}

.contact-section {
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    letter-spacing: 1px;
}

.contact-details {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-item {
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact-info p {
    font-family: "Montserrat", sans-serif;
}



.btn {
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
    transition: background 0.3s, transform 0.3s;
    display: inline-block;
    text-align: center;
}



@media (max-width: 768px) {
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 80%;
        font-size: 14px;
        padding: 12px 0;
    }

    .contact-section {
        padding: 60px 16px;
        padding-bottom: 20px;
    }
}


.contact-details-map {
    display: flex;
    gap: 40px;
    max-width: 1000px;

    margin: 0 auto;
    padding: 0 20px;
    align-items: flex-start;
}


.contact-info {
    flex: 1;
}


.contact-map {
    flex: 1;

    border-radius: 8px;
    overflow: hidden;
}


.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


@media (max-width: 768px) {
    .contact-details-map {
        flex-direction: column;
        gap: 20px;
    }

    .contact-map {
        min-height: 250px;
        padding: 20px;

    }

    .contact-map iframe {
        width: 100%;
        height: 100%;
        border: 0;
        padding-top: 30px;
    }

    .contact-buttons {
        justify-content: center;
    }
}

.divider {
    height: 150px;
    width: auto;
}

@media only screen and (max-width: 768px) {
    .divider {
        height: 50px;
        width: auto;
    }
}

.logo {
    font-family: "Smooch Sans", sans-serif;
    font-optical-sizing: auto;
    font-size: x-large;

}