.navbar{
padding:8px 30px;
background:white;
border-bottom:1px solid #eee;
}

.nav-link{
font-size:16px;
margin-right:20px;
color:#555 !important;
}

.nav-link.active{
color:#2a7de1 !important;
font-weight:500;
}

.free-class-btn{
border:2px solid #f86808;
color:#de3203;
padding:8px 18px;
border-radius:25px;
font-weight:500;
text-decoration:none;
}

.free-class-btn:hover{
background:#ba5830;
color:white;
}

.logo{
height:100px;
padding:4px;
margin-right:4px;
}

/* DROPDOWN */
.dropdown-menu {
display: none;
position: absolute;
background-color: #fff;
min-width: 200px;
box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
border-radius: 8px;
padding: 10px 0;
}

.nav-item:hover .dropdown-menu {
display: block;
}

.dropdown-menu a {
display: block;
padding: 10px 20px;
text-decoration: none;
color: #333;
}

.dropdown-menu a:hover {
background-color: #f5f5f5;
color: #ff6600;
}

/* ANIMATION */
.animate {
opacity: 0;
transform: translateY(50px);
transition: all 0.8s ease;
}

.animate.show {
opacity: 1;
transform: translateY(0);
}

.animate-left {
transform: translateX(-60px);
}

.animate-right {
transform: translateX(60px);
}

.animate-zoom {
transform: scale(0.8);
}

.animate.show.animate-left,
.animate.show.animate-right {
transform: translateX(0);
}

.animate.show.animate-zoom {
transform: scale(1);
}

/* HERO */
.hero{
min-height:60vh;
}

.banner img{
width:300px;
height:4px;
}

.hero-title{
font-family: Cambria, Georgia, serif;
}

.hero-text{
font-family: 'Times New Roman', serif;
font-size:20px;
color:black;
}

.hero-img{
width:100%;
max-width:500px;
border-radius:10px;
}

.blue{
color:#2a7de1;
}
/* LOGO ALIGNMENT FIX */
.navbar-brand {
    display: flex;
    align-items: center;
}

/* Left icon logo */
.logo-icon {
    height: 48px;
    width: auto;
    margin-right: 6px;
}

/* Right text logo */
.logo-text {
    height: 42px;
    width: auto;
}

/* Perfect vertical alignment */
.navbar-brand img {
    display: block;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .logo-icon {
        height: 36px;
    }
    .logo-text {
        height: 32px;
    }
}

/* FOOTER */

.footer {
    background-image: url('image/footer_background.png'); /* apni image ka path */
    background-size: cover;      /* full cover */
    background-position: center; /* center align */
    background-repeat: no-repeat; /* repeat na ho */
    color: rgb(17, 3, 60); /* text visible ke liye */
    padding: 40px 0;
}

/* .footer {
  background: #f8f9fb;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
  color: #333;
} */

footer {
    margin-top: 50px;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-box h3 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  text-decoration: none;
  color: #2e2c2c;
  font-size: 14px;
}

.footer-box ul li a:hover {
  color: #2d5cff;
}

.footer-logo {
  width: 200px;
  height: 50px;
  margin-bottom: 15px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.footer-bottom h2 {
  font-size: 18px;
  letter-spacing: 2px;
  color: #2d5cff;
  margin-bottom: 10px;
}

.footer-bottom p {
  font-size: 13px;
  color: #888;
}

/* Card styling */
.card {
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

/* Image smooth transition */
.card img {
    width: 100%;
    transition: transform 0.4s ease;
}

/* Sirf hovered card zoom hoga */
.card:hover img {
    transform: scale(1.1);
}

/* Optional: card thoda upar uthe */
.card:hover {
    transform: translateY(-5px);
}