/* ==========================================================================
   GLOBAL RESET & MODERN TYPOGRAPHY
   ========================================================================== */
@import url("https://googleapis.com");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", sans-serif; /* संसारकै ट्रेन्डिङ सफा फन्ट */
  scroll-behavior: smooth;
}

:root {
  --navy-blue: #0b2265;
  --navy-light: #153285;
  --orange: #f97316;
  --orange-hover: #ea580c;
  --white: #ffffff;
  --dark: #0f172a; /* गहिरो कालो/नीलो रंग */
  --text-muted: #64748b; /* सफा फिक्का रंग */
  --light-bg: #f8fafc;
  --border-color: #e2e8f0;
  --shadow-sm: 0 2px 8px -1px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 12px 24px -4px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 40px -8px rgba(15, 23, 42, 0.1);
  --radius: 14px; /* प्रिमियम गोलो कुना प्रभाव */
}

body {
  background-color: var(--white);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   TOP BAR SECTION
   ========================================================================== */
.top-bar {
  background-color: var(--navy-blue);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  flex-wrap: wrap;
  gap: 15px;
}

.top-bar-inner div {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
}

.top-bar-inner i {
  color: var(--orange);
  font-size: 0.9rem;
}

/* ==========================================================================
   NAVIGATION NAVBAR
   ========================================================================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 8%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px); /* सिसा जस्तो ब्याकग्राउन्ड */
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-color);
}

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

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

.navbar nav ul li a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}

.navbar nav ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2.5px;
  bottom: 0;
  left: 0;
  background-color: var(--orange);
  transition: width 0.25s ease;
  border-radius: 2px;
}

.navbar nav ul li a.active,
.navbar nav ul li a:hover {
  color: var(--navy-light);
}

.navbar nav ul li a:hover::after {
  width: 100%;
}

.nav-btn {
  background-color: var(--orange);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
  transition: all 0.25s ease;
}

.nav-btn:hover {
  background-color: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.3);
}

/* ==========================================================================
   MODERN HERO BANNER
   ========================================================================== */

/* ==========================================================================
   HERO BANNER WITH LOCAL MOUNT FUJI IMAGE (१०२% ग्यारेन्टी चल्ने कोड)
   ========================================================================== */
.hero {
  /* यहाँ हामीले अनलाइन लिङ्क हटाएर सिधै फोल्डरकै 'hero-bg.jpg' लाई तानेका छौँ */
  background:
    linear-gradient(
      135deg,
      rgba(11, 34, 101, 0.92) 0%,
      rgba(15, 23, 42, 0.85) 100%
    ),
    url("images/hero-bg.jpg") no-repeat center center/cover !important;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  width: 100%;
}

/* ==========================================================================
   HERO TEXT ULTRA-LEFT ADJUSTMENT (अक्षर अझै बायाँ सार्ने र फुजी देखाउने कोड)
   ========================================================================== */

.hero {
  /* ग्रेडियन्टलाई अझ बायाँपट्टि गाढा पारिएको छ ताकि अक्षर प्रष्ट होस् र दाहिनेपट्टि फुजी टल्कियोस् */
  background:
    linear-gradient(
      90deg,
      rgba(11, 34, 101, 0.98) 0%,
      rgba(11, 34, 101, 0.85) 40%,
      rgba(15, 23, 42, 0.1) 85%
    ),
    url("images/hero-bg.jpg") no-repeat center center/cover !important;
  height: 75vh;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: left !important;
  padding: 0 5% !important; /* ग्यापलाई ८% बाट ५% मा झारेर अझै देब्रे भित्तातिर टाँसिएको */
  width: 100%;
}

.hero-content {
  max-width: 520px !important; /* चौडाइलाई ६५० बाट ५२० मा घटाएर कडा रूपमा बायाँ कुनामै खुम्च्याएको */
  width: 100%;
  animation: fadeIn 0.8s ease-out;
}

