* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.8) 80%,
        #000 100%
    );
    z-index: 2;
}
.gradient-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.267) 80%,
        #000 100%
    );
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    width: 90%;
    padding: 20px;
}
h1{font-family: "Noto Serif Malayalam", serif; margin-bottom: 14px;}
h2{font-family: "Noto Serif Malayalam", serif; font-size: 30px; margin-bottom: 14px;color:#ff5200;}
h1 span{font-size: 30px;display: block; margin: 0; line-height: 0px;color:#ff5200;line-height: 27px;}


h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.scroll-btn {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-color: #000000;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

.scroll-btn:hover {
    background-color: #000000;
    transform: translateX(-50%) scale(1.1);
    border:1px solid #ff5200;
}

.scroll-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-right: 4px solid #ff5200;
    border-bottom: 4px solid #ff5200;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, -50%) rotate(45deg);
    }
    40% {
        transform: translate(-50%, -30%) rotate(45deg);
    }
    60% {
        transform: translate(-50%, -40%) rotate(45deg);
    }
}
.audio-controls {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 4;
}

.audio-controls {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 4;
}

.audio-btn {
    width: 40px;
    height: 40px;
    background-color: #000;
    border:1px solid #ff5200;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.audio-btn:hover {
    background-color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.audio-btn i {
    font-size: 18px;
    color: #ff5200;
    transition: all 0.3s ease;
}
.content {
    max-width: 50%;
    margin: 0 auto;
    padding: 40px 20px;

}

p {
    margin-bottom: 20px;
    font-size: clamp(1rem, 2vw, 1.1rem);
    
}
footer {
    background-color: #000;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Media Queries for additional responsiveness */
@media (max-width: 768px) {
    .hero-content {
        padding: 15px;
    }

    .audio-controls {
        bottom: 15px;
        right: 15px;
    }

    .content {
        padding: 30px 15px;
        max-width:80%;
    }

    .scroll-btn {
        width: 60px;
        height: 60px;
    }

    .audio-btn {
        width: 35px;
        height: 35px;
    }

    .audio-btn i {
        font-size: 16px;
    }
    footer {
        padding: 15px 0;
    }
    h1 span{font-size:20px;}
    h2{font-size: 20px;}
}

@media (max-width: 480px) {
    .content {
        padding: 20px 10px;
        word-wrap:break-word;
    }

    .scroll-btn {
        width: 60px;
        height: 60px;
        bottom: 120px;
    }

    .scroll-btn::after {
        width: 10px;
        height: 10px;
        border-width: 3px;
    }

    .audio-btn {
        width: 30px;
        height: 30px;
    }

    .audio-btn i {
        font-size: 14px;
    }
    .copyright {
        font-size: 0.8rem;
        padding: 0 10px;
    }
    h2{font-size: 20px;}
    h1 span{font-size:20px;}
    .content{max-width:80%;}
    p{text-align:left;}
}
.hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}
.hero-main {
    position: relative;
    height: 70vh;
    width: 100%;
    overflow: hidden;
}
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, #33333357, #1a19196c) !important;
    z-index: 1000;
}
.navbar-nav {
    margin-left: auto; /* Align items to the right */
}
.navbar-nav .nav-link {
    color: #ffffff; /* Default text color */
    font-weight: 500;
    transition: color 0.3s ease-in-out;
    
    position: relative; /* Needed for the underline effect */
    transition: color 0.3s ease-in-out;
    font-size: 12px;
}
/* Underline Effect on Hover */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px; /* Adjust distance from text */
    width: 100%;
    height: 2px;
    background-color: #ff5200; /* Underline color */
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

/* Show underline on hover */
.navbar-nav .nav-link:hover::after {
    transform: scaleX(1);
}
.navbar-nav .nav-link:hover {
    color: #ff5200 !important; /* Change text color on hover */
}
.navbar-toggler {
    border-color: white !important; /* Change border color */
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important; /* Change icon color */
}
.navbar-brand{
    color: #ffffff;
    font-weight: 500;
}
@media (max-width: 576px) {
    .navbar-brand p {
        font-size: 14px;
        font-weight: 500;
    }
}
.content .section-title ul {
    margin-bottom: 13px;
}
.content ul li{
    color:  rgba(255, 255, 255, 0.7);
    line-height: 30px;
    list-style: none;
}
.navbar-brand:hover,
.navbar-brand:focus {
    color: #ff5200 !important; /* Same color as default */
}
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    font-size: 14px;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center; 
    justify-content: center; 
    background: rgba(0, 0, 0, 0.6);
    color:#ff5200;
    text-align: center;
    font-weight: bold;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}
.gallery-item:hover img {
    transform: scale(1.1); 
}

.gallery-item:hover .overlay {
    opacity: 1; 
}
.gallery{
    margin-top: 100px;
    margin-bottom: 40px;
}
.ktm-image {
    position: absolute;
    top: 20%;
    left: 45%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}
.vdkmvtl-image {
    position: absolute;
    top: 25%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}
.krkav-image {
    position: absolute;
    top: 25%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}
.img-hero{
    position: absolute;
    top: 74%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1; 
}
.hero-second img {
background-repeat: no-repeat;
    border-radius: 15px;
    height: auto;
    width: auto;
}
.second-hedding{
    color: #ff5200;
}
.address p {
margin: 0px;
font-size: 12px;
}
.address a{
    color: #ffffff;
text-decoration: none;

}
.main-hero{
    margin-top: 100px;
    margin-bottom: 50px;
}