/* NAVBAR HEIGHT CONTROL */
.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:100%;
height:auto;
}

.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;
    }
}


/* COURSE CARD */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f7fb;
}

.pricing-section {
    text-align: center;
    padding: 60px 20px;
}

.pricing-section h1 {
    font-size: 36px;
    color: #2c4c8c;
    margin-bottom: 10px;
}

.pricing-section p {
    color: #6b7280;
    margin-bottom: 40px;
}

.card-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    width: 300px;
    padding: 30px 20px;
    border-radius: 25px;
    color: white;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    position: relative;
}

.card h2 {
    font-size: 22px;
    margin-bottom: 15px;
}

.card ul {
    list-style: none;
    margin: 20px 0;
}

.card ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.card button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 20px;
    background: white;
    color: #333;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.card button:hover {
    background: #eee;
}

/* Gradients */
.red {
    background: linear-gradient(135deg, #ff5f6d, #ff2d55);
}

.green {
    background: linear-gradient(135deg, #00c9a7, #00b894);
}

.purple {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
}

/* Extra elements */
.sub {
    font-size: 12px;
    opacity: 0.9;
}

.tag {
    display: inline-block;
    background: rgba(163, 156, 156, 0.2);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    margin: 10px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .card-container {
        flex-direction: column;
        align-items: center;
    }
}

/* FOOTER SECTION */

.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: 0px;
}
.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: 20px;
  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;
}

