/* ===================================================================
   FINAL OPTIMIZED STYLESHEET - GAS AGENCY CHAYAN
   ===================================================================
   Table of Contents (Mapping):
   
   1. GLOBAL STYLES & VARIABLES
      - :root variables (colors, fonts, sizes)
      - Body, Headings, Container, Links

   2. REUSABLE COMPONENTS
      - Buttons (All variations)
      - Cards (General styles for all cards)
      - Accordion (For FAQ & Requirements)
      - Forms (General input styles)

   3. CORE LAYOUT
      - Header & Navigation (Navbar, Mobile Menu)
      - Hero Section Slider (Homepage)
      - Footer

   4. HOMEPAGE SECTIONS (index.html)
      - About Short Section
      - Features / Benefits Section
      - Animated Counters Section
      - Partner Logos Section
      - Latest Announcements Section
      - CTA (Call to Action) Section

   5. INNER PAGE SECTIONS
      - About Page (about.html): Timeline, Team, Awards
      - Services Page (services.html): Service Hero, Service Cards, Comparison Table
      - Requirements Page (requirements.html): Accordion-specific styles
      - Apply Page (apply.html): Form container, Info boxes
      - Status Page (status.html): Status checker form, Badges
      - FAQ Page (faq.html): FAQ-specific accordion styles
      - News Page (news.html): News cards, Pagination
      - Contact Page (contact.html): Contact form, Map

   6. UTILITIES & ANIMATIONS
      - Helper classes (text-muted, etc.)
      - Scroll Animations (fade-up)

   7. RESPONSIVE MEDIA QUERIES
      - Styles for Tablet and Mobile devices
   =================================================================== */


/* --- 1. GLOBAL STYLES & VARIABLES --- */
:root {
    /* Color Palette */
    --primary: #0b63ff;
    --accent: #ff7e00;
    --brand-primary: #4361ee;
    --text-dark: #ff3d00;
    --text-light: #333;
    --text-muted: #6b7280;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --footer-bg: #1a202c;

    /* Gradients */
    --brand-gradient: linear-gradient(90deg, #4361ee 0%, #7209b7 100%);

    /* Sizing & Typography */
    --radius: 12px;
    --container-width: 1140px;
    --font-primary: "Inter", "Poppins", Arial, sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--text-dark);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 16px;
}

a {
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Accessibility focus */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: 3px solid rgba(11, 99, 255, 0.2);
    outline-offset: 3px;
    box-shadow: none !important;
}


/* --- 2. REUSABLE COMPONENTS --- */

