a.menu {
    color: red;
}


.banner {
  /* URL se './' hatayein aur sahi link ka upyog karein */
  background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), 
                    url('https://img.magnific.com/free-vector/indian-tricolor-theme-watercolor-texture-patriotic-background-vector_1055-11952.jpg?semt=ais_hybrid&w=740&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0px 0px;
}

.banner-col-text {
    padding: 80px 0px;
}
    
.banner-col-text {
    animation: fadeInUp 1s ease-out;
}

.top_title {
    font-size: 1.5rem;
    color: #333;
    font-weight: 600;
}

.top_title span {
    color: #d9534f; /* Accent color */
}

.mediume_text {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #555;
}

.large_text {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #2c3e50;
}

.small_text {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
    max-width: 500px;
}

.theam_btn {
    display: inline-block;
    padding: 12px 30px;
    background: #d9534f;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s, background 0.3s;
}

.theam_btn:hover {
    background: #c9302c;
    transform: translateY(-3px);
}

.banner-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    animation: slideInRight 1.2s ease-out;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .large_text { font-size: 2.5rem; }
    .main_banner { text-align: center; }
    .small_text { margin: 20px auto; }
}



