*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Segoe UI, Arial, sans-serif;
}

/* Yellow Outer Bar */

.outer-bar{
background:#f5b400;
padding:15px;
}

/* White Header */

.tvk-header{
background:#fff;
padding:15px 40px;
display:flex;
align-items:center;
justify-content:space-between;
box-shadow:0 5px 12px rgba(0,0,0,.2);
min-height:90px;
}

/* Logo Section */

.logo-area{
display:flex;
align-items:center;
gap:12px;
}

.logo-area img{
width:60px;
height:60px;
border-radius:5px;
object-fit:cover;
}

.logo-text{
line-height:1.2;
}

.logo-text h2{
color:#b10000;
font-size:20px;
}

.logo-text p{
color:#b10000;
font-weight:600;
font-size:16px;
}

.logo-text span{
font-size:12px;
color:#000;
}

/* Center Menu */

nav{
flex:1;
display:flex;
justify-content:center;
}

nav ul{
list-style:none;
display:flex;
gap:20px;
align-items:center;
white-space:nowrap;
}

nav ul li{
display:flex;
align-items:center;
}

nav ul li i{
font-size:16px;
color:#b10000;
}

nav ul li a{
text-decoration:none;
color:#b10000;
font-weight:800;
font-size:16px;
text-align:center;
line-height:1.4;
}

/* Hover Effect */

nav ul li a:hover{
border-bottom:2px solid #b10000;
}

/* Mobile Responsive */

@media(max-width:900px){

.tvk-header{
flex-direction:column;
gap:15px;
}

nav ul{
flex-wrap:wrap;
justify-content:center;
gap:20px;
}

}
.banner{
position:relative;
width:100%;
/*height:800px;
overflow:hidden;*/
}

.banner-img{
width:100%;
height:100%;
object-fit:cover;
object-position:center top;
}

/* Yellow background section */
    .yellow-section {
        background-color: #FFD700; /* Yellow */
        padding: 50px 20px;
        text-align: center;
        }

        /* Title with lines above and below */
        .yellow-section h1 {
            position: relative;
            font-size: 2.5em;
            color: #333;
            margin: 40px 0;
            padding: 0 20px;
            display: inline-block;
        }

        .yellow-section h1::before,
        .yellow-section h1::after {
            content: "";
            position: absolute;
            top: 50%;
            width: 1000px; /* Large width for the line */
            height: 2px;
            background-color: #333;
        }

        .yellow-section h1::before {
            right: 100%;
            margin-right: 20px;
        }

        .yellow-section h1::after {
            left: 100%;
            margin-left: 20px;
        }

        /* Images row */
        .image-row {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .image-row img {
            width: 180px;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            transition: transform 0.3s;
        }

        .image-row img:hover {
            transform: scale(1.05);
        }

        @media (max-width: 600px) {
            .image-row img {
                width: 120px;
            }
        }

/* MAIN SECTION */
.leader-section{
    background:#FFD700;
    padding:50px 30px;
}

/* TITLE WITH LINES */
.section-title{
    text-align:center;
    font-size:32px;
    font-weight:bold;
    position:relative;
    margin-bottom:50px;
}

.section-title:before,
.section-title:after{
    content:"";
    position:absolute;
    top:50%;
    width:35%;
    height:2px;
    background:black;
}

.section-title:before{
    left:0;
}

.section-title:after{
    right:0;
}

/* CONTENT AREA */
.leader-wrapper{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:40px;
}

/* IMAGE */
.leader-img img{
    width:280px;
    border-radius:10px;
    box-shadow:0 5px 10px rgba(0,0,0,.3);
}

/* CENTER LINE */
.divider{
    width:3px;
    height:300px;
    background:black;
}

/* TEXT CONTENT */
.leader-content{
    max-width:400px;
    font-size:18px;
    line-height:1.6;
}
.title-wrapper{
    text-align:center;
    margin-bottom:50px;
}

.title-box{
    display:inline-block;
    padding:15px 50px;
    /*border:3px solid black;*/
    font-size:30px;
    font-weight:bold;
    background:#b10000;
    color:white; 
}
.tvk-footer{
    background:#b10000;
    font-weight:800;
    font-family: 'Poppins', sans-serif;
    color:white;
    padding:50px 20px 0;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    gap:30px;
}

.footer-box{
    flex:1;
    min-width:250px;
}

.footer-box h3{
    color:#FFD700;
    margin-bottom:15px;
}

.footer-box ul{
    list-style:none;
    padding:0;
}

.footer-box ul li{
    margin-bottom:8px;
}

.footer-box ul li a{
    color:white;
    text-decoration:none;
}

.footer-box ul li a:hover{
    color:#FFD700;
}

.footer-bottom{
    margin-top:40px;
    padding:15px;
    text-align:center;
    background:#FFD700;
    color:#000000;
    font-size:14px;
    font-weight:bold;
}
/* TITLE BOX */

.title-box{
background:#b30000;
color:white;
padding:20px 40px;
text-align:center;
font-size:32px;
font-weight:700;
}

/* MAIN */

.about-main{
background:#FFD700;
padding:60px 20px;
}

.about-wrap{
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
animation:fade 1s ease;
}

/* IMAGE */

.about-img img{
width:100%;
max-width:350px;
border-radius:15px;
box-shadow:0 8px 20px rgba(0,0,0,.4);
}

/* CONTENT CARD */

.about-card{
background:white;
padding:30px;
border-left:6px solid #b30000;
}

.about-card h2{
margin-top:0;
color:#b30000;
}

.about-card p{
line-height:1.8;
}

/* BELOW BOX */

.below-box{
max-width:900px;
margin:50px auto 0;
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,.3);
animation:fade 1.5s ease;
}