.hero-badge {
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-content h1 {
  font-size: 2.8rem; /* अक्षर धेरै फैलिएर पहाड नछोकोस् भनेर फन्ट साइज अलिकति सानो बनाएको */
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 18px;
  color: #ffffff !important;
  letter-spacing: -0.5px;
}

.hero-content h1 span {
  color: #f97316;
}

.hero-content p {
  font-size: 1.02rem; /* यसलाई पनि प्रफेक्ट साइजमा कसिलो पारिएको छ */
  margin-bottom: 30px;
  opacity: 0.92;
  color: #ffffff !important;
  line-height: 1.5;
}

.hero-btns {
  display: flex !important;
  justify-content: flex-start !important;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==========================================================================
   QUICK HIGHLIGHTS BAR (४ वटा बक्सहरूलाई एउटै तेर्सो लाइनमा राख्ने)
   ========================================================================== */
.highlights-bar {
  display: grid !important;
  grid-template-columns: repeat(
    4,
    1fr
  ) !important; /* कडा रूपमा ४ वटा स्तम्भ तेर्सो बनाउने */
  background-color: #ffffff;
  padding: 24px 4% !important;
  box-shadow: 0 12px 24px -4px rgba(15, 23, 42, 0.06);
  border-radius: 14px;
  max-width: 1250px;
  margin: -40px auto 0 auto !important; /* ब्यानरको माथि हल्का ओभरल्याप गराउने */
  position: relative;
  z-index: 10;
  gap: 20px;
  border: 1px solid #e2e8f0;
}

.hl-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.88rem;
  color: #0b2265;
  line-height: 1.3;
}

.hl-item i {
  font-size: 1.4rem;
  color: #f97316;
  flex-shrink: 0;
}

/* मोबाइलमा मात्र थोरै रेस्पोन्सिभ फिक्स */
@media (max-width: 968px) {
  .highlights-bar {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .hero {
    text-align: center !important;
    justify-content: center !important;
    padding: 0 24px !important;
  }
  .hero-btns {
    justify-content: center !important;
  }
}
@media (max-width: 480px) {
  .highlights-bar {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   QUICK HIGHLIGHTS & GRID SECTION SYSTEM
   ========================================================================== */
.highlights-bar {
  display: flex;
  justify-content: space-between;
  background-color: var(--white);
  padding: 28px 8%;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius);
  max-width: 1200px;
  margin: -40px auto 0 auto;
  position: relative;
  z-index: 10;
  flex-wrap: wrap;
  gap: 20px;
  border: 1px solid var(--border-color);
}

.hl-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy-blue);
}

.hl-item i {
  font-size: 1.5rem;
  color: var(--orange);
}

.section-padding {
  padding: 80px 8%;
}
.bg-light {
  background-color: var(--light-bg);
}

.sec-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy-blue);
  margin-bottom: 60px;
  letter-spacing: -0.5px;
}
.sec-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background-color: var(--orange);
  margin: 15px auto 0 auto;
  border-radius: 10px;
}

/* Core Layout Grids */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.grid-6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 24px;
}

/* ==========================================================================
   WHY CHOOSE CARDS
   ========================================================================== */
.choose-card {
  background: var(--white);
  padding: 40px 24px;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.choose-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(11, 34, 101, 0.15);
}

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 16px; /* modern rounded squares */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  font-size: 1.6rem;
}
.blue-icon {
  background: #eff6ff;
  color: #2563eb;
}
.red-icon {
  background: #fef2f2;
  color: #dc2626;
}
.navy-icon {
  background: #e0e7ff;
  color: #4f46e5;
}
.rose-icon {
  background: #fff1f2;
  color: #e11d48;
}

