/* Regular */
@font-face {
  font-family: 'Ivar Display';
  src: url('/public/assets/fonts/Ivar Display fonts/IvarDisplay-Regular.woff2') format('woff2'),
    url('/assets/fonts/Ivar Display fonts/IvarDisplay-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Bold */
@font-face {
  font-family: 'Ivar Display';
  src: url('/public/assets/fonts/Ivar Display fonts/IvarDisplay-Bold.woff2') format('woff2'),
    url('/assets/fonts/Ivar Display fonts/IvarDisplay-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

:root {
    /* Font Families */
    --font-primary: "Figtree", sans-serif !important;
    --font-secondary: 'Calibri', sans-serif !important;

    /* Headings Font Sizes */
    --h1-size: 55px;
    --h2-size: 38px;
    --h3-size: 32px;
    --h4-size: 26px;
   

    /* Subheading */
    --subheading-size: 24px;
    --subheading-font-weight: 600 ;

    /* Description / Paragraphs */
    --description-size: 20px;
    --description-line-height: 24px;
    --inner-cards-description-size:18px;
    --inner-cards-description-line-height:24px;

   /* subtitles */
     
     --subtitle-size:24px;
     --subtitle-line-height:28px;

    /* Button Text */
    --button-font-size: 20px;
    --button-font-weight: 500;
    --button-line-height: 22px;


   /* Headings Font Weight */
   
    --h1-weight: 600;
    --h2-weight: 600;
    --h3-weight: 500;
    --h4-weight: 600;
   

    /* Headings line Height */

    --h1-line-height: 1.1;
    --h2-line-height: 1.2;
    --h3-line-height: 34px;
    --h4-line-height: 28px;

}

/* Global font settings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Figtree", sans-serif ;
}

body,
p,
li,
span,
a,
button,
input,
textarea {
  font-family: "Calibri", sans-serif;
}



body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}


/* Navbar */
/* Navbar Base */
.navbar {

  padding: 5px 30px;
  /* reduced left/right padding */
  transition: all 0.7s ease;
  /* smooth transitions */
}
.nav-inner-container{
   max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}


/* Ensure container-fluid inside navbar also has reduced padding */
.navbar .container-fluid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-left: 15px;
  padding-right: 20px;
}

/* Navbar when scrolled */
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.75) !important;
  backdrop-filter: blur(9px);
  padding: 0 30px;
  padding-bottom: 20px;
  /* slightly smaller height on scroll */
  transition: all 0.5s ease;
}

/* Logo resize effect */
.navbar .navbar-brand img {
  /* margin-right: -180px; */
  height: 65px;
  transition: transform 0.9s ease;
  /* margin-top: 10px; */
}

.navbar-brand {
  margin-right: -180px;
  z-index: 10;
}

.navbar.scrolled .navbar-brand img {
  height: 55px;
  /* smoother change */

}

.navbar-collapse {
  display: flex;
  position: relative;
  flex-grow: 1;
  align-items: end;
  /* vertical centering */
  justify-content: space-between;


}

/* Nav links container */
.navbar-nav {
  display: flex;
  align-items: end;
  justify-content: center;
  margin: 0 auto;
  gap: 15px;
  /* consistent spacing between links */
  margin: 0;
  /* remove auto margin */
  padding:  0;
  flex-grow: 1;
}

/* Nav links */
.navbar-nav .nav-link {
  padding: 20px 0;
  padding-bottom: 10px;
  padding-top: 35px;
  /* reduce top padding for better vertical alignment */
  font-size: var(--subtitle-size);
line-height:var( --subtitle-line-height);
  font-weight: 300;
  letter-spacing: 0.4px;
  color: #fff !important;
  position: relative;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link.underlineHover::after{
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 0px;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease;
}
.navbar-nav .nav-link.underlineHover:hover::after{
  width: 100%;
  transition: all 0.3s ease;
}
.navbar-nav .nav-link.dropdown-toggle::after{
  margin-left: 0px !important;
  vertical-align: 3px !important;
}

.navbar-nav .nav-link:hover {
  
}


/* Inquire button */
.Inquire_btn {
  margin-left: auto;
  /* push button to far right */
  padding: 8px 15px;
  font-size: var(--button-font-size);
line-height:var( --button-line-height);
  font-weight: var( --button-font-weight);
  text-transform: uppercase;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.35);
  color: #fff;
  backdrop-filter: blur(5px);
  border: none;
  transition: all 0.3s ease;
  position: absolute;
  right: 0;
  top: 60%;
  transform: translateY(-50%);
  white-space: nowrap;
font-family: var(--font-primary);
}

.navbar-collapse .Inquire_btn:hover {
  background: rgba(255, 255, 255, 0.25);
  color: white;

}




/* trusted-section */

.trusted-section {
  max-width: 1600px;
    margin: 0 auto;
    width: 100%;
  text-align: center;
  padding-bottom: 80px;
  background: #fff;
  overflow: hidden;
}

.trusted-section h2 {
  font-size: var(--h2-size);
  font-weight: 600;

  margin-bottom: 50px;
  color: #1c0d45;
font-family: var(--font-primary);

}

.logo-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
  align-items: center;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
  /* Equal space between logos */
}

