
body {
    margin: 0;
    padding-top: 70px; /* top-bar (60px) + navbar (60px) */
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}
/* =========================
   Navbar Styles
   ========================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, white 50%, rgb(255, 60, 0) 50%);
    padding: 0px 10px;   /* reduced top/bottom padding */
    min-height: 15px;    /* reduced min-height */
    display: flex;
    align-items: center;
    z-index: 1001;
    margin: 0;
    transition: all 0.3s ease;
}

/* Navbar brand */
.navbar-brand {
    color: white;
    font-weight: bold;
}

.navbar-brand img {
     height: clamp(35px, 5vw, 70px);
    width: 100px;
    display: block;
}

/* Navbar links */
.navbar-nav {
    display: flex;
    gap: 20px;
    margin-left: auto;
}

.navbar-nav .nav-link {
   font-size: 14px;    /* smaller text */
    line-height: 1;     /* reduce extra space */
    padding: 0 10px;
    color: white;
    font-weight: bold;
}

.navbar-nav .nav-link:hover {
    color: #ffcc00 !important;
}

/* Toggle button for mobile */
.navbar-toggler {
    border: none;
    color: white;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* =========================
   Responsive Adjustments
   ========================= */
@media (max-width: 991px) {

    body {
        padding-top: 65px;
    }

    .navbar {
        padding: 5px 10px;
    }

    .navbar-brand img {
        height: 45px;
    }

    /* Navbar collapse background & animation */
    .navbar-collapse {
        background-color: rgb(255, 60, 0);      /* Mobile dropdown background */
        padding: 10px 0;
        transition: all 0.3s ease;
    }

    /* Mobile links color */
    .navbar-collapse .nav-link {
        color: white !important;
        font-weight: bold;
    }

    /* Hover effect for mobile links */
    .navbar-collapse .nav-link:hover {
        color: #ffcc00 !important;
    }

    /* Mobile nav layout */
    .navbar-nav {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .navbar-nav .nav-link {
        padding: 8px 0;
    }
}
/* Banner */
.banner-container {
  position: relative;
  width: 100%;
  height: 90vh; /* responsive height */
  overflow: hidden;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomEffect 8s ease-out infinite;
  will-change: transform;
}

@keyframes zoomEffect {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

/* =========================
   Banner Container & Image
   ========================= */
.banner-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 600px;           /* adjust as needed */
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.banner-container:hover .banner-img {
    transform: scale(1.05);  /* subtle zoom on hover */
}

/* =========================
   Overlay for readability
   ========================= */
.banner-container::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; 
    height: 100%;
    z-index: 1;
}

/* =========================
   Banner Content
   ========================= */
.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    max-width: 1200px;
}

.banner-content h2 {
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: clamp(24px, 4vw, 42px);
    line-height: 1.2;
    margin-bottom: 20px;
}

/* =========================
   Track Card
   ========================= */
.track-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.track-card .track {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Tab Buttons */
.tab-header {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

/* Default tab button */
.tab-btn {
    flex: 1;
    padding: 8px 12px;
    border: none;
    /* background-color: gray;  */
    color: black;
    cursor: pointer;
    border-radius: 6px 6px 0 0; /* round top corners only */
    transition: background-color 0.3s, border-top 0.3s;
}

/* Active tab */
.tab-btn.active {
    /* background-color: gray;  */
    border-top: 3px solid rgb(255, 60, 0); /* navy top border */
    border-radius: 6px 6px 0 0; /* keep top corners rounded */
}

/* Tab Content Inputs & Buttons */
.tab-content input.form-control {
    padding: 10px;
    font-size: 0.9rem;
}

.track-btn {
    background-color: rgb(255, 60, 0);
    color: white;
    padding: 10px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    margin-top: 5px;
    width: 100%;
    transition: background-color 0.3s;
}

.track-btn:hover {
    background-color: #000f3a;
}

/* Hide inactive tabs */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* =========================
   Responsive Adjustments
   ========================= */
@media (max-width: 991px) {
    .banner-img {
        height: 500px;
    }

    .banner-content h2 {
        font-size: clamp(20px, 5vw, 36px);
        text-align: center;
        margin-bottom: 15px;
    }

    .track-card {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .banner-img {
        height: 400px;
    }
}

/* General Card Styling */
section .card {
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  background: white;
}

/* Card Hover Effect */
section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Icon Styling */
section .card i {
  color: rgb(255, 60, 0);
}

/* Card Titles */
section .card h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Card Paragraph */
section .card p {
  font-size: 14px;
  color: #555;
}


section .row {
  justify-content: center; 
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  section .card {
    margin: 10px 0;
    padding: 15px;
  }

  section .card p {
    font-size: 13px;
  }

  section .card h4 {
    font-size: 16px;
  }

  section .card i {
    font-size: 1.5rem;
  }
}

/* Extra Small Screens */
@media (max-width: 480px) {
  section .card {
    padding: 10px;
  }

  section .card h4 {
    font-size: 14px;
  }

  section .card p {
    font-size: 12px;
  }

  section .card i {
    font-size: 1.3rem;
  }
}


/* Footer Base */
.footer {
  background: rgb(255, 60, 0);
  color: #fff;
  padding: 40px 0;
  margin-top: 3%;
}

/* Logo Section */
.footer .logo img {
  width: 120px;
  margin-bottom: 10px;
  border-radius: 5px;
}

.footer h2 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #fff;
}

/* Paragraph */
.footer p {
  font-size: 12px;
  line-height: 1.3;
  color: white;
  font-weight: bold;
}

/* Links */
.footer .heading {
  font-size: 14px;
  margin-bottom: 1px;
}

.footer .heading span {
  color:white;
  margin-right: 5px;
}

.footer .heading a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.footer .heading a:hover {
  color:white;
  padding-left: 5px;
}

/* Icons */
.footer i {
  margin-right: 8px;
  color:whitesmoke;
  font-weight: bold;
}

/* Spacing between columns */
.footer .col-12 {
  margin-bottom: 10px;
}
#footer .copyright {
  text-align: center;
  padding-top: 2px;
}

#footer .credits {
  padding-top: 1px;
  text-align: center;
  font-size: 13px;
  color:white;
}
/* Tablet */
@media (max-width: 992px) {
  .footer {
    text-align: center;
  }

  .footer .logo img {
    margin: auto;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .footer {
    padding: 30px 15px;
  }

  .footer h2 {
    font-size: 18px;
  }

  .footer p,
  .footer .heading {
    font-size: 13px;
  }
}



.banner-small-container {
    width: 100%;
    overflow: hidden; 
    position: relative;
}

.banner-img-small {
    width: 100%;
    height: 400px; 
    object-fit: cover; 
    display: block;
    animation: zoomEffect 8s ease-out infinite;
    will-change: transform;
}

.banner-text {
    position: absolute;
    top: 50%;  /* vertically center */
    left: 50%; /* horizontally center */
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
      background-color: rgba(0, 0, 0, 0.5); /* 50% opacity */
    padding: 20px 40px; /* spacing around text */
    border-radius: 10px;
}

.banner-text h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.banner-text p {
    font-size: 1.2rem;
}

@keyframes zoomEffect {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}


/* About Hero Section */
.about-hero {
    position: relative;
      height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.about-hero .hero-content {
    position: relative;
    z-index: 1;
}
.about-hero h1 {
    font-size: 3rem;
    font-weight: bold;
}
.about-hero p {
    font-size: 1.2rem;
}

/* =========================
   Two Column Section
========================= */
.about-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 60px 20px;
    gap: 40px;
}
.about-section img {
    flex: 1;
    max-width: 500px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.about-section .about-text {
    flex: 1;
}
.about-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: rgb(255, 60, 0);
}
.about-section p {
    font-size: 1rem;
}

/* =========================
   Statistics / Highlights
========================= */
.stats-section {
    background-color: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
}
.stats-section .stat {
    display: inline-block;
    width: 180px;
    margin: 20px;
}
.stats-section .stat h3 {
    font-size: 2.5rem;
    color: rgb(255, 60, 0);
    margin-bottom: 10px;
}
.stats-section .stat p {
    font-size: 1rem;
}

/* =========================
   Vision / Team Section
========================= */
.vision-section {
    padding: 60px 20px;
    text-align: center;
}
.vision-section h2 {
    font-size: 2rem;
    color: rgb(255, 60, 0);
    margin-bottom: 30px;
}
.vision-section p {
    max-width: 800px;
    margin: auto;
    font-size: 1.1rem;
}

/* =========================
   CTA Section
========================= */
.cta-section {
    background-color: rgb(255, 60, 0);
    color: white;
    padding: 50px 20px;
    text-align: center;
}
.cta-section a {
    display: inline-block;
    background-color: #ffcc00;
    color: rgb(255, 60, 0);
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    transition: transform 0.3s, background-color 0.3s;
}
.cta-section a:hover {
    background-color: #e6b800;
    transform: scale(1.05);
}

/* =========================
   Responsive Adjustments
========================= */
@media (max-width: 991px) {
    .about-section {
        flex-direction: column;
        padding: 40px 15px;
    }
    .about-hero h1 {
        font-size: 2.2rem;
    }
    .about-hero p {
        font-size: 1rem;
    }
}


/* Network Page Styles */
   .network-banner {
      position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    }

    .network-banner h1 {
      font-size: 2.5rem;
      margin-bottom: 15px;
    }

    .network-banner p {
      font-size: 1.2rem;
    } 

    /* Coverage Cards */
    .coverage-card {
      transition: transform 0.3s, box-shadow 0.3s;
      cursor: default;
    }

    .coverage-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    /* Partner Hubs */
    .hub-icon {
      font-size: 2.5rem;
      color: rgb(255, 60, 0);
      margin-bottom: 15px;
    }

    /* CTA Button */
    .cta-section {
      text-align: center;
      padding: 50px 20px;
    }

    .cta-section .btn {
      background-color: navy;
      color: white;
      padding: 12px 30px;
      font-size: 1.1rem;
      border-radius: 5px;
      transition: background-color 0.3s;
    }

    .cta-section .btn:hover {
      background-color: #b71c1c;
    }



/* FAQ Page Styles */

.faq-banner {
  background-color: #eee9e9; /* light grey background */
  padding: 20px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-family: Arial, sans-serif;
  border-bottom: 1px solid #ddd;
  margin-top: 1%;
}

.faq-banner .heading {
  font-size: 0.95rem;
  color: #555; /* dark grey text */
  display: flex;
    gap: 20px;
  align-items: center;
  text-transform: capitalize;
}

.faq-banner .heading a {
  text-decoration: none;
  color: gray; /* red link */
  transition: color 0.3s;
}

.faq-banner .heading a:hover {
  color: navy; /* darker red on hover */
}

.faq-banner .heading span {
  margin: 0 5px;
  color: #999; /* separator color */
}

/* ---------------------------
   FAQ Section
--------------------------- */
.faq-section {
  padding: 50px 20px;
  font-family: Arial, sans-serif;
}

.faq-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

/* FAQ Icons */
.faq-icon {
  color: navy;
  margin-right: 10px;
}

/* Accordion Buttons */
.accordion-button {
  font-size: 1rem;
  color: #333;
  background-color: #fff;
  padding: 1rem 1.25rem;
  transition: background-color 0.3s, color 0.3s;
}

.accordion-button:hover {
  background-color: #f5f5f5;
}

.accordion-button:focus {
  box-shadow: none;
}

/* Accordion Body */
.accordion-body {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  background-color: #fafafa;
}

/* ---------------------------
   Responsive Styles
--------------------------- */
@media (max-width: 576px) {
  .faq-banner {
    padding: 10px 15px;
  }

  .faq-banner .heading {
    font-size: 0.85rem;
  }

  .faq-section h2 {
    font-size: 1.5rem;
  }

  .accordion-button {
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
  }

  .accordion-body {
    font-size: 0.9rem;
  }
}