/* =========================================================
   GLOBAL RESET & BASE STYLES
========================================================= */
  * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      overflow-x: hidden;
      padding-top: 85px;
    }
  section {
  overflow-x: hidden !important;
  overflow-y: hidden !important;
}
/* =======================margin */
.mt-5 {
  margin-top: 5.3rem !important;
}
/* ---------------------------------- */
/* ROOT VARIABLES                     */
/* ---------------------------------- */

:root {
  --primary-orange: #D15433 !important;
  --primary-orange-dark: #B24628 !important;

  --accent-yellow: #F5EB3D !important;
  --accent-yellow-dark: #E0D63C !important;

  --dark: #1E3333 !important;
  --text-dark: #475C59 !important;

  --gray-light: #ABB8BA !important;
  --gray-soft: #CAD1D1 !important;

  --white: #FFFFFF !important;
  --section-light: #F7F7F7 !important;
}
/* utilty class for bootstrap  */
.text-primary-orange {
  color: var(--primary-orange) !important;
}
/* =========================================================
   FONT SETUP (Roboto + Roboto Slab)
========================================================= */

/* --- Font Variables --- */
:root {
  --font-body: "Roboto", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-heading: "Roboto Slab", "Georgia", "Times New Roman", serif;
  --font-fallback: "Roboto", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  /* Font sizing scale */
  --fs-base: 16px;
  --fs-xs: 0.75rem;   /* 12px */
  --fs-sm: 0.875rem;  /* 14px */
  --fs-md: 1rem;      /* 16px */
  --fs-lg: 1.125rem;  /* 18px */
  --fs-xl: 1.5rem;    /* 24px */
  --fs-xxl: 2rem;     /* 32px */
  --fs-xxxl: 3rem;    /* 48px */
}
/* --- Body & Paragraphs --- */
body,
p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-md);
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

/* --- Headings --- */
h1 {
  font-family: var(--font-heading) ;
  font-weight: 700;
  font-size: var(--fs-xxxl);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-xxl);
  line-height: 1.25;
  margin-bottom: 1rem;
}

h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-xl);
  line-height: 1.3;
  margin-bottom: 1rem;
}

h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-lg);
  line-height: 1.35;
  margin-bottom: 1rem;
}

h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-md);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-sm);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
/* =========================================================
   NAVBAR STYLING
========================================================= */
header {
  position: relative;
  z-index: 1100;
}

/* ==================== NAVBAR ==================== */
.navbar {
  background: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  z-index: 1105;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #000 !important;
  padding: 0.75rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #D15433 !important;
}

.dropdown-menu {
  border-radius: 8px;
  border: none;
  margin-top: 0.4rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  z-index: 1200;
}

.dropdown-item {
  font-weight: 500;
}

.dropdown-item:hover {
  color: #fff;
  background-color: #D15433;
}

/* Soft highlight on desktop active */
.nav-link.active-menu,
.dropdown-item.active-menu {
  background: rgba(255, 255, 255, 0.07);
  color: #D15433;
  border-radius: 6px;
}

/* ================= Desktop Hover Dropdown ================= */
@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  .navbar .dropdown-toggle::after {
    transition: transform 0.2s ease;
  }
  .navbar .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

/* ================= MOBILE SIDEBAR ================= */
@media (max-width: 991px) {

  /* ================= MOBILE FIX YOU WANT ================= */
  /* No background on hover/click/active — ONLY color changes */
  
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:active,
  .navbar-nav .nav-link.active,
  .dropdown-item:hover,
  .dropdown-item:active,
  .dropdown-item.active,
  .dropdown-item.active-menu,
  .nav-link.active-menu {
    background: none !important;     /* REMOVE BACKGROUND */
    color: #D15433 !important;        /* ONLY FONT COLOR CHANGE */
  }

  /* Prevent unwanted background from dropdown */
  .offcanvas-nav .dropdown-item:hover,
  .offcanvas-nav .dropdown-item:active {
    background: none !important;
    color: #D15433 !important;
  }

  .navbar-collapse {
    display: none !important;
  }

  .navbar-toggler {
    border: none;
    background: transparent;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .hide-when-menu-open {
    display: none !important;
  }

  .offcanvas-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 1040;
  }

  .offcanvas-overlay.show {
    opacity: 1;
    pointer-events: auto;
  }

  .offcanvas-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    max-width: 350px;
    height: 100vh;
    background: #111827;
    color: #fff;
    z-index: 1050;
    padding: 1.2rem;
    transition: left 0.35s ease;
    overflow-y: auto;
  }

  .offcanvas-nav.active {
    left: 0;
  }

  .offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
  }

  .offcanvas-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
  }

  .offcanvas-nav .navbar-nav > li {
    width: 100% !important;
    display: block !important;
  }

  .offcanvas-nav .nav-link,
  .offcanvas-nav .dropdown-item,
  .offcanvas-nav .dropdown-toggle {
    color: #fff !important;
    display: block !important;
    width: 100% !important;
    padding: 14px 0 !important;
    font-size: 1.07rem;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.25);
    white-space: normal !important;
    word-break: break-word;
    line-height: 1.4;
  }

  /* disable background on active in mobile sidebar */
  .offcanvas-nav .nav-link.active-menu,
  .offcanvas-nav .dropdown-item.active-menu {
    background: none !important;
    color: #D15433 !important;
  }

  .offcanvas-nav .dropdown-menu {
    background: transparent !important;
    border: none;
    padding-left: 0.8rem;
    margin-top: 0;
  }

  .offcanvas-footer {
    color: #ddd;
    text-align: center;
    margin-top: 1.3rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}