.logo-item img {
  height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-item img:hover {
  transform: scale(1.1);
}

/* Infinite scrolling animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .logo-item {
    padding: 0 20px;
  }

  .logo-item img {
    height: 40px;
  }
}


.announcement-item .txt{
color: #1d5f94 !important;
   
    font-weight: 600;
font-family: var(--font-primary)!important;
    font-size: 22px !important;
    line-height: 22px !important; 

}


/* ================= FORM SECTION ================= */
.contact-section {

  color: #fff;
  padding: 70px 60px;
  text-align: left;
}
.contact-section-inner-container{
   max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

/* FLEX LAYOUT */
.contact-content {

  margin: 0 auto;
  display: flex;
  align-items: flex-start;

  gap: 20px;
}

.contact-text {
  flex: 1;
}

.contact-text h2 {
  max-width: 500px;

  font-size: 46px;
  font-weight: 600 !important;
  letter-spacing: 1px;
  margin: 20px 0;
  color: white;
font-family:var( --font-primary);

}

.contact-text p {
  margin-bottom: 20px;
  font-size: 22px;
  /* line-height: 1.7; */
  color: white;
font-family:var( --font-secondary);
line-height:22px
}

.contact-text .form-mail-logo {
  width: 80px;
  height: 70px;
  object-fit: contain;
}

.contact-form {


  flex: 1.2;
  /* gives it more space than the left side */
  max-width: 600px;
  /* increase max width */


}

.contact-form .form-heading {
  margin-bottom: 20px;
  font-size: 26px;
  line-height: 28px;
  font-weight: 400;
  color: #fff;
font-family:var( --font-secondary);
}

/* Apply grid only to the fields */
.contact-form form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-form input {

  padding: 10px;
  background-color: transparent;
  border: 1.5px solid white;
  border-radius: 3px;
  color: #fff;
  caret-color: #fff;

}

.contact-form textarea {
  grid-column: span 2;
  resize: none;
  height: 120px;
  padding: 10px;
  background-color: transparent;
  border: 1.5px solid white;
  border-radius: 3px;
  caret-color: #fff;
  color: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a9a5a5;
  font-size: 0.95rem;
  font-weight: 500;
  /* lighter placeholder color */
}

.contact-form input:focus,
.contact-form textarea:focus {

  color: #fff;
  caret-color: #fff;
  outline: none;
}

.contact-form button {
  grid-column: span 2;
  justify-self: start;
  background-color: white;
  /* align button to left */
  border: none;
  padding: 5px 15px;
  text-align: center;
  align-items: center;
  border-radius: 3px;
  font-size: 1.1rem;
  font-weight: 600;

}




/* .contact-form button:hover {
        background: #0d47a1;
        color: #fff;
      } */

/* Footer */
footer {
  background: #eee;
}

/* Top Row */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 20px;
}

.footer-top .col {
  flex: 1 1 300px;

}

.footer-top .footer-text {
  font-size: 18px !important;
  color: #091d3e;
  line-height: 22px;

  width: 350px;
font-family:var( --font-secondary);
}

.footer-top h4 {
  font-size: 2rem;
  color: #091d3e;
  padding-bottom: 30px;
  font-weight: 600;
}

.footer-top .footer-details {
  font-size: 1.1rem;
  color: #091d3e;
  line-height: 1.7;


}

.footer-top ul {
  list-style: none;
  padding: 0;
  columns: 2;
  /* 2-column list */
}

.footer-top ul li {
  margin-bottom: 8px;
}

.footer-top ul li a {
  text-decoration: none;
  color: #091d3e;
  transition: 0.3s;
  font-size: 18px !important;
  line-height: 22px;
font-family:var( --font-secondary);
}

.footer-top h4 {
  color: #091d3e;
  font-size: 1.5rem;
  margin-bottom: 0;
}

.footer-top .link-list {
  text-decoration: none;
  color: #091d3e;
  transition: 0.3s;
  font-size: 1.3rem;
  line-height: 1.7;
  font-weight: 540;
}

.footer-top ul li a:hover {
  color: #091d3e;
}

/* Middle Row */

.footer-middle {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* space out logo, links, social */
  align-items: center;
  gap: 20px;
  /* space between items */
  padding: 20px 40px;
}

.footer-middle img {
  height: 80px;
  flex-shrink: 0;
}

.footer-middle ul {
  display: flex;
  align-items: center;
  gap: 15px;
  /* space between links and separators */
  list-style: none;
  margin-bottom: -50px;

}

.footer-middle ul li {
  display: inline;

}

.footer-middle ul li a {
  text-decoration: none;
  color: #000000;
  font-size: 1rem;
  font-weight: 700;
}

.footer-middle .social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: -50px;
}