/* Buttons (Used across all pages) */
.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border: 1px #dc3545;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.btn:hover {
    transform: translateY(-3px);
}
.btn-lg {
    padding: 15px 40px;
    font-size: 1.2rem;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  border: none;
}
}
.btn-primary:hover {
    transform: scale(1.05);
    background: linear-gradient(90deg, #6610f2, #007bff);
    color: #fff;
}
.btn-outline-light {
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}
.custom-btn-primary, .custom-btn-success {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
}
.custom-btn-primary {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.custom-btn-primary:hover {
    background-color: #e66a00;
    border-color: #e66a00;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.custom-btn-success {
    background-color: #28a745;
    border-color: #28a745;
    color: #fff;
}
.custom-btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Cards (Used in Features, Services, News, Team sections) */
.feature-card, .service-card, .news-card, .team-member-card, .team-card, .step-box, .info-box {
    background: var(--bg-white);
    border-radius: var(--radius);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.feature-card:hover, .service-card:hover, .news-card:hover, .team-member-card:hover, .team-card:hover, .step-box:hover, .info-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Accordion (Used in Requirements & FAQ pages) */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 12px !important;
    overflow: hidden;
    background: var(--bg-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.accordion-button {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    background-color: var(--bg-light);
    transition: all 0.3s ease;
}
.accordion-button:not(.collapsed) {
    color: #fff;
    background: linear-gradient(90deg, #007bff, #6610f2);
}
.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}
.accordion-body { padding: 20px; background: var(--bg-white); }
.accordion-body ul { list-style-type: disc; padding-left: 20px; }
.accordion-body ul li { margin-bottom: 8px; }

/* Forms (Used in Apply, Contact, Newsletter) */
.form-control, .form-select {
    height: 48px;
    border-radius: 0.3rem;
    border: 1px solid #ced4da;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-control:focus, .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.25rem rgba(255, 126, 0, 0.25);
}


/* --- 3. CORE LAYOUT --- */

/* Header & Navigation */
.main-header .navbar {
    padding: 1rem 0;
    transition: all 0.4s ease;
    z-index: 1030;
}
.navbar-brand .brand-text { font-weight: 700; font-size: 1.2rem; transition: color 0.4s ease; }
.navbar-brand .logo-img { transition: transform 0.4s ease; }
.navbar-brand:hover .logo-img { transform: rotate(-10deg); }
.navbar:not(.scrolled) { background-color: #ff7e00eb !important; }
.navbar:not(.scrolled) .brand-text, .navbar:not(.scrolled) .nav-link { color: #fff !important; }
.navbar:not(.scrolled) .nav-link:hover, .navbar:not(.scrolled) .nav-link.active { background-color: #ffc107; }
.navbar:not(.scrolled) .hamburger-icon span { background: #fff; }

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    padding: 0.5rem 0 !important;
}
.navbar.scrolled .brand-text { color: var(--brand-primary); }
.navbar.scrolled .nav-link { color: var(--text-dark) !important; }
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active { color: var(--brand-primary) !important; }
.navbar.scrolled .hamburger-icon span { background: var(--brand-primary); }

.nav-link {
  font-weight: 500;
  padding: 0.6rem 1.1rem;
  border-radius: 8px;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.navbar .btn-primary { background: var(--brand-gradient); box-shadow: 0 4px 15px rgba(114, 9, 183, 0.4); }
.navbar .btn-primary:hover { box-shadow: 0 8px 25px rgba(114, 9, 183, 0.5); }

/* Mobile Menu & Hamburger */
.navbar-toggler { border: none; padding: 0; outline: none !important; z-index: 1100; }
.hamburger-icon { width: 28px; height: 22px; position: relative; transition: .5s ease-in-out; }
.hamburger-icon span { display: block; position: absolute; height: 3px; width: 100%; border-radius: 9px; left: 0; transition: .25s ease-in-out; }
.hamburger-icon span:nth-child(1) { top: 0px; }
.hamburger-icon span:nth-child(2) { top: 9px; }
.hamburger-icon span:nth-child(3) { top: 18px; }
.hamburger-icon.open span:nth-child(1) { top: 9px; transform: rotate(135deg); background: #fff; }
.hamburger-icon.open span:nth-child(2) { opacity: 0; left: -60px; }
.hamburger-icon.open span:nth-child(3) { top: 9px; transform: rotate(-135deg); background: #fff; }
.mobile-menu-sidebar {
    position: fixed; top: 0; right: -320px; width: 320px; height: 100%;
    background: linear-gradient(180deg, #ff7e00 0%, #1a202c 89%);
    z-index: 1050; transition: right 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    display: flex; flex-direction: column; padding: 25px;
}
.mobile-menu-sidebar.open {
  right: 0;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
}
.mobile-nav { list-style: none; padding: 25px 0; margin: 0; }
.mobile-nav li a { color: rgba(255,255,255,0.7); font-size: 1.3rem; padding: 15px 10px; display: block; border-radius: 8px; }
.mobile-nav li a:hover { background-color: rgba(255,255,255,0.05); color: #fff; }
.overlay {
    position: fixed; inset: 0; background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
    z-index: 1040; opacity: 0; visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.overlay.open { opacity: 1; visibility: visible; }


/* Footer */
.site-footer {
    background-color: var(--footer-bg); color: #a0aec0;
    font-size: 0.9rem; padding: 50px 0 24px;
}
.site-footer .footer-heading { color: #fff; font-weight: 600; margin-bottom: 1.5rem; position: relative; }
.site-footer .footer-heading::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 40px; height: 2px; background: var(--brand-gradient); }
.site-footer a { color: #a0aec0; }
.site-footer a:hover { color: #fff; transform: translateX(5px); }
.site-footer .footer-links a { display: inline-block; padding: 5px 0; }
.site-footer .footer-contact i { color: var(--brand-primary); width: 20px; }
#newsletterForm .form-control { background-color: #2d3748; border: 1px solid #4a5568; color: #fff; border-radius: 8px 0 0 8px; }
#newsletterForm .btn-primary { border-radius: 0 8px 8px 0; }
.social-icons .social-link {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%; background-color: #2d3748;
    color: #a0aec0; margin-right: 10px;
}
.social-icons .social-link:hover { background: var(--brand-primary); color: #fff; transform: none; }
.footer-divider { border-color: #2d3748; }


/* --- 4. HOMEPAGE SECTIONS (index.html) --- */
.about-short { padding: 48px 0; }
.about-short .agency-icon {
  max-width: 220px;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.15));
  transition: transform .3s ease;
}
.about-short .agency-icon:hover {
  transform: scale(1.05);
}
.features-benefits { padding: 48px 0; background-color: var(--bg-white); }
.feature-card {
  border: 1px solid #dc3545;
  border-radius: 16px;
  transition: all 0.3s ease;
  background: #fff;
  padding: 25px;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.feature-icon { font-size: 36px; color: var(--primary); margin-bottom: 10px; }

.animated-counters {
  background: #f9fafc;
}
.counter-box {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.counter-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
.counter {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary, #0b63ff);
}
.counter-box p {
  font-weight: 500;
}
.coverage-map {
  background: #f9fafc;
}
.map-placeholder {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.map-placeholder:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.coverage-map .btn-primary {
  background: linear-gradient(90deg, #0b63ff, #ff7a00);
  border: none;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s ease;
}
.coverage-map .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(11,99,255,0.3);
}
.partner-logos { padding: 40px 0; }
.partner-logos img { max-height: 72px; filter: grayscale(100%); opacity: 0.7; transition: all 0.3s ease; }
.partner-logos img:hover { filter: grayscale(0%); opacity: 1; }

/* ==============================
   🔔 Latest Announcements
============================== */
.latest-announcements {
  background: #f8faff;
  color: #0b2548;
}

.latest-announcements .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0b2548;
}

.latest-announcements p {
  font-size: 1.05rem;
}

.latest-announcements .carousel-inner {
  padding: 20px 0;
}

.latest-announcements .carousel-item p {
  background: #fff;
  border-radius: 10px;
  padding: 16px 24px;
  display: inline-block;
  box-shadow: 0 4px 18px rgba(11, 99, 255, 0.08);
  transition: all 0.4s ease;
}

.latest-announcements .carousel-item p:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(11, 99, 255, 0.15);
}

/* Carousel Controls */
.latest-announcements .carousel-control-prev-icon,
.latest-announcements .carousel-control-next-icon {
  background-color: #0b63ff;
  border-radius: 50%;
  padding: 10px;
}

/* ==============================
   🤝 Partners Section
============================== */
.partner-logos {
  background: #fff;
  overflow: hidden;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.partner-logos .section-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #0b2548;
  margin-bottom: 0.5rem;
}

.partner-logos p {
  font-size: 1.05rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* --- Partner Logos Layout --- */
.partner-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6rem; /* More elegant breathing space on desktop */
}

.partner-logo {
  height: 70px;
  filter: grayscale(100%) brightness(0.9);
  opacity: 0.75;
  transition: all 0.4s ease;
  transform: translateY(0);
}

.partner-logo:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.08) translateY(-3px);
}

/* --- Carousel Controls --- */
.partner-logos .carousel-control-prev-icon,
.partner-logos .carousel-control-next-icon {
  background-color: #0b63ff;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.partner-logos .carousel-control-prev-icon:hover,
.partner-logos .carousel-control-next-icon:hover {
  background-color: #0847c2;
  transform: scale(1.05);
}

/* ==============================
   🔁 Responsive Layout
============================== */

/* 🖥️ Desktop: Wider gaps for visual balance */
@media (min-width: 1200px) {
  .partner-slide {
    gap: 7rem;
  }
}

/* 💻 Tablet: 2 logos per row, tighter spacing */
@media (max-width: 991px) and (min-width: 576px) {
  .partner-slide {
    gap: 3rem;
  }
  .partner-logo {
    flex: 0 0 42%;
    height: 65px;
  }
}

/* 📱 Mobile: Single logo focus, elegant spacing */
@media (max-width: 575px) {
  .partner-slide {
    flex-direction: column;
    gap: 2.2rem;
  }
  .partner-logo {
    height: 58px;
  }
}

/* Small animation when carousel slides */
.carousel-item {
  transition: transform 0.8s ease, opacity 0.6s ease-in-out;
}

/* ==============================
   🚀 CTA Section
============================== */
.cta-section {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
}

/* Dark gradient overlay (to slightly hide the image) */
.cta-section .cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
}

.cta-section p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.btn-cta {
  background: #fff;
  color: #0b63ff !important;
  border: none;
  border-radius: 50px;
  padding: 0.9rem 2.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: #ff7a00;
  color: #fff !important;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.35);
}

/* Responsive */
@media (max-width: 768px ) {
  .cta-section h2 {
    font-size: 1.6rem;
  }
  .cta-section p {
    font-size: 1rem;
  }
}

/* ==============================
   💬 Helpdesk Section
============================== */
.helpdesk {
  background: #ffffff;
  text-align: center;
}

.helpdesk .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0b2548;
}

.helpdesk p {
  font-size: 1.05rem;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.helpdesk .btn-primary {
  background: linear-gradient(90deg, #0b63ff, #ff7a00);
  border: none;
  border-radius: 50px;
  padding: 0.9rem 2.2rem;
  font-weight: 600;
  transition: 0.3s ease;
}

.helpdesk .btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(11, 99, 255, 0.25);
}

/* ==============================
   📱 Responsive
============================== */
@media (max-width: 768px) {
  .latest-announcements .section-title,
  .partner-logos .section-title,
  .cta-section h2,
  .helpdesk .section-title {
    font-size: 1.6rem;
  }

  .partner-logo {
    height: 55px;
  }

  .cta-section p {
    font-size: 1rem;
  }
}



/* --- 5. INNER PAGE SECTIONS --- */
/* ===========================================
   ✅ About Page Styles (about.css)
   For: about.html
=========================================== */

/* ---------- Timeline Section ---------- */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: var(--accent, #007bff);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: #fff;
  border: 4px solid var(--text-dark, #333);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item.left { left: 0; }
.timeline-item.right { left: 50%; }
.timeline-item.right::after { left: -16px; }

.timeline-content {
  padding: 20px 30px;
  background-color: var(--bg-light, #f9f9f9);
  position: relative;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ---------- Team Section ---------- */
.team-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.team-card img {
  border: 3px solid var(--accent, #007bff);
  object-fit: cover;
}

/* ---------- Awards Section ---------- */
.awards-section img,
.awards img {
  transition: transform 0.3s ease;
}

.awards-section img:hover,
.awards img:hover {
  transform: scale(1.05);
}

/* ---------- Responsive Design ---------- */
@media screen and (max-width: 768px) {
  .timeline::after {
    left: 31px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-item::after {
    left: 15px;
  }

  .timeline-item.right {
    left: 0;
  }
}

/* ---------- Extra Small Devices ---------- */
@media screen and (max-width: 480px) {
  .timeline-content {
    padding: 15px 20px;
  }

  .team-card img {
    width: 120px;
    height: 120px;
  }
}


/* ================================
   🌟 SERVICES PAGE STYLING (FINAL)
================================ */
.service-hero {
  position: relative;
  min-height: 55vh;
  color: #fff;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.service-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 10%, rgba(0,0,0,0.7) 90%);
}
.service-hero h1 {
  font-size: 2.8rem;
}
.service-hero p {
  font-size: 1.1rem;
}

/* --- SERVICE CARDS --- */
.service-card {
  border-radius: 1rem;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.service-card .icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card .btn-outline-primary,
.service-card .btn-outline-success,
.service-card .btn-outline-warning {
  font-weight: 500;
  transition: all 0.3s ease;
}
.service-card .btn-outline-primary:hover {
  background-color: var(--accent);
  color: #fff;
}
.service-card .btn-outline-success:hover {
  background-color: #198754;
  color: #fff;
}
.service-card .btn-outline-warning:hover {
  background-color: #ffc107;
  color: #000;
}

/* --- PROCESS SECTION --- */
.process-section {
  background: #f8f9fa;
}
.step-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
.step-number {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-weight: 700;
  font-size: 1.2rem;
}

/* --- BENEFITS SECTION --- */
.benefits-section {
  background: #f0f7ff;
}
.benefits-section i {
  transition: transform 0.3s ease;
}
.benefits-section .p-4:hover i {
  transform: scale(1.15);
}

/* --- CTA SECTION --- */
.cta-section {
  margin-top: 60px;
  border-radius: 16px;
  background: linear-gradient(90deg, #ff7e00, #ffb74d);
  color: #fff;
  box-shadow: 0 8px 30px rgba(255, 126, 0, 0.3);
}
.cta-section .btn-light:hover {
  background-color: #fff !important;
  color: #ff7e00 !important;
  transform: scale(1.05);
  transition: all 0.3s ease;
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 992px) {
  .service-hero {
    min-height: 50vh;
  }
  .service-hero h1 {
    font-size: 2.3rem;
  }
}
@media (max-width: 768px) {
  .step-box,
  .service-card,
  .benefits-section .p-4 {
    margin-bottom: 1rem;
  }
  .cta-section {
    padding: 3rem 1.5rem;
  }
  .cta-section h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 576px) {
  .service-hero h1 {
    font-size: 1.9rem;
  }
  .service-hero p {
    font-size: 0.95rem;
  }
}

/* ===============================
   REQUIREMENTS PAGE STYLING
   =============================== */

/* --- HERO BANNER --- */
.hero-banner {
  position: relative;
  color: #fff;
  text-align: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-banner .hero-overlay {
  background: rgba(0, 0, 0, 0.55);
}

.hero-banner h1 {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hero-banner p {
  font-size: 1.1rem;
  color: #e0e0e0;
}

.hero-banner .btn-warning {
  background-color: #ffc107;
  color: #222;
  border: none;
  transition: all 0.3s ease;
}
.hero-banner .btn-warning:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

/* --- DOCUMENT IMPORTANCE SECTION --- */
.documentation-section {
  background-color: #f9fafb;
  padding: 80px 0;
}

.documentation-section h2 {
  color: #007bff;
  font-weight: 700;
}

.documentation-section p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
}

.documentation-section ul {
  padding-left: 0;
  margin-top: 15px;
}

.documentation-section li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.documentation-section li i {
  color: #28a745;
  font-size: 1.2rem;
  margin-right: 10px;
}

.documentation-section img {
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.documentation-section img:hover {
  transform: scale(1.03);
}
/* === DOCUMENTATION BENEFITS SECTION === */
.documentation-benefits {
  background-color: #f9fafc;
}

.documentation-benefits h2 {
  font-weight: 700;
  color: #007bff;
}

.documentation-benefits .icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.documentation-benefits .icon-circle:hover {
  transform: scale(1.1);
}

.documentation-benefits h5 {
  color: #333;
}

.documentation-benefits p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- DOCUMENT ACCORDION --- */
.accordion-button {
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color: #f0f7ff;
  color: #0d6efd;
  box-shadow: inset 0 -2px 0 #0d6efd;
}

.accordion-body ul {
  padding-left: 1rem;
}

.accordion-body li {
  margin-bottom: 8px;
}


.accordion-button i {
  font-size: 1.2rem;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #dee2e6;
}

.accordion-body {
  background-color: #fdfdfd;
}

.accordion-body ul {
  margin: 0;
  padding-left: 20px;
  list-style-type: disc;
}

.accordion-body li {
  color: #444;
  line-height: 1.8;
}

/* --- TRUST SECTION --- */
section.bg-light.text-center {
  background: #f8f9fa !important;
}

section.bg-light.text-center h3 {
  font-weight: 700;
  color: #007bff;
}

section.bg-light.text-center i {
  color: #007bff;
  transition: transform 0.3s ease;
}

section.bg-light.text-center i:hover {
  transform: scale(1.2);
}
section i {
  transition: transform 0.3s ease, color 0.3s ease;
}

section i:hover {
  transform: scale(1.15);
  color: #6610f2 !important;
}

.btn-light:hover {
  background: #f8f9fa;
  transform: scale(1.05);
}

/* --- CTA SECTION --- */
section.text-center.text-white {
  background: linear-gradient(90deg, #007bff, #6610f2);
  color: #fff;
}

section.text-center.text-white .btn-light {
  color: #007bff;
  font-weight: 600;
  transition: all 0.3s ease;
}

section.text-center.text-white .btn-light:hover {
  background-color: #f8f9fa;
  transform: translateY(-3px);
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 992px) {
  .hero-banner {
    padding: 120px 15px 100px;
  }

  .hero-banner h1 {
    font-size: 2rem;
  }

  .documentation-section {
    padding: 60px 20px;
    text-align: center;
  }

  .documentation-section img {
    margin-bottom: 30px;
  }

  .accordion-button {
    font-size: 1rem;
  }
}



/* Apply Page (apply.html) */
.apply-section { background: linear-gradient(to bottom, #f0f2f5, var(--bg-white)); padding: 60px 0; }
.apply-form-container { background-color: var(--bg-white); padding: 30px; border-radius: 1.5rem; }
.form-legend { font-size: 1.5rem; color: var(--text-dark); padding-bottom: 10px; border-bottom: 2px solid var(--accent); margin-bottom: 20px; text-align: center; }
.info-box i { color: var(--primary); }

/* Status Page (status.html) */
.status-checker-container .form-control-lg { height: calc(1.5em + 1rem + 2px); font-size: 1.1rem; }
.badge { padding: 0.6em 0.9em; font-weight: 600; letter-spacing: 0.5px; color: white; }
.status-approved { background-color: #28a745 !important; }
.status-pending { background-color: #ffc107 !important; color: black; }
.status-rejected { background-color: #dc3545 !important; }
.status-hold { background-color: #17a2b8 !important; }

/* FAQ Page (faq.html) */
.faq-accordion .accordion-item { border: none; border-bottom: 1px solid #dee2e6; border-radius: 0 !important; box-shadow: none; }
.faq-accordion .accordion-button { background-color: transparent; padding: 1.5rem 1.25rem; }
.faq-accordion .accordion-button:not(.collapsed) { color: var(--primary); background-color: var(--bg-light); box-shadow: inset 0 -1px 0 #dee2e6; }
.faq-accordion .accordion-button:focus { box-shadow: none; }
.faq-accordion .accordion-button::after { content: ""; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2Z'/%3e%3c/svg%3e"); transition: transform 0.2s ease-in-out; }
.faq-accordion .accordion-button:not(.collapsed)::after { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d6efd'%3e%3cpath fill-rule='evenodd' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8Z'/%3e%3c/svg%3e"); }

/* News Page (news.html) */
.news-card { border-left: 5px solid var(--accent); }
.news-card .card-title a { color: var(--text-dark); }
.news-card .card-title a:hover { color: var(--accent); }
.pagination .page-item.active .page-link { background-color: var(--primary); border-color: var(--primary); }
.pagination .page-link { color: var(--primary); }

/* Contact Page (contact.html) */
.map-container {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}




/* --- 6. UTILITIES & ANIMATIONS --- */
.text-muted { color: var(--text-muted) !important; }
.small { font-size: 0.85rem; }
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.is-visible { opacity: 1; transform: translateY(0); }
.animate__animated { visibility: hidden; }
.animate__animated.animate__fadeInUp,
.animate__animated.animate__fadeInDown { visibility: visible; }
.animate__animated.animate__pulse.animate__infinite { animation-duration: 2s; }


/* --- 7. RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 991.98px) {
    .site-footer .col-lg-3, .site-footer .col-lg-2, .site-footer .col-lg-4 { text-align: center; margin-bottom: 30px; }
    .site-footer .footer-heading::after { left: 50%; margin-left: -20px; }
    .social-icons { justify-content: center !important; }
}

@media (max-width: 767.98px) {
    .hero { height: 50vh; min-height: 450px; }
    .hero-title { font-size: 1.7rem; }
    .hero-subtext { font-size: 1rem; }
    .hero .btn, .hero .btn-primary, .hero .btn-outline-light { display: block; width: 90%; margin: 10px auto; }
    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; left: 0 !important; }
    .timeline-item::after { left: 15px !important; right: auto !important; }
    .service-hero h1 { font-size: 2rem; }
    .apply-section .btn-lg { width: 100%; }
}

@media (min-width: 768px) {
    .hero { min-height: 86vh; }
    .hero-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
    .hero-title { font-size: 2.6rem; }
}