:root{
  --primary:#0b3c91;
  --secondary:#f5f7fb;
  --accent:#ffb703;
  --dark:#0f172a;
  --text:#334155;
  --light:#ffffff;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter',sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{
  background:var(--secondary);
  color:var(--text);
  line-height:1.8;
}

/* ================= ACCESSIBILITY ================= */
.skip-link{
  position:absolute;
  top:-40px;
  left:0;
  background:var(--primary);
  color:#fff;
  padding:8px 16px;
  text-decoration:none;
  z-index:100;
}

.skip-link:focus{
  top:0;
}

/* ================= HEADER ================= */
header{
  background:#ffffff;
  position:sticky;
  top:0;
  z-index:1000;
  border-bottom:1px solid #e5e7eb;
  box-shadow:0 1px 3px rgba(0,0,0,0.05);
}

.navbar{
  max-width:1200px;
  margin:auto;
  padding:18px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:relative;
}

.logo{
  font-size:18px;
  font-weight:800;
  color:var(--primary);
  max-width:420px;
  z-index:1001;
  display:flex;
  align-items:center;
  gap:12px;
}

.logo-img{
  height:50px;
  width:auto;
  object-fit:contain;
}

.logo-text{
  display:inline-block;
}

.navbar ul{
  display:flex;
  gap:28px;
  list-style:none;
}

.navbar a{
  text-decoration:none;
  color:var(--dark);
  font-weight:600;
  font-size:14px;
  transition:color 0.3s ease;
}

.navbar a:hover{
  color:var(--primary);
}

/* ================= DROPDOWN MENU ================= */
.dropdown{
  position:relative;
}

.dropdown-toggle{
  display:flex;
  align-items:center;
  gap:5px;
  cursor:pointer;
}

.arrow{
  font-size:10px;
  transition:transform 0.3s ease;
}

.dropdown:hover .arrow{
  transform:rotate(180deg);
}

.dropdown-menu{
  position:absolute;
  top:100%;
  left:0;
  background:#fff;
  min-width:220px;
  box-shadow:0 8px 16px rgba(0,0,0,0.1);
  border-radius:8px;
  padding:8px 0;
  list-style:none;
  opacity:0;
  visibility:hidden;
  transform:translateY(-10px);
  transition:all 0.3s ease;
  z-index:1000;
  margin-top:10px;
}

.dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.dropdown-menu li{
  padding:0;
  border:none;
}

.dropdown-menu a{
  display:block;
  padding:12px 20px;
  color:var(--dark);
  font-weight:500;
  transition:all 0.3s ease;
}

.dropdown-menu a:hover{
  background:var(--secondary);
  color:var(--primary);
  padding-left:25px;
}

.cta-btn{
  background:var(--primary);
  color:#fff;
  padding:10px 22px;
  border-radius:6px;
  font-weight:600;
  font-size:14px;
  transition:all 0.3s ease;
  display:inline-block;
  text-decoration:none;
}