.footer-middle .social p {
  margin: 0;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #091d3e;
  font-weight: 500;
}

.footer-middle .social a {
  font-size: 18px;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-middle .social a:hover {
  color: #091d3e;
}

/* Bottom Row */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  font-size: 14px;
  color: white;
  align-items: center;
  padding-top: 10px;
  background: linear-gradient(-10deg, #031126, #082249, #061d39);
}

/* Footer */
footer {

  background: #eee;
}
.footer-inner-container{
   max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

/* Top Row */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 50px;
  padding-bottom: 0px;
}

.footer-top .col {
  /* flex: 1 1 300px; */

}

.footer-top .footer-text {
  font-size: 16px;
  color: #091d3e;
  line-height: 1.7;

  width: 450px;
}

.footer-top h4 {
  font-size: 2rem;
  color: #091d3e;
  padding-bottom: 16px;
  font-weight: 700;
}

.footer-top .footer-details {
  font-size: 16px;
  color: #091d3e;
  line-height: 1.7;
  margin-bottom: 0px !important;


}

.footer-top ul {
  list-style: none;
  padding: 0;
  columns: 2;
  /* 2-column list */
  gap: 100px;
}

.footer-top ul li {
  margin-bottom: 8px;
}

.footer-top ul li a {
  text-decoration: none;
  color: #091d3e;
  transition: 0.3s;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
}

.footer-top h4 {
  color: #091d3e;
  font-size: 1.5rem;
  margin-bottom: 0;
  font-family: "Figtree", sans-serif !important;
}

.footer-top .link-list {
  text-decoration: none;
  color: #091d3e;
  transition: 0.3s;
  font-size: 1.3rem;
  line-height: normal;
  font-weight: 540;
}

.footer-top ul li a:hover {
  color: #091d3e;
}

.footer-contact-details {
  width: 440px;
}

.footer-contact-details .footer-details a span {
    font-family: var(--font-secondary) !important;
    font-size: 18px;
    line-height: 22px;
}

/* Middle Row */

.footer-middle {
     max-width: 1600px;
    margin: 0 auto;
    width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* space out logo, links, social */
  align-items: center;
  gap: 20px;
  /* space between items */
  padding: 0px 50px;
  padding-bottom: 20px;
}

.footer-middle img {
  height: 62px;
  flex-shrink: 0;
}

.footer-middle ul {
  display: flex;
  align-items: center;
  gap: 15px;
  /* space between links and separators */
  list-style: none;
  margin-bottom: -50px;
  margin-left: 00px;
  padding-left: 0px;

}

.footer-middle ul li {
  display: inline;

}

.footer-middle ul li a {
  text-decoration: underline;
  color: #000000;
 
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
    font-family: var(--font-secondary) !important;
    font-size: 18px;
    line-height: 22px;
}

.footer-middle .social {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: -50px;
}

.footer-middle .social p {
  margin: 0;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #091d3e;
  font-weight: 500;
}

.footer-middle .social a {
  font-size: 28px;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-middle .social a:hover {
  color: #091d3e;
}

.social h4 {
  font-size: 18px;
  font-family: var(--font-secondary) !important;
  margin-bottom: 0px;
  margin-top: 6px;
line-height: 22px;
}

.social-icons {
  width: 30px;
  height: 30px !important;
}

/* Bottom Row */
.footer-bottom {
padding: 0 50px;
  background: linear-gradient(-10deg, #031126, #082249, #061d39);
}
.footer-bottom-inner-container{
     max-width: 1600px;
    margin: 0 auto;
    width: 100%;
  display: flex;
  justify-content: space-between;
  /* padding: 0 50px; */
  font-size: 14px;
  color: white;
  align-items: center;
  padding-top: 10px;
}

.footer-bottom a, .footer-bottom p {
    font-family: var(--font-secondary) !important;
    font-size: 18px;
    line-height: 22px;
}

@media (min-width:1700px) {
  .footer-bottom-inner-container{
    padding: 0 50px;
    padding-top: 10px;
  }
}
@media (max-width: 768px) {
 .footer-bottom a, .footer-bottom p{
    font-size: 11px;
    line-height: 20px;
 }
 .announcement-item .txt{
    font-size: 18px !important;
    line-height: 20px !important; 
 }
}


/* toaster message css  */

/* Customize toast background, text, border, shadow, etc. */
#toast-container>.toast-success {
  background-color: #4CAF50;
  /* green */
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  font-size: 16px;
}

#toast-container>.toast-error {
  background-color: #f44336;
  /* red */
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
}

#toast-container>.toast-info {
  background-color: #2196F3;
  /* blue */
}