footer{
background:#b30000;
color:white;
text-align:center;
padding:15px;
}

@keyframes fade{
from{opacity:0;transform:translateY(40px);}
to{opacity:1;transform:translateY(0);}
}

@media(max-width:768px){
.about-wrap{
grid-template-columns:1fr;
text-align:center;
}
}
/* Title box */
.title-box{
    background:#b30000;
    width: 100%;
    color:white;
    padding:20px;
    text-align:center;
    font-size:28px;
    font-weight:600;
}

/* Gallery section */
.gallery-section{
    background:#FFD700;
    padding:50px 20px;
}

/* Grid gallery */
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    max-width:1200px;
    margin:auto;
}

/* Single image */
.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
    cursor:pointer;
    transition: transform 0.4s, box-shadow 0.4s;
}

.gallery-item img{
    width:100%;
    display:block;
    transition: transform 0.4s;
}

.gallery-item:hover img{
    transform:scale(1.1);
}

.gallery-item:hover{
    box-shadow:0 10px 25px rgba(0,0,0,.5);
}

/* Footer */
footer{
    background:#b30000;
    color:white;
    text-align:center;
    padding:15px;
}

/* Responsive */
@media(max-width:768px){
.gallery-grid{
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
}
}

contact 

/* Banner Image */
.banner {
    width: 100%;
    overflow: hidden;
}
.banner-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.contact-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.contact-box {
    display: flex;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,.2);
    flex-wrap: wrap;
}

/* LEFT INFO */
.info {
    flex: 1 1 40%;
    background-color: #d60000;
    color: white;
    padding: 40px;
    box-sizing: border-box;
}

.info h2 {
    margin-bottom: 30px;

}

.info p {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 20px;
}

/* RIGHT FORM */
.form {
    flex: 1 1 60%;
    padding: 40px;
    background-color: #fff;
    box-sizing: border-box;
}

.form h2 {
    margin-bottom: 25px;
}

.form input,
.form textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid #333;
    margin-bottom: 20px;
    padding: 10px 0;
    outline: none;
    box-sizing: border-box;
}

.form textarea {
    height: 100px;
    resize: none;
}

.form button {
    background-color: #d60000;
    color: white;
    border: none;
    padding: 12px 40px;
    cursor: pointer;
    border-radius: 5px;
}

.form button:hover {
    background-color: #a50000;
}

/* MOBILE RESPONSIVE */
@media(max-width:768px){
    .contact-box {
        flex-direction: column;
    }

    .info, .form {
        width: 100%;
        padding: 30px;
    }
}