.choose-card h3 {
  font-size: 1.25rem;
  color: var(--navy-blue);
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.choose-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   PREMIUM SERVICES SECTIONS
   ========================================================================== */
.service-card-premium {
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.service-card-premium:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card-premium img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.sc-content {
  padding: 28px 24px;
}
.sc-content h3 {
  font-size: 1.3rem;
  color: var(--navy-blue);
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.sc-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sc-content ul li {
  font-size: 0.95rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.sc-content ul li i {
  color: #10b981;
  font-size: 1rem;
}

/* ==========================================================================
   DESTINATIONS GRAPHICS
/* ==========================================================================
   INTAKES & PROCESS MANAGEMENT
   ========================================================================== */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 40px;
}

.intake-box,
.process-box {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.intake-box h3,
.process-box h3 {
  font-size: 1.45rem;
  color: var(--navy-blue);
  margin-bottom: 28px;
  font-weight: 800;
  border-bottom: 2px solid var(--light-bg);
  padding-bottom: 12px;
}

.intake-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--light-bg);
  font-weight: 700;
  font-size: 0.98rem;
}

.badge-green {
  background-color: #e6fbf1;
  color: #047857;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
}

.badge-orange {
  background-color: #fff7ed;
  color: #c2410c;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step {
  text-align: center;
  background: var(--light-bg);
  padding: 24px 16px;
  border-radius: 12px;
  position: relative;
  border: 1px solid transparent;
  transition: all 0.2s;
}

.step:hover {
  border-color: rgba(11, 34, 101, 0.1);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.step-num {
  position: absolute;
  top: -12px;
  left: -12px;
  background: var(--orange);
  color: var(--white);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
}

.step i {
  font-size: 1.8rem;
  color: var(--navy-light);
  margin-bottom: 12px;
}

.step p {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-blue);
}

/* ==========================================================================
   SUCCESS STORIES (TESTIMONIALS)
   ========================================================================= */
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-card img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 3px solid var(--light-bg);
}

.review-card h4 {
  font-size: 1.2rem;
  color: var(--navy-blue);
  font-weight: 700;
}

.school-name {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 500;
}

.stars {
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.review-text {
  font-size: 0.95rem;
  font-style: italic;
  color: #334155;
  line-height: 1.6;
}

/* ==========================================================================
   CTA BANNER CARD
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-blue) 0%, #030712 100%);
  color: var(--white);
  padding: 55px 5%;
  text-align: center;
  margin-top: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.cta-banner-content h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.cta-banner-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.85;
}

.btn-dark-blue {
  background-color: var(--navy-light);
  color: var(--white);
}

.btn-dark-blue:hover {
  background-color: #0b2265;
  transform: translateY(-2px);
}

.btn-whatsapp-solid {
  background-color: #25d366;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-solid:hover {
  background-color: #1cbd55;
  transform: translateY(-2px);
}

/* ==========================================================================
   PREMIUM CORPORATE FOOTER
   ========================================================================== */
footer {
  background-color: #030712;
  color: #94a3b8;
  padding: 80px 8% 30px 8%;
  font-size: 0.92rem;
  margin-top: 60px;
  border-top: 1px solid #1e293b;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 48px;
  margin-bottom: 60px;
}

.footer-col h3 {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 3.5px;
  background-color: var(--orange);
  bottom: -8px;
  left: 0;
  border-radius: 4px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.25s ease;
  font-weight: 500;
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-col p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.footer-col p i {
  color: var(--orange);
  font-size: 1rem;
  margin-top: 4px;
  width: 16px;
}

.f-socials {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.f-socials a {
  width: 40px;
  height: 40px;
  background-color: #111827;
  color: #94a3b8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid #1e293b;
}

.f-socials a:hover {
  background-color: var(--orange);
  color: var(--white);
  transform: translateY(-3px) scale(1.05);
  border-color: var(--orange);
}

.footer-copyright {
  border-top: 1px solid #1e293b;
  padding-top: 28px;
  text-align: center;
  font-size: 0.88rem;
  color: #64748b;
}

/* ==========================================================================
   ANIMATIONS & ADVANCED RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .split-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .navbar {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 18px 24px;
  }
  .navbar nav ul {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-content h1 {
    font-size: 2.4rem;
  }
  .hero-content p {
    font-size: 1.05rem;
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .section-padding {
    padding: 50px 24px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
  .hero-btns a {
    width: 100%;
    justify-content: center;
  }
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .cta-buttons a {
    width: 100%;
    justify-content: center;
  }
  .cta-banner-content h2 {
    font-size: 1.7rem;
  }
}

/* ==========================================================================
   ADVANCED DESTINATIONS CARDS WITH ZOOM & BUTTON EFFECTS
   ========================================================================== */
.city-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  transition: all 0.3s ease;
}

/* माउस लैजाँदा पुरै कार्ड हल्का माथि उठ्ने प्रभाव */
.city-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  border-color: #f97316; /* सुन्तला रङको बर्डर बल्ने */
}

/* फोटो जुम गराउन बाहिरी बाकसलाई थुन्ने */
.city-img-container {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
}

.city-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  transition: transform 0.5s ease; /* जुम हुने स्पिड */
}

/* 🌟 जादु: माउस लैजाँदा फोटो मात्रै भित्र सरर्र जुम हुन्छ */
.city-card:hover img {
  transform: scale(1.1);
}

.city-info {
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.city-info h4 {
  font-size: 1.2rem;
  color: #0b2265;
  font-weight: 700;
  margin: 0;
}

.city-info p {
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 5px;
}

/* प्रिमियम नीलो बटनको डिजाइन */
.view-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 0.85rem;
  background-color: #f1f5f9;
  color: #0b2265;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s ease;
  width: 100%;
}

/* माउस लैजाँदा बटन गाढा नीलो र अक्षर सेतो हुने प्रभाव */
.city-card:hover .view-btn {
  background-color: #0b2265;
  color: #ffffff;
}

.view-btn i {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

/* माउस लैजाँदा सानो तीर (Arrow) दाहिने सर्ने प्रभाव */
.city-card:hover .view-btn i {
  transform: translateX(4px);
}

/* ==========================================================================
   FINAL PERFECT FULL-WIDTH LANDSCAPE FOOTER FIXED
   ========================================================================== */
footer {
  background-color: #030712 !important;
  color: #94a3b8 !important;
  padding: 60px 0 30px 0 !important;
  margin-top: 60px !important;
  border-top: 1px solid #1e293b !important;
  width: 100% !important; /* ब्राउजरलाई पूरै स्क्रिनको चौडाइ ओगट्न बाध्य पार्ने */
  display: block !important;
  clear: both !important;
}

/* मुख्य ४ वटा ब्लकहरूलाई स्क्रिनभरि बराबर फैलाउने चौडा बाकस */
.footer-grid {
  display: grid !important;
  grid-template-columns: repeat(
    4,
    1fr
  ) !important; /* कडा रूपमा ४ वटा स्तम्भहरू */
  gap: 40px !important; /* प्रत्येक स्तम्भको बीचमा पर्याप्त ग्याप */
  max-width: 1300px !important; /* फुटारलाई धेरै ठूलो स्क्रिनमा पनि फैलिन दिन्छ */
  margin: 0 auto !important; /* फुटारलाई सधैं स्क्रिनको सिधा बीचमा राख्ने */
  padding: 0 5% !important; /* भित्रबाट ५% को बबाल ग्याप */
  width: 100% !important;
}

.footer-col {
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.footer-col h3 {
  color: #ffffff !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  margin-bottom: 24px !important;
  position: relative !important;
  white-space: nowrap !important; /* हेडिङ कतै पनि नकाटियोस् */
}

/* हेडिङ मुनिको सुन्तला धर्का */
.footer-col h3::after {
  content: "" !important;
  position: absolute !important;
  width: 35px !important;
  height: 3.5px !important;
  background-color: #f97316 !important;
  bottom: -8px !important;
  left: 0 !important;
  border-radius: 4px !important;
}

/* भित्री लिङ्कहरूको बक्स (यसलाई सधैं व्यवस्थित राख्ने) */
.footer-col ul {
  list-style: none !important;
  display: flex !important;
  flex-direction: column !important; /* भित्री शब्दहरूलाई एउटैको मुनि अर्को राख्ने ताकि खप्टिने एरर नआओस् */
  gap: 12px !important;
  width: 100% !important;
}

.footer-col ul li a {
  color: #94a3b8 !important;
  text-decoration: none !important;
  font-size: 0.92rem !important;
  font-weight: 500 !important;
  transition: color 0.2s ease !important;
}

.footer-col ul li a:hover {
  color: #ffffff !important;
  padding-left: 4px !important;
}

/* कन्ट्याक्ट सेक्सनका अक्षरहरूलाई प्रफेक्ट सेतो र सुरक्षित बनाउने */
.footer-col p {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  margin-bottom: 16px !important;
  line-height: 1.5 !important;
  color: #ffffff !important;
  font-size: 0.92rem !important;
  white-space: normal !important; /* अक्षरलाई बाहिर जान नदिई बक्स भित्रै राख्ने */
  word-break: break-word !important;
}

.footer-col p i {
  color: #f97316 !important;
  font-size: 1rem !important;
  margin-top: 4px !important;
  width: 16px !important;
  flex-shrink: 0 !important;
}

/* Social Media Circles */
.f-socials {
  display: flex !important;
  gap: 12px !important;
  margin-top: 20px !important;
}

.f-socials a {
  width: 38px !important;
  height: 38px !important;
  background-color: #1e293b !important;
  color: #94a3b8 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
}

.footer-copyright {
  border-top: 1px solid #1e293b !important;
  padding-top: 25px !important;
  text-align: center !important;
  font-size: 0.85rem !important;
  color: #64748b !important;
  margin-top: 40px !important;
  width: 100% !important;
}

/* ==========================================================================
   MOBILE & RESPONSIVE FOR FULL WIDTH
   ========================================================================== */
@media (max-width: 968px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important; /* ट्याब्लेटमा २ स्तम्भ */
    gap: 30px !important;
  }
}

@media (max-width: 550px) {
  .footer-grid {
    grid-template-columns: 1fr !important; /* मोबाइलमा १ स्तम्भ पूरा चौडाइ */
    gap: 35px !important;
  }
}

/* ==========================================================================
   AONE CUSTOM PREMIUM FOOTER & CTA SYSTEM (१००% परिमार्जित क्लीन कोड)
   ========================================================================== */

/* CTA FLOATING BANNER */
.aone-cta-section {
  background: linear-gradient(135deg, #0b2265 0%, #020617 100%) !important;
  color: #ffffff !important;
  padding: 60px 0 !important;
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  clear: both !important;
}

.aone-cta-content {
  max-width: 1200px !important;
  width: 100% !important;
  padding: 0 5% !important;
  text-align: center !important;
}

.aone-cta-content h2 {
  font-size: 2.4rem !important;
  font-weight: 800 !important;
  margin-bottom: 12px !important;
  color: #ffffff !important;
}

.aone-cta-content p {
  font-size: 1.15rem !important;
  margin-bottom: 30px !important;
  opacity: 0.85 !important;
  color: #ffffff !important;
}

.aone-cta-buttons {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
}

/* ==========================================================================
   AONE MAIN FOOTER MATCHING BRAND COLOR (लोगोको रङसँग हुबहु म्याच कोड)
   ========================================================================== */
.aone-main-footer {
  background-color: #0b2265 !important; /* लोगोको जस्तै प्रफेक्ट गाढा नीलो रङ */
  color: #cbd5e1 !important; /* अक्षर अलि चम्किलो सेतो/फिक्का ताकि नीलोमा प्रष्ट पढ्न सकियोस् */
  padding: 80px 0 20px 0 !important;
  width: 100% !important;
  display: block !important;
  clear: both !important;
}

/* कपीराइट बक्स र कँडेल जीको लिङ्क बक्स */
.aone-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important; /* हल्का सेतो धर्का */
  padding-top: 25px !important;
  text-align: center !important;
  font-size: 0.85rem !important;
  color: #94a3b8 !important;
  margin-top: 50px !important;
}

/* कँडेल जीको नाममा माउस लैजाँदा टल्कने प्रभाव */
.aone-footer-bottom a:hover {
  color: #ffffff !important;
  text-decoration: underline !important;
}

/* ४ स्तम्भ फराकिलो बनाउने मुख्य मेकानिजम */
.aone-footer-grid {
  display: grid !important;
  grid-template-columns: repeat(
    4,
    1fr
  ) !important; /* प्रफेक्ट ४ कोठाहरू तेर्सो लहरमा */
  gap: 40px !important;
  max-width: 1300px !important;
  margin: 0 auto !important;
  padding: 0 5% !important;
  width: 100% !important;
}

.aone-footer-col {
  min-width: 0 !important;
}

/* 🌟 अन्डरलाइन (धर्का) नकाटिने प्रफेक्ट कोड */
.aone-footer-col h3 {
  color: #ffffff !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  margin-bottom: 28px !important;
  position: relative !important;
  display: inline-block !important; /* यसले धर्कालाई अक्षर जत्रै बनाउँछ र काटिन दिँदैन */
  width: 100% !important;
  text-align: left !important;
}

.aone-footer-col h3::after {
  content: "" !important;
  position: absolute !important;
  width: 40px !important; /* धर्काको प्रफेक्ट लम्बाइ */
  height: 3.5px !important;
  background-color: #f97316 !important; /* आकर्षक सुन्तला रङ */
  bottom: -10px !important;
  left: 0 !important;
  border-radius: 4px !important;
}

/* भित्री लिङ्कहरू व्यवस्थित राख्ने */
.aone-footer-links {
  list-style: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.aone-footer-links li a {
  color: #94a3b8 !important;
  text-decoration: none !important;
  font-size: 0.92rem !important;
  transition: all 0.25s ease !important;
  display: inline-block !important;
}

.aone-footer-links li a:hover {
  color: #ffffff !important;
  padding-left: 6px !important;
}

/* कन्ट्याक्ट विवरणहरू प्रफेक्ट सेतो र सुरक्षित बनाउने */
.aone-footer-contacts {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
}

.aone-footer-contacts p {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  color: #ffffff !important; /* अक्षर पूरै सेतो */
  font-size: 0.92rem !important;
  line-height: 1.5 !important;
  white-space: normal !important; /* अक्षर नकाटिने */
  word-break: break-word !important;
}

.aone-footer-contacts p i {
  color: #f97316 !important;
  font-size: 1rem !important;
  margin-top: 4px !important;
  flex-shrink: 0 !important;
}

/* Logo and Social Media Grid Layout */
.aone-footer-logo img {
  height: 48px !important;
  width: auto !important;
  object-fit: contain !important;
  margin-bottom: 20px !important;
}

.aone-footer-text {
  font-size: 0.9rem !important;
  line-height: 1.6 !important;
  color: #94a3b8 !important;
}

.aone-footer-socials {
  display: flex !important;
  gap: 12px !important;
  margin-top: 24px !important;
}

.aone-footer-socials a {
  width: 38px !important;
  height: 38px !important;
  background-color: #1e293b !important;
  color: #94a3b8 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
}

.aone-footer-socials a:hover {
  background-color: #f97316 !important;
  color: #ffffff !important;
}

.aone-footer-bottom {
  border-top: 1px solid #1e293b !important;
  padding-top: 25px !important;
  text-align: center !important;
  font-size: 0.85rem !important;
  color: #64748b !important;
  margin-top: 50px !important;
}

/* ==========================================================================
   ADVANCED RESPONSIVE MEDIA QUERIES FOR FOOTER
   ========================================================================== */
@media (max-width: 968px) {
  .aone-footer-grid {
    grid-template-columns: repeat(2, 1fr) !important; /* ट्याब्लेटमा २ स्तम्भ */
    gap: 32px !important;
  }
}

@media (max-width: 550px) {
  .aone-footer-grid {
    grid-template-columns: 1fr !important; /* मोबाइलमा १ स्तम्भ पूरा चौडाइ */
    gap: 35px !important;
  }
  .aone-cta-content h2 {
    font-size: 1.8rem !important;
  }
  .aone-cta-buttons {
    flex-direction: column !important;
    width: 100%;
  }
  .aone-cta-buttons a {
    width: 100% !important;
    justify-content: center !important;
  }
}

/*alu jasto /

/* ==========================================================================
   FINAL PERFECT BACKGROUND FIX FOR FOOTER (लोगो ब्याकग्राउन्ड हटाउने कोड)
   ========================================================================== */
footer {
  background-color: #0b2265 !important; /* लोगोको जस्तै प्रफेक्ट गाढा नीलो रङ */
  background-image: none !important; /* 🌟 जादु: फुटरको ब्याकग्राउन्डबाट त्यो विशाल लोगो फोटो पूर्ण रूपमा हटाउने कोड */
  color: #cbd5e1 !important;
  padding: 70px 0 25px 0 !important;
  width: 100% !important;
  clear: both !important;
  display: block !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* चार कोठाहरू पूर्ण रूपमा तेर्सो लाइनमा फैलाउने ग्रिड */
.footer-grid {
  display: grid !important;
  grid-template-columns: repeat(
    4,
    1fr
  ) !important; /* कडा रूपमा ४ फराकिला स्तम्भहरू तेर्सो */
  gap: 40px !important;
  max-width: 1250px !important;
  margin: 0 auto !important;
  padding: 0 6% !important;
  width: 100% !important;
}

.footer-col {
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

/* सुन्तला अन्डरलाइन (धर्का) फिक्स गरिएको कोड */
.footer-col h3 {
  color: #ffffff !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  margin-bottom: 24px !important;
  position: relative !important;
  display: inline-block !important;
}

.footer-col h3::after {
  content: "" !important;
  position: absolute !important;
  width: 35px !important;
  height: 3px !important;
  background-color: #f97316 !important; /* सुन्तला रङ */
  bottom: -8px !important;
  left: 0 !important;
  border-radius: 2px !important;
}

/* 🌟 फुटर भित्रको लोगो इमेजलाई साइजमा राख्ने फिक्स कोड */
.footer-logo img {
  height: 45px !important;
  width: auto !important;
  object-fit: contain !important;
  margin-bottom: 15px !important;
  display: block !important;
}

.footer-col ul {
  list-style: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.footer-col ul li a {
  color: #cbd5e1 !important;
  text-decoration: none !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
}

.footer-col ul li a:hover {
  color: #ffffff !important;
  padding-left: 5px !important;
}

.footer-contacts-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.footer-contacts-list p {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  color: #ffffff !important;
  font-size: 0.9rem !important;
  line-height: 1.4 !important;
  white-space: normal !important;
  word-break: break-word !important;
}

.footer-contacts-list p i {
  color: #f97316 !important;
  font-size: 0.95rem !important;
  margin-top: 3px !important;
  flex-shrink: 0 !important;
}

.f-socials {
  display: flex !important;
  gap: 12px !important;
  margin-top: 20px !important;
}

.f-socials a {
  width: 36px !important;
  height: 36px !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
}

.f-socials a:hover {
  background-color: #f97316 !important;
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding-top: 25px !important;
  text-align: center !important;
  font-size: 0.85rem !important;
  color: #94a3b8 !important;
  margin-top: 50px !important;
  width: 100% !important;
}

.footer-copyright a {
  color: #f97316 !important;
  text-decoration: none !important;
  font-weight: 700 !important;
}