#toast-container>.toast-warning {
  background-color: #ff9800;
  /* orange */
}


/* Dropdown Mega Menu */
.dropdown-menu {
  width: 103%;
  left: -50px;
  right: 0;
  top: 100% !important;
  padding: 0rem;
  padding-top: 5px;
  border: 0;
  border-radius: 0;
  background: transparent;
  display: none;
  transition: all 0.3s ease;
}

.dropdown-menu .inner-row-1{
  padding: 2rem;
  background: #fff;
}

.dropdown-menu.show {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

.dropdown-menu.visible {
  display: block;
}



/* Hover on desktop */
@media(min-width: 992px) {
  .dropdown:hover>.dropdown-menu {
    display: flex;
  }
}

/* Mobile adjustments */
@media(max-width: 991px) {
  .dropdown-menu {
    position: static;
    flex-direction: column;
    padding: 1rem;
  }

  .left-menu,
  .middle-content,
  .help-box {
    width: 100%;
    margin-bottom: 1rem;
  }
}




.heading {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #002d5a;
  font-size: 28px;
  font-family: 'Ivar Display', serif;
}



.left-menu-section {
  padding-top: 0;
  margin-top: 0;
  position: relative;
  z-index: 3;
  padding-top: 16px;
  /* max-height: 500px; */
  /* overflow-y: auto; */
  /* overflow-x: hidden; */
  /* scrollbar-width: none; */
  /* -ms-overflow-style: none; */
}
/* 
.left-menu-section::-webkit-scrollbar {
  display: none;
} */

/* ================= Left Menu ================= */
/* .left-menu {
  max-height: 500px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.left-menu::-webkit-scrollbar {
  display: none;
} */

.left-menu li .menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  /* space between icon and title */
}

.left-menu li .title {
  font-weight: 700;
  font-size: 18px;
  margin: 0;
}