.cta-btn:hover{
  background:#083173;
  transform:translateY(-2px);
  box-shadow:0 4px 12px rgba(11,60,145,0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle{
  display:none;
  flex-direction:column;
  background:transparent;
  border:none;
  cursor:pointer;
  padding:5px;
  z-index:1001;
}

.hamburger{
  width:25px;
  height:3px;
  background:var(--primary);
  margin:3px 0;
  transition:all 0.3s ease;
  border-radius:3px;
}

/* ================= HERO ================= */
.hero{
  background:
    linear-gradient(120deg, rgba(0,0,0,0.65), rgba(0,0,0,0.5)),
    url('https://res.cloudinary.com/doaioibtu/image/upload/v1774795553/college_building_1_axk5fw.jpg') no-repeat;
  background-size: cover;
  background-position: top;   /* 🔥 important */
  background-attachment: fixed;
  min-height: 110vh;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-content{
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  animation: fadeInUp 1s ease;
}

.hero h1{
  font-size: 52px;
  font-weight: 800;
  max-width: 750px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.hero p{
  font-size: 18px;
  max-width: 600px;
  margin: 20px 0 30px;
  color: #e5e7eb;
}

.hero .cta-btn{
  background: #fbbf24;
  color: #000;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s ease;
}

.hero .cta-btn:hover{
  background: #f59e0b;
  transform: translateY(-2px);
}

/* ================= SECTIONS ================= */
section{
  padding:90px 20px;
}

.container{
  max-width:1200px;
  margin:auto;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:34px;
  font-weight:800;
  color:var(--primary);
  position:relative;
  display:inline-block;
}

.section-title h2::after{
  content:'';
  position:absolute;
  bottom:-10px;
  left:50%;
  transform:translateX(-50%);
  width:60px;
  height:4px;
  background:var(--accent);
  border-radius:2px;
}

.section-title p{
  max-width:650px;
  margin:20px auto 0;
  color:#64748b;
  font-size:15px;
}

.about-text{
  max-width:900px;
  margin:auto;
  text-align:center;
  font-size:15.5px;
  line-height:1.9;
}

/* ================= MESSAGE SECTIONS ================= */
.message-section{
  padding:80px 20px;
  background:#fff;
}

.message-section.alt-bg{
  background:var(--secondary);
}
.message-card{
  max-width:1000px;
  margin:auto;
  display:grid;
  grid-template-columns:260px 1fr;
  gap:40px;
  align-items:center;
}

.message-card.reverse{
  grid-template-columns:1fr 300px;
}

.message-card.reverse .message-image{
  order:2;
}

.message-card.reverse .message-content{
  order:1;
}

.message-image{
  position:relative;
}

.message-image img{
  width:100%;
  max-width:260px;
  height:auto;
  object-fit:cover;
  border-radius:14px;
  box-shadow:0 8px 24px rgba(0,0,0,0.15);
}

.message-image::before{
  content:'';
  position:absolute;
  top:-15px;
  left:-15px;
  width:100%;
  height:100%;
  border:3px solid var(--primary);
  border-radius:14px;
  z-index:-1;
}

.message-content{
  padding:20px 0;
}

.message-header h2{
  color:var(--primary);
  font-size:30px;
  font-weight:800;
  margin-bottom:8px;
}

.designation{
  color:#64748b;
  font-size:15px;
  font-weight:600;
  margin-bottom:25px;
}

.message-quote{
  border-left:4px solid var(--accent);
  padding-left:25px;
  margin:25px 0;
}

.message-quote p{
  font-size:15px;
  line-height:1.9;
  color:var(--text);
  margin-bottom:18px;
  text-align:justify;
}

.message-quote p:last-child{
  margin-bottom:0;
}

.message-signature{
  margin-top:30px;
  padding-top:20px;
  border-top:2px solid #e5e7eb;
}

.signature-name{
  font-size:18px;
  color:var(--primary);
  margin-bottom:5px;
}

.signature-title{
  font-size:14px;
  color:#64748b;
  font-style:italic;
}

/* ================= GRID / CARDS ================= */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:32px;
}

.card{
  background:#fff;
  padding:32px 26px;
  border-radius:14px;
  border:1px solid #e5e7eb;
  transition:all 0.3s ease;
}

.card:hover{
  transform:translateY(-8px);
  box-shadow:0 12px 24px rgba(0,0,0,0.1);
  border-color:var(--primary);
}

.card-icon{
  font-size:42px;
  margin-bottom:16px;
}

.card h3{
  color:var(--primary);
  margin-bottom:12px;
  font-size:20px;
}

.card p{
  font-size:14.5px;
  color:#475569;
}

/* ================= STATS ================= */
.stats{
  background:linear-gradient(120deg,#0b3c91,#102a56);
  color:#fff;
}

.stat{
  text-align:center;
  padding:20px;
}

.stat h3{
  font-size:48px;
  font-weight:800;
  margin-bottom:8px;
  color:var(--accent);
}

.stat p{
  font-size:16px;
  color:#e5e7eb;
  font-weight:500;
}

/* ================= WHY KIMT ================= */
.why-kimt{
  background:#fff;
}

.feature-card{
  background:var(--secondary);
  padding:32px 28px;
  border-radius:14px;
  border:1px solid #e5e7eb;
  position:relative;
  transition:all 0.3s ease;
}

.feature-card:hover{
  transform:translateY(-5px);
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.feature-number{
  font-size:48px;
  font-weight:800;
  color:rgba(11,60,145,0.1);
  position:absolute;
  top:20px;
  right:20px;
}

.feature-card h3{
  color:var(--primary);
  margin-bottom:12px;
  font-size:20px;
}

.feature-card p{
  font-size:14.5px;
  color:#475569;
}

/* ================= ACTIVITIES SECTION ================= */
.activities-section{
  background:var(--secondary);
  padding:80px 20px;
}

.activities-grid{
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
}

.activity-card{
  background:#fff;
  padding:35px 28px;
  border-radius:14px;
  border:2px solid transparent;
  text-align:center;
  transition:all 0.3s ease;
  cursor:pointer;
}

.activity-card:hover{
  border-color:var(--primary);
  transform:translateY(-5px);
  box-shadow:0 10px 25px rgba(11,60,145,0.15);
}

.activity-icon{
  font-size:50px;
  margin-bottom:20px;
  filter:grayscale(0.3);
  transition:all 0.3s ease;
}

.activity-card:hover .activity-icon{
  filter:grayscale(0);
  transform:scale(1.1);
}

.activity-card h3{
  color:var(--primary);
  font-size:20px;
  margin-bottom:12px;
  font-weight:700;
}

.activity-card p{
  color:#64748b;
  font-size:14px;
  line-height:1.7;
}

/* ================= ADMISSION SECTION ================= */
.admission-section{
  background:#fff;
  padding:80px 20px;
}

.admission-content{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  margin-bottom:50px;
  align-items:start;
}

.admission-image img{
  width:100%;
  border-radius:14px;
  box-shadow:0 8px 24px rgba(0,0,0,0.12);
}

.admission-steps{
  display:grid;
  gap:20px;
}

.step-card{
  background:var(--secondary);
  padding:25px;
  border-radius:12px;
  display:flex;
  gap:20px;
  align-items:center;
  border-left:4px solid var(--primary);
  transition:all 0.3s ease;
}

.step-card:hover{
  transform:translateX(10px);
  box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

.step-number{
  background:var(--primary);
  color:#fff;
  width:50px;
  height:50px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  font-weight:800;
  flex-shrink:0;
}

.step-card h3{
  color:var(--primary);
  font-size:18px;
  margin-bottom:5px;
}

.step-card p{
  color:#64748b;
  font-size:14px;
  margin:0;
}

.admission-cta{
  text-align:center;
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
}

.cta-btn.secondary{
  background:#fff;
  color:var(--primary);
  border:2px solid var(--primary);
}

.cta-btn.secondary:hover{
  background:var(--primary);
  color:#fff;
}

/* ================= FEES SECTION ================= */
.fees-section{
  background:var(--secondary);
  padding:80px 20px;
}

.fees-content{
  max-width:900px;
  margin:auto;
}

.fees-info{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  margin-bottom:40px;
  align-items:center;
}

.fees-info img{
  width:100%;
  border-radius:14px;
  box-shadow:0 8px 24px rgba(0,0,0,0.12);
}

.fees-highlights{
  background:#fff;
  padding:30px;
  border-radius:14px;
  box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

.fees-highlights h3{
  color:var(--primary);
  font-size:22px;
  margin-bottom:20px;
}

.fees-highlights ul{
  list-style:none;
  padding:0;
}

.fees-highlights li{
  padding:10px 0;
  color:#475569;
  font-size:15px;
  border-bottom:1px solid #e5e7eb;
}

.fees-highlights li:last-child{
  border-bottom:none;
}

.fees-note{
  background:#fff;
  padding:25px;
  border-radius:12px;
  border-left:4px solid var(--accent);
}

.fees-note p{
  margin-bottom:10px;
  color:#475569;
  font-size:14px;
  line-height:1.8;
}

.fees-note p:last-child{
  margin-bottom:0;
}

/* ================= GALLERY SLIDER ================= */
.gallery-slider{
  position:relative;
  overflow:hidden;
  margin-top:40px;
  border-radius:14px;
}

.gallery-track{
  display:flex;
  transition:transform .6s ease;
}

.gallery-slide{
  min-width:100%;
  position:relative;
}

.gallery-slide img{
  width:100%;
  height:500px;
  object-fit:cover;
  display:block;
}

.gallery-slide span{
  position:absolute;
  left:30px;
  bottom:30px;
  background:rgba(0,0,0,0.7);
  backdrop-filter:blur(10px);
  color:#fff;
  padding:12px 24px;
  border-radius:8px;
  font-size:16px;
  font-weight:600;
}

/* Slider Buttons */
.slider-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(0,0,0,0.6);
  color:#fff;
  border:none;
  font-size:24px;
  padding:12px 16px;
  cursor:pointer;
  border-radius:50%;
  z-index:10;
  transition:all 0.3s ease;
}

.slider-btn.prev{ left:20px; }
.slider-btn.next{ right:20px; }

.slider-btn:hover{
  background:var(--primary);
  transform:translateY(-50%) scale(1.1);
}

.slider-btn:focus{
  outline:2px solid var(--accent);
  outline-offset:2px;
}

/* Slider Dots */
.slider-dots{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:20px;
}

.dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:#cbd5e1;
  cursor:pointer;
  transition:all 0.3s ease;
  border:none;
}

.dot.active{
  background:var(--primary);
  width:30px;
  border-radius:6px;
}

/* ================= FOOTER ================= */
footer{
  background:#020617;
  color:#cbd5e1;
  padding:70px 20px 30px;
}

.footer-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:40px;
  margin-bottom:40px;
}

footer h4{
  color:#fff;
  margin-bottom:14px;
  font-size:18px;
}

footer p{
  font-size:14px;
  color:#94a3b8;
  margin-bottom:8px;
}

footer a{
  color:#94a3b8;
  text-decoration:none;
  transition:color 0.3s ease;
}

footer a:hover{
  color:var(--accent);
}

.footer-links{
  list-style:none;
  padding:0;
}

.footer-links li{
  margin-bottom:10px;
}

.copyright{
  text-align:center;
  padding-top:30px;
  border-top:1px solid #1e293b;
  font-size:13px;
  color:#64748b;
}

/* ================= BACK TO TOP BUTTON ================= */
.back-to-top{
  position:fixed;
  bottom:30px;
  right:30px;
  width:50px;
  height:50px;
  background:var(--primary);
  color:#fff;
  border:none;
  border-radius:50%;
  font-size:24px;
  cursor:pointer;
  opacity:0;
  visibility:hidden;
  transition:all 0.3s ease;
  z-index:999;
  box-shadow:0 4px 12px rgba(0,0,0,0.2);
}

.back-to-top.visible{
  opacity:1;
  visibility:visible;
}

.back-to-top:hover{
  background:#083173;
  transform:translateY(-5px);
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  /* Mobile Menu */
  .mobile-menu-toggle{
    display:flex;
  }
  .message-image{
  text-align:center;
}

.message-image img{
  max-width:200px;
  margin:auto;
}
  /* Dropdown Menu - Mobile */
  .dropdown-menu{
    position:static;
    opacity:1;
    visibility:visible;
    transform:none;
    box-shadow:none;
    background:var(--secondary);
    margin-top:0;
    max-height:0;
    overflow:hidden;
    transition:max-height 0.3s ease;
  }
  
  .dropdown.active .dropdown-menu{
    max-height:300px;
  }
  
  .dropdown-toggle{
    justify-content:center;
  }
  
  .dropdown .arrow{
    margin-left:auto;
  }
  
  .dropdown.active .arrow{
    transform:rotate(180deg);
  }
  
  .dropdown-menu a{
    padding:12px 30px;
    font-size:14px;
  }
  
  .dropdown-menu a:hover{
    padding-left:35px;
  }
  
  .navbar ul{
    position:fixed;
    left:-100%;
    top:65px;
    flex-direction:column;
    background:#fff;
    width:100%;
    text-align:center;
    transition:left 0.3s ease;
    box-shadow:0 10px 27px rgba(0,0,0,0.05);
    padding:20px 0;
    gap:0;
  }
  
  .navbar ul.active{
    left:0;
  }
  
  .navbar ul li{
    padding:15px 0;
    border-bottom:1px solid #f1f5f9;
  }
  
  .navbar .cta-btn{
    display:none;
  }
  
  .mobile-menu-toggle[aria-expanded="true"] .hamburger:nth-child(1){
    transform:rotate(-45deg) translate(-5px, 6px);
  }
  
  .mobile-menu-toggle[aria-expanded="true"] .hamburger:nth-child(2){
    opacity:0;
  }
  
  .mobile-menu-toggle[aria-expanded="true"] .hamburger:nth-child(3){
    transform:rotate(45deg) translate(-5px, -6px);
  }
  
  /* Message Sections - Mobile */
  .message-card{
    grid-template-columns:1fr;
    gap:30px;
  }
  
  .message-card.reverse{
    grid-template-columns:1fr;
  }
  
  .message-card.reverse .message-image{
    order:1;
  }
  
  .message-card.reverse .message-content{
    order:2;
  }
  
  .message-image img{
    height:250px;
  }
  
  .message-header h2{
    font-size:24px;
  }
  
  .message-quote{
    padding-left:15px;
  }
  
  .message-quote p{
    font-size:14px;
  }
  
  /* Admission Section - Mobile */
  .admission-content{
    grid-template-columns:1fr;
    gap:30px;
  }
  
  .step-card{
    flex-direction:column;
    text-align:center;
  }
  
  .step-card:hover{
    transform:translateY(-5px);
  }
  
  .admission-cta{
    flex-direction:column;
  }
  
  .admission-cta .cta-btn{
    width:100%;
    max-width:300px;
  }
  
  /* Fees Section - Mobile */
  .fees-info{
    grid-template-columns:1fr;
    gap:25px;
  }
  
  /* Hero */
  .hero{
    min-height:70vh;
    background-attachment:scroll;
  }
  
  .hero h1{
    font-size:32px;
  }
  
  .hero p{
    font-size:15px;
  }
  
  /* Sections */
  section{
    padding:60px 18px;
  }
  
  .section-title h2{
    font-size:28px;
  }
  
  .stat h3{
    font-size:36px;
  }
  
  /* Gallery */
  .gallery-slide img{
    height:280px;
  }
  
  .gallery-slide span{
    left:15px;
    bottom:15px;
    font-size:14px;
    padding:8px 16px;
  }
  
  .slider-btn{
    padding:8px 12px;
    font-size:20px;
  }
  
  .slider-btn.prev{ left:10px; }
  .slider-btn.next{ right:10px; }
  
  /* Back to Top */
  .back-to-top{
    width:45px;
    height:45px;
    bottom:20px;
    right:20px;
    font-size:20px;
  }
  
  /* Grid */
  .grid{
    grid-template-columns:1fr;
    gap:24px;
  }
}

@media(max-width:480px){
  .logo{
    font-size:14px;
    max-width:250px;
  }
  
  .logo-img{
    height:40px;
  }
  
  .logo-text{
    font-size:12px;
  }
  
  .hero h1{
    font-size:26px;
  }
  
  .section-title h2{
    font-size:24px;
  }
  
  .gallery-slide img{
    height:220px;
  }
}

/* Smooth Animations */
.card, .feature-card, .stat{
  animation:fadeIn 0.8s ease;
}

@keyframes fadeIn{
  from{
    opacity:0;
    transform:translateY(20px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* Focus Styles for Accessibility */
a:focus, button:focus{
  outline:2px solid var(--accent);
  outline-offset:2px;
}

/* Print Styles */
@media print{
  header, .hero, .slider-btn, .back-to-top, footer{
    display:none;
  }
  
  section{
    page-break-inside:avoid;
  }
}
/* ===== APPLY BUTTON FIX ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-btn {
  white-space: nowrap;
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 6px;

  /* 🔥 ADD THIS */
  background: #0442edc4;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

/* 🔥 HOVER EFFECT */
.cta-btn:hover {
  background: #29cc00ce;
}

.navbar .cta-btn {
  margin-left: 20px;
}

/* Mobile fix */
@media(max-width:768px){
  .navbar .cta-btn{
    display: block;
    margin: 15px auto 0;
    width: fit-content;
  }
}

/* ===== NEWS TICKER ===== */
.news-ticker {
  width: 100%;
  background: #ffb703;
  color: #000;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  font-weight: 600;
}

.ticker-content 
{
  display: inline-block;
  padding: 10px 0;
  animation: tickerMove 45s linear infinite;
}

@keyframes tickerMove {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* PAUSE ON HOVER FIX */
.news-ticker:hover .ticker-content {
  animation-play-state: paused;
}
/* LOGO TEXT ONE LINE FIX */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;   /* line break rokega */
}

.logo-text {
  white-space: nowrap;   /* text ek hi line me */
  font-size: 16px;
}
/* ===== NAVBAR FULL FIX ===== */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

/* Logo area */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 40%;
}

/* Logo text */
.logo-text {
  white-space: nowrap;
  font-size: 15px;
  font-weight: 700;
}

/* Menu ko center space do */
.navbar ul {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Apply button fix */
.navbar .cta-btn {
  flex-shrink: 0;
  margin-left: 10px;
}
/* ===== VISION SECTION ===== */
.vision-container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.vision-image {
  flex: 1;
  text-align: center;
}

.vision-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}

.vision-text {
  flex: 1;
  text-align: left;        /* left align */
  line-height: 1.7;        /* spacing improve */
  font-size: 16px;
  color: #333;
}

.vision-text p {
  margin-bottom: 15px;
}

/* Center alignment hatao agar laga hua ho */
#vision p {
  text-align: left;
}

/* ===== PREMIUM VISION SECTION ===== */
.vision-section {
  padding: 60px 0;
  background: #f9fafc;
}

.vision-container {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.vision-image {
  flex: 1;
  text-align: center;
}

.vision-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.vision-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vision-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.vision-card:hover {
  transform: translateY(-5px);
}

.vision-card h3 {
  margin-bottom: 10px;
  color: #ffcc00;
}
/* ===== APPLY NOW BUTTON FINAL FIX ===== */

.navbar .cta-btn {
  background: var(--accent) !important;
  color: #000 !important;
  padding: 10px 22px;
  border-radius: 30px;   /* 🔥 fully rounded */
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

/* Hover slight lift */
.navbar .cta-btn:hover {
  transform: translateY(-2px);
}

/* 🔥 Underline animation */
.navbar .cta-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 0%;
  height: 2px;
  background: #000;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

/* On hover show line */
.navbar .cta-btn:hover::after {
  width: 60%;
}
/* ===== APPLY NOW BUTTON FINAL PREMIUM ===== */

.navbar .cta-btn {
  background: var(--accent) !important;
  color: #000 !important;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;

  /* 🔥 glow effect */
  box-shadow: 0 0 10px rgba(255, 183, 3, 0.6);
}

/* Hover effect */
.navbar .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 183, 3, 0.9),
              0 0 40px rgba(255, 183, 3, 0.6);
}

/* Underline animation */
.navbar .cta-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 0%;
  height: 2px;
  background: #000;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

/* Hover pe line */
.navbar .cta-btn:hover::after {
  width: 60%;
}
/* ===== VISION SUBTEXT CENTER FIX ===== */

#vision .section-title p {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}
/* ===== FINAL MOBILE FIX (VISION SECTION) ===== */
@media (max-width: 768px) {

  .vision-container {
    flex-direction: column !important;
    align-items: center !important;
  }

  .vision-image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .vision-image img {
    width: 90%;
    max-width: 280px;
  }

  .vision-content {
    width: 100%;
    align-items: center;
  }

  .vision-card {
    width: 90%;
    margin: 10px auto;
    text-align: center;
  }

}
.vision-card h3 {
  text-align: center;
}

.vision-card p {
  text-align: center;
}
/* ================= FINAL RESPONSIVE FIX ================= */

/* Container fix */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Navbar fix */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; /* allow wrap */
}

/* Logo fix */
.logo {
  flex: 1;
  min-width: 0;
  max-width: 100%;
  white-space: normal; /* 🔥 important */
}

/* Logo text fix */
.logo-text {
  font-size: 14px;
  line-height: 1.2;
  white-space: normal;
}

/* Prevent button breaking */
.navbar .cta-btn {
  flex-shrink: 0;
}

/* Menu spacing fix */
.navbar ul {
  flex: 1;
  justify-content: center;
}

/* HERO FIX (VERY IMPORTANT) */
.hero {
  background-attachment: scroll !important;
  width: 100%;
}

/* Fix image overflow */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

  .container {
    padding: 0 14px;
  }

  .navbar {
    padding: 12px 15px;
  }

  .logo-text {
    font-size: 12px;
  }

  /* Fix menu position */
  .navbar ul {
    top: 60px;
  }

  /* Hero text fix */
  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 14px;
  }

  /* Button full width */
  .navbar .cta-btn {
    width: fit-content;
    margin: 10px auto;
  }

}

/* Extra small devices */
@media (max-width: 480px) {

  .logo-text {
    font-size: 11px;
  }

  .hero h1 {
    font-size: 24px;
  }

}
/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 90px; /* back-to-top ke upar */
  right: 25px;
  width: 55px;
  height: 55px;
  background: #25D366;
  color: #fff;
  font-size: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  z-index: 999;
  transition: all 0.3s ease;
}

/* Hover effect */
.whatsapp-btn:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

/* Mobile adjust */
@media(max-width:768px){
  .whatsapp-btn {
    bottom: 80px;
    right: 18px;
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}
/* ================= GALLERY GRID + LIGHTBOX ================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.gallery-thumb {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: #f0f0f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-thumb:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}

.gallery-thumb:hover .thumb-overlay {
  background: rgba(0,0,0,0.4);
}

.thumb-zoom {
  font-size: 28px;
  opacity: 0;
  transition: opacity 0.25s;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.gallery-thumb:hover .thumb-zoom {
  opacity: 1;
}

.thumb-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-size: 12px;
  padding: 20px 8px 8px;
  text-align: center;
  font-weight: 500;
}

/* Lightbox */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.lightbox-overlay.active {
  display: flex;
}

.lb-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 85vw;
  max-height: 90vh;
}

.lb-content img {
  max-width: 80vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 10px;
  display: block;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

.lb-content p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  margin-top: 14px;
  text-align: center;
  font-weight: 500;
}

.lb-counter {
  color: rgba(255,255,255,0.45) !important;
  font-size: 13px !important;
  margin-top: 4px !important;
}

.lb-close-btn {
  position: fixed;
  top: 18px;
  right: 24px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 100001;
}

.lb-close-btn:hover {
  background: rgba(255,255,255,0.3);
}

.lb-arrow {
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 26px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  margin: 0 12px;
  flex-shrink: 0;
}

.lb-arrow:hover {
  background: rgba(255,255,255,0.28);
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .lb-content img {
    max-width: 90vw;
    max-height: 65vh;
  }
  .lb-arrow {
    width: 38px;
    height: 38px;
    font-size: 18px;
    margin: 0 4px;
  }
}