/* Hide mobile menu on desktop */
@media (min-width: 992px) {
  .offcanvas-nav,
  .offcanvas-overlay {
    display: none !important;
  }
}

/* =========================================================
   OVERFLOW FIX
========================================================= */
/* 
header,
.navbar,
.navbar-collapse,
.navbar-nav,
.dropdown-menu {
  overflow: visible !important;
} */

/* =========================================================
   CARD & IMAGE STYLING
========================================================= */

/* --- Card Hover Effect --- */
.card {
  transition: all 0.3s ease-in-out;
}

.card:hover {
  transform: scale(1.04);

}

/* --- Card Image Fix (Uniform Height) --- */
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* --- Hover Shadow Lift --- */
.hover-shadow {
  transition: all 0.3s ease;
}

.hover-shadow:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.15);
}

/* =========================================================
   FOOTER STYLING
========================================================= */
footer a.text-white {
  font-weight: 500;
}

footer a.text-white:hover {
  color: #d15433 !important;
  text-decoration: underline;
  transition: all 0.3s ease;
}

footer .btn-outline-warning:hover {
  background-color: #ffc107;
  color: #212529;
  transition: all 0.3s ease;
}

/* =========================================================
   PAGE-WIDE OVERFLOW FIXES
========================================================= */


  /* ================= home_page HERO SECTION ================================================================== */
#hero {
  position: relative;
  height: 95vh;      /* FIXED full screen */
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
}


  /* Background Dots Animation */
  #network {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }

  /* Content Above Background Animation */
  .my-content {
    position: relative;
    z-index: 5;
    color: white;
  }

  /* Left Text Alignment */
  .hero-left {
    text-align: left !important;
  }

  /* Image Glow Effect */
  .hero-image-shadow {
    max-height: 450px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(255,255,255,0.45));
  }
   .rounded-bottom-custom {
  border-bottom-left-radius: 10px !important;
  border-bottom-right-radius: 300px !important;
}
  
  /* ===========================home_page hero section end ================================== */

  
  /* ===========================Service page card section start ================================== */

  .card-img-top {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .card-img-top {
    height: 180px;
  }
}

.card {
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 1rem;
  transition: all 0.4s ease;
  background-color: #fff;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
}

.card-img-top {
  transition: transform 0.5s ease-in-out;
}

.card:hover .card-img-top {
  transform: scale(1.08);
}

.card-title {
  transition: color 0.3s ease;
}

.card:hover .card-title {
  color: #D15433;
}

/* ====== FIXED SPACING FOR ALL CARDS ====== */
.web-card-body {
  padding-bottom: 40px !important;
}

  /* ===========================Service page card section end ================================== */
/* <!-- ========== OUR PARTNERS Start SECTION ========== --> */

.partner-card {
  width: 230px;
  border-radius: 1.5rem;
  padding: 2.3rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.partner-logo {
  max-height: 60px;
  object-fit: contain;
}

.carousel-control-prev,
.carousel-control-next {
  width: 6%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: none !important;
}

.carousel-btn {
  font-size: 20px;
  color: #d15433;
  transition: 0.3s ease-in-out;
}

.carousel-btn:hover {
  transform: scale(1.05);
}

/* Spacing from carousel */
.carousel-control-prev {
  left: -60px;
}

.carousel-control-next {
  right: -60px;
}

/* Fade animation for carousel */
.carousel.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.carousel.carousel-fade .carousel-item.active {
  opacity: 1;
  transition: opacity 0.8s ease-in-out;
}

/* =========================
      Responsive
========================= */
@media (max-width: 768px) {
  .partner-card {
    width: 180px;
    padding: 1.8rem 0.8rem;
  }

  .carousel-control-prev {
    left: -20px;
  }

  .carousel-control-next {
    right: -20px;
  }

  .carousel-btn {
    padding: 12px;
    font-size: 16px;
  }
}

/* Extra small devices (fix buttons perfectly) */
@media (max-width: 576px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;          /* Smaller click area */
  }

  .carousel-control-prev {
    left: -10px;          /* Fit perfectly on screen */
  }

  .carousel-control-next {
    right: -10px;
  }

  .carousel-btn {
    padding: 8px;         /* Compact circle */
    font-size: 14px;      /* Smaller icon */
  }
}
  /* <!-- ========== OUR PARTNERS SECTION  ENDA========== --> */

   .social-media-button{
    border-color: #d15433;
    color: #d15433;
   }
    .social-media-button :hover{
    background: #d15433;
    color: #fff;
   }