.left-menu li p {
  font-size: 14px;
  color: #555;
  margin: 0 0 0 60px;
  /* align under title with icon spacing */
}

@media (max-width: 992px) {
  .left-menu li p {
    margin-left: 0;
    /* remove offset on smaller screens */
  }

  .left-menu li .menu-item {
    gap: 10px;
  }
}

.left-menu li {
  margin-bottom: 0.6rem;
  padding: 14px 15px;
  transition: all 0.3s ease;
  border-radius: 12px;
  position: relative;
  background: #fff;
  cursor: pointer;
  z-index: 99;
}

.left-menu li:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.left-menu li.active {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  background-color: #fff;
}

/* Two white arrows on left (mirrored triangles) */
/* Two arrows on right side pointing toward middle content */
.left-menu li::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  /* closer to text area */
  transform: translateY(-50%) scale(0);
  width: 30px;
  height: 40px;
  background: #efefeffb;
  /* green */
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  box-shadow: 3px 0 10px rgba(166, 75, 75, 0.15);
  opacity: 0;
  transition: all 0.35s ease;
  z-index: 2;
}

.left-menu li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  /* slightly in front of first arrow */
  transform: translateY(-50%) scale(0);
  width: 30px;
  height: 36px;
  background: #fff;
  /* red */
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  box-shadow: 3px 0 10px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: all 0.35s ease;
  z-index: 3;
}

.left-menu li.active::before {
  transform: translateY(-50%) scale(1);
  opacity: 1;
}

.left-menu li.active::after {
  transform: translateY(-50%) scale(1);
  opacity: 1;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-icon {
  width: 50px;
  height: 35px;
  object-fit: contain;
}

.title {
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0;
}

.left-menu p {
  font-size: 0.85rem;
  color: #555;
  margin: 1px 0 0 54px;
}

/* ================= Right Section ================= */
.middle-section {
  padding-top: 0;
  display: flex;
  align-items: flex-start;

  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 1rem;
  position: relative;
}

.middle-wrapper {
  display: flex;
  flex-direction: column;

  height: 100%;
  position: relative;
  padding-top: 0;
  margin-top: 0;
}

.middle-content {
  flex: 1.3;
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.middle-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.middle-description{
  font-size: 14.4px;
  color: #000;
}
.middle-content .row{
  gap: 10px;
}

.middle-categories-ul.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 40px; /* row-gap, column-gap */
  grid-auto-flow: row;
  list-style: none;
  margin: 0;
  padding: 0 16px;
}

.middle-categories-ul.two-column li {
  padding: 8px 0;
}

.middle-categories-ul.two-column li a {
  display: inline-block; /* allow wrapping */
}


.middle-content a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
}

.middle-content a:hover {
  color: #002d5a;
}

/* ================= Solution Box ================= */
.solution-box {
  border-top: 1px solid #eaeaea;
  padding-top: 2rem;
  margin-top: 2rem;
  padding-bottom: 1rem;
}

.solution-box h6 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #000;
  letter-spacing: 0.5px;
}

.solution-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.solution-box p {
  flex: 1;
  margin: 0;
  color: #000;
  font-size: 0.9rem;
}

.solution-box .btn {
  background-color: #f96e46;
  color: #fff;
  padding: 7px 20px;
  border-radius: 50px;
  font-size: 1rem;
}

.solution-box .btn:hover {
  background-color: #001f3f;
}

/* ================= Help Box ================= */
.help-box {
  flex: 0.6;
  background: #fff;
  border-left: 1px solid #eaeaea;
  align-items: center;
  padding-left: 2rem;
  margin-top: 40px;
  text-align: left;
}

.help-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.help-box h6 {
  font-weight: 600;
  font-size: 18px;


}
.help-box p {
  font-size: 12px;
  color: #000;
  margin-bottom: 0.4rem;
}

.help-box-para {
  font-size: 14px;
  color: #444;
  margin-bottom: 1.2rem !important;
}



@media (max-width: 992px) {
  .contact-section {
    flex-direction: column;
  }

  .help-box {
    margin-top: 1.5rem;
  }

  .left-menu li::before,
  .left-menu li::after {
    display: none;
  }
}
.navbar-toggler{
  border: none !important;
  padding: 0px !important;
  align-self: end;
  margin-bottom: 5px;
}
.mobile-footer-logo{
  width: 70%;
  margin-bottom: 20px;
}


/* ===================  updated file  =================== */



/* =================== CONTACT SECTION RESPONSIVENESS =================== */

/* Tablet (≤1024px) */
 @media (max-width: 1024px) {
  .contact-section {
    padding: 60px 40px;
    text-align: left;
  }

  .contact-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .contact-text {
    text-align: left;
  }

  .contact-text h2 {
    font-size: 42px;
    margin: 10px 0 15px;
  }

  .contact-text p {
    font-size: 1rem;
  }

  .contact-text .form-mail-logo {
    width: 75px;
    height: 65px;
    display: block;
    margin-bottom: 15px;
  }

  .contact-form {
    max-width: 500px;
    width: 100%;
  }

  .contact-form .form-heading {
    font-size: 1.1rem;
    margin-top: 5px; /* reduced top space */
    margin-bottom: 15px;
    text-align: left;
  }

  .contact-form form {
    grid-template-columns: 1fr;
  }

  .contact-form button {
    font-size: 1rem;
    padding: 8px 25px;
    align-self: flex-start; /* left aligned button */
    justify-self: flex-start;
  }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .contact-section {
    padding: 50px 30px;
    text-align: left;
  }

  .contact-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }

  .contact-text {
    text-align: left;
  }

  .contact-text .form-mail-logo {
    width: 65px;
    height: 55px;
    display: block;
    margin-bottom: 10px;
  }

  .contact-text h2 {
    font-size: 30px;
    line-height: 1.3;
    margin: 8px 0 12px;
  }

  .contact-text p {
    font-size: 0.95rem;
   
  }

  .contact-form {
    width: 100%;
    margin: 0;
  }

  .contact-form .form-heading {
    font-size: 1rem;
   margin-top:-5px ;
    margin-bottom: 15px;
    text-align: left;
    padding: 0;
  }

  .contact-form form {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.9rem;
    padding: 8px;
  }

  .contact-form button {
    font-size: 1rem;
    padding: 8px 22px;
    align-self: flex-start;
    justify-self: flex-start;
  }
}

/* Extra Small (≤480px) */
@media (max-width: 480px) {
  .contact-section {
    padding: 40px 20px;
  }

  .contact-text h2 {
    font-size: 32px;
  }

  .contact-text p {
    font-size: 16px;
  }

 

  .contact-form input,
  .contact-form textarea {
    font-size: 0.85rem;
    padding: 7px;
  }

  .contact-form button {
    font-size: 0.95rem;
    padding: 6px 20px;
    align-self: flex-start;
  }
}



/* =================== FOOTER RESPONSIVENESS =================== */

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding: 40px 30px;
  }

  .footer-top .footer-text {
    width: 100%;
    font-size: 1.1rem;
  }

  .footer-top ul {
    columns: 1;
    width: 100%;
  }

  .footer-contact-details {
    width: 100%;
  }

  .footer-middle {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
  }

  .footer-middle img {
    height: 70px;
    display: none;
  }
  .mobile-footer-logo{
    width: 50%;
  }

  .footer-middle ul {
    margin: 0;
    flex-wrap: wrap;
    gap: 10px;
    text-align: left;
  }

  .footer-middle .social {
    margin: 0;
    gap: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: left;
    gap: 1px;
    padding: 15px 20px;
  }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: left;
    gap: 5px;
    padding: 30px 30px;
  }

  .footer-top .footer-text {
    font-size: 1rem;
    width: 100%;
  }

  .footer-top ul {
        columns: 3;
        padding-left: 0;
        gap: 0px 15px;
    }

  .footer-top ul li a {
    font-size: 1rem;
  }

  .footer-contact-details h4 {
    font-size: 1.2rem;
    /* margin-bottom: 10px; */
  }

  .footer-middle {
    flex-direction: column;
    align-items: left;
    gap: 10px;
    text-align: left;
    padding: 25px 20px;
 
    margin-top: -20px !important;
    columns: 3;
        gap: 0px;
        display: block;

  }
  .footer-bottom-inner-container{
    padding-top: 0px;
  }
  .mobile-footer-logo{
  width: 70%;
  margin-bottom: 20px;
}

 
  .footer-middle img {
    height: 50px;
    display: none;
  }

  .footer-middle ul {
      flex-direction: column;
        font-size: 11px;
        margin-bottom: 0;
        align-items: baseline;
  }

  .footer-middle .social {
    flex-direction: row;
    justify-content: left;
    gap: 12px;
  }

  .footer-middle .social h4 {
    display: none; /* Hide small header on mobile */
  }

  .footer-bottom {
    flex-direction: column;
    text-align: left;
    gap: 1px;
   padding: 30px;
    font-size: 13px;
    
  }
      .footer-bottom p{
        margin-bottom: 0px  !important;
      }
  .social-icons {
    width: 28px;
    height: 28x;
  }
}

/* Extra Small (≤480px) */
@media (max-width: 480px) {
   .footer-top {
    flex-direction: column;
    text-align: left;
    gap: 5px;
    padding: 20px 20px;
  }
  .footer-top .footer-text {
    font-size: 0.95rem;
  }

  .footer-top ul li a {
    font-size: 0.95rem;
  }

  .footer-contact-details p {
    font-size: 0.9rem;
  }

    .footer-bottom {
    flex-direction: column;
    text-align: left;
    gap: 1px;
   padding: 10px 20px;
    font-size: 13px;
    
  }

  .footer-bottom p {
    font-size: 12px;
  }
}


/* ================= HEADER RESPONSIVENESS ================= */

/* Tablet (≤1024px) */
@media (max-width: 992px) {
  .navbar {
    padding: 8px 20px;
  }

  .navbar .container-fluid {
    flex-wrap: wrap;
    align-items: center;
  }

  .navbar-brand {
    margin-right: 0;
  }

  .navbar-brand img {
    height: 50px;
  }

  .navbar-collapse {
    justify-content: flex-start;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    border-radius: 0 0 8px 8px;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }

  .navbar-nav .nav-link {
    padding: 10px 0;
    font-size: 1rem;
  }

  .Inquire_btn {
    position: relative;
    margin-left: 0;
    margin-top: 10px;
    transform: none;
    top: auto;
    right: auto;
    width: fit-content;
  }
}

@media (min-width:992px) and (max-width:1024px) {
  
  .navbar .navbar-brand img{
    height: 45px;
  }
  .navbar-nav{
    gap: 5px;
  }
  .navbar-nav .nav-link{
    font-size: 16px;
  }
}
/* Mobile (≤768px) */
@media (max-width: 768px) {
  .navbar {
    padding: 5px 0px !important;
  }
  .navbar .container-fluid{
    padding-left: 20px !important;
    padding-right: 20px !important;
    
  }
  

  .navbar-brand img {
    height: 45px;
  }

  .navbar-collapse {
    background: rgba(0, 0, 0, 0.95);
    text-align: left;
    padding: 15px;
  }

  .navbar-nav .nav-link {
    font-size: 0.95rem;
    padding: 8px 0;
  }

  .Inquire_btn {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}

/* Extra Small (≤480px) */
@media (max-width: 480px) {
  .navbar-brand img {
    height: 40px;
  }

  .navbar-nav .nav-link {
    font-size: 16px;
  }

  .Inquire_btn {
    font-size: 0.9rem;
    padding: 6px 15px;
  }
}






@media (max-width: 480px) {
  .logo-item {
    padding: 0 20px;
  
  }

  .logo-item img {
    height: 40px;
  }

  .trusted-section {
  text-align: center;
  padding-bottom: 20px;
  background: #fff;
  overflow: hidden;
  margin-top: -25px !important;
}

.trusted-section h2 {
  font-size:25px;
  font-weight: 600;
  text-align: left;
  margin-bottom:30px;
  color: #091d3e;

}
}

@media (min-width:1024px) {
  .mobile-footer-logo{
  display: none;
}
}



@media (max-width:992px) {
  /* Right-side slide-in effect */
.navbar-collapse {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  width: 80%;
  height: 100vh !important;
  background: #000; /* match your theme */
  /* transition: right 0.4s; */
  transition: right 0.4s ease, opacity 0.4s ease;
  z-index: 9999;
  padding: 3.5rem 1.5rem;
  overflow-y: auto;
  display: block;
  visibility: hidden ;
  opacity: 0;
}
/* Cross (X) button */
.navbar-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 10000;
}
.navbar-close-btn svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  transition: stroke 0.2s ease;
}
.navbar-close-btn:hover svg {
  stroke: #ccc;
}
#trainingsDropdown{
  padding: 0px !important;
  padding-left: 10px !important;
  padding-top: 7px !important;
}
.navbar-collapse.show {
  right: 0;
  visibility: visible;
  opacity: 1;
  transition: right 0.4s;
}
.Inquire_btn{
  background-color: transparent;
  font-size: 16px;
  padding: 10px 0px !important;
  max-width: fit-content !important;
}
/* Overlay */
/* .nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.1);
  z-index: 9998;
  display: none;
} */
/* .nav-overlay.active {
  display: block;
  opacity: 1;
  visibility: visible;
} */
}

@media (min-width: 992px) {
  .navbar-close-btn {
    display: none;
  }
}

@media (max-width:768px) {
  .footer-top .footer-text{
    font-size: 14px;
  }
  .footer-top .footer-details{
    font-size: 14px;
  }
  .footer-middle ul span{
    display: none;
  }
  .footer-middle ul li a{
    font-size: 12px;
  }
.footer-top ul li{
    margin-bottom: 10px;
  }
.footer-top ul li a{
line-height:normal;
}
.btn-custom{
font-size:16px !important;
}

    .navbar{
padding-top:0px !important;
}
.btn-custom{
font-size:16px !important;
font-weight: 300 !important;
text-transform: none;
}
    .contact-form button{
color:#000 !important;
}

}

/* ====== Mobile Mega Menu Styles ====== */
.mobile-mega-menu,
.mobile-mega-category {
  position: fixed;
  top: 0;
  
  right: -100%;
  width: 80%;
  height: 100vh;
  background: #0b0b0b;
  color: white;
  z-index: 2000;
  transition: right 0.4s ease-in-out;
  overflow-y: auto;
  padding: 20px;
  padding-top: 56px;
}

.mobile-mega-menu.active,
.mobile-mega-category.active {
  right: 0;
}

.mobile-mega-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-weight: bold;
}

.mobile-mega-header button {
  background: none;
  border: none;
  color: white;
  font-size: 22px;
  margin-left: -10px;
}

.mobile-mega-item {
  padding: 10px 0;
  border-bottom: 1px solid #333;
}

.mobile-mega-item span {
  cursor: pointer;
}

.mobile-mega-list a {
  display: block;
  padding: 8px 0;
  text-decoration: none;
  color: #ddd;
}

.mobile-mega-list a:hover {
  color: white;
}

.mobile-mega-list{
  list-style-type: decimal;
}

@media (min-width:1700px){

.footer-top{
padding:40px;

}
.footer-middle{
padding:0 40px 20px 40px;
}
.footer-bottom-inner-container{
padding:10px 40px 0px 40px;
}
.contact-section-inner-container{
padding:0px 40px;
}
.trusted-section{
padding-left:50px;
padding-right:50px;
}


}


.icon-outline {
    -webkit-text-stroke: 1px #000;
    color: transparent;
}

.middle-content{
  max-height:210px;
  overflow-y: scroll;
  overflow-x:hidden;
}
/* Thin Scrollbar */
.middle-content::-webkit-scrollbar {
  width: 5px;                 /* Thin width */
}
.middle-content::-webkit-scrollbar-track {
  background: #f1f1f1;        /* Optional */
}

.middle-content::-webkit-scrollbar-thumb {
  background: #888;           /* Scroll handle */
  border-radius: 10px;
}

.middle-content::-webkit-scrollbar-thumb:hover {
  background: #555;           /* On hover */
}



