* {
  margin: 0;
  padding: 0;
  font-family: "Oxygen", sans-serif;
}
body {
  overflow-x: hidden;
}



ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.topbar {
  background: #5d87a5;
  color: #fff;
  height: 32px;
  padding: 10px 40px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  letter-spacing: 1px;
  padding-top: 6px;
  padding-left: 70px;
  padding-right: 92px;
}

.top-left,
.top-right {
  display: flex;
  gap: 22px;

  font-size: 14px;
}
.top-right {
  gap: 28px;
  margin-right: -15px;
}

.top-left li a,
.top-right li a {
  color: #ffffff;
  text-decoration: none;
}
.nav-con {
  margin-left: 4px;
}

.navbar {
  background: #fff;
  position: relative;
  z-index: 10000;
  /* border-bottom: 1px solid #eee; */
}

/* FLEXBOX SETUP FOR LOGO - MENU - BUTTON */
.nav-container {
  height: 72px;
  background-color: #002153;
  display: flex;
  align-items: center;
  justify-content: space-between; /* Isse teeno cheeze barabar phail jayengi */
  padding: 15px 12%;
  
 
}

.logo img {
  height: 63px;
  padding-left: 53px;
}

.nav-menu {
  display: flex;
  gap: 40px;
 padding-right: 38px;
  letter-spacing: 1px;
}

.nav-menu li a {
  text-decoration: none;
  font-weight: 300;
  color: #ffffff;

  font-size: 14px;
}

.nav-menu li a:hover {
  color: #3bc3d1;
}

.header-right {
  display: flex;
  align-items: center;
}

.quote-btn {
  background: #5d87a5;
  letter-spacing: 1px;
  color: #fff;
  padding: 10px 25px;
  border-radius: 7px;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #ffffff;

  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  transition: 0.3s;
  margin-right: -62px;
}

.quote-btn:hover {
  background: #3bc3d1;
  color: #fff;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  margin-left: 20px;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 30px 20px;
  z-index: 9999;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-menu a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

.mobile-btn {
  margin-top: 20px;
  text-align: center;
}

.is-sticky {
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .topbar {
    display: none;
  }
  .nav-container {
    padding: 10px 20px;
  }
  .nav-menu,
  .menu-btn {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .mobile-menu.active {
    display: block;
  }
  
}

/* Dropdown base */
.dropdown {
  position: relative;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #002153;
  min-width: 180px;
  display: none;
  flex-direction: column;
  padding: 10px 0;
}

.submenu li {
  padding: 8px 15px;
}

/* .submenu li a {
  color: #fff;
  font-size: 13px;
} */

/* Desktop hover */
@media (min-width: 992px) {
  .dropdown:hover .submenu {
    display: block;
  }
}

/* Mobile dropdown */
@media (max-width: 991px) {
  .submenu {
    position: static;
    background: transparent;
    display: none;
    padding-left: 15px;
    background-color: #ffffff;
    /* color: #ffffff !important; */
  }

  .submenu.active {
    display: block;
  }
}

@media (max-width: 991px) {
  .mobile-menu .submenu {
    display: none !important; /* 👈 force hide */
  }

  .mobile-menu .submenu.active {
    display: block !important; /* 👈 force show */
  }
}

/*Banner Start*/

.banner {
  height: 80vh;
  display: flex;
  align-items: center;
  padding: 0 110px;
  background: linear-gradient(to right, #0f2027, #3bc3d1);
  color: white;
}

.content h1 {
  font-size: 75px;
  margin: 0 0 20px;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: -2px;
  margin-top: 2px;
}

.content p {
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 20px;
  max-width: 80%;
  line-height: 1.6;
}

.btn {
  text-decoration: none;
  border: 1px solid #4fc3f7;
  padding: 8.5px 24px;
  border-radius: 8px;
  color: white;
  display: inline-block;
  transition: 0.3s;
}

.btn span {
  font-size: 16px;
}

.btn:hover {
  background-color: #4fc3f7;
  color: #000;
}
/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 991px) {
  .banner {
    height: 80vh;
    padding: 80px 40px;
    text-align: left;
    justify-content: center;
    
  }

  .content h1 {
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -1px;
    font-size: 50px;
  }

  .content p {
    font-size: 25px;
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .banner {
    padding: 60px 20px;
  }

  .content h1 {
    font-size: 45px;
  }

  .content p {
    font-size: 20px;
  }

  .btn {
    padding: 8px 18px;
  }

  .btn span {
    font-size: 14px;
  }
}
/* INITIAL STATE */
.content h1,
.content p,
.content .btn {
  opacity: 0;
  transform: translateY(50px); /* नीचे से start */
  animation: slideUp 0.8s ease forwards;
}

/* DELAY (one by one आए) */
.content h1 {
  animation-delay: 0.2s;
}

.content p {
  animation-delay: 0.5s;
}

.content .btn {
  animation-delay: 0.8s;
}

/* KEYFRAMES */
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0); /* original position */
  }
}

/* Heading Section */
.banner-content h2,
.banner-content p {
  opacity: 0;
  transform: translateY(60px);
  animation: slideUp 1s ease forwards;
}

/* delay */
.banner-content h2 {
  animation-delay: 0.3s;
}

.banner-content p {
  animation-delay: 0.7s;
}

/* KEYFRAMES */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-div-1 {
  background-color: #dcdcdf;
  text-align: center;
  padding: 50px 0px;
}
.inner-div-1 ul {
  list-style: none;
  padding: 0;
  
}
.inner-div-1 li a {
  text-decoration: none;

  color: #3bc3d1;
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.6em;
  letter-spacing: 3px;
}
.inner-div-1 li a::before {
  content: "•";
  margin-right: 5px;
  font-size: 25px;
  font-weight: 300;

  vertical-align: middle;
}
.main-div {
  background-color: #dcdcdf;
  text-align: center;
  padding: 50px 0px;
}

.inner-div ul {
  list-style: none;
  padding: 0;
}

.inner-div li a {
  text-decoration: none;

  color: #3bc3d1;
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.6em;
  letter-spacing: 3px;
  
}

/* DOT */
.inner-div li a::before {
  content: "•";
  margin-right: 5px;
  font-size: 25px;
  font-weight: 300;

  vertical-align: middle;
}

/*Sliding section*/
.back-1 {
  background-color: #dcdcdf;
}
/* container */
.slider-container {
  width: 100%;
  max-width: 1150px; /* 3 images ke liye perfect */
  margin: auto;
  overflow: hidden;
}

/* track */
.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

/* image box */
.img-box {
  flex: 0 0 33.33%; /* desktop = 3 images */
  padding: 10px;
  box-sizing: border-box;
}

/* image */
.img-box img {
  width: 100%;
  aspect-ratio: 1 / 1; /* 🔥 perfect square */
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .img-box {
    flex: 0 0 50%;
  }
}
@media (max-width: 576px) {
  .img-box {
    flex: 0 0 100%;
  }
}

/* Our Services section*/
/* INITIAL STATE */
.inner-div,
.heading-div,
.para-div {
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 0.8s ease forwards;
}

/* DELAY (one by one आए) */
.inner-div {
  animation-delay: 0.2s;
  
}

.heading-div {
  animation-delay: 0.5s;
}

.para-div {
  animation-delay: 0.8s;
}

/* KEYFRAMES (अगर पहले से है तो दुबारा मत लिखना) */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-parent {
  width: 100%;
  padding: 50px 40px;   /* ✅ left + right gap */
  display: block;       /* ❌ flex hata diya */
  padding: 50px 40px;  /* ✅ yaha gap do */
  box-sizing: border-box;
}

/* INNER WRAPPER */
.inner-one {
  width: 100%;          /* ✅ full width */
  text-align: left;     /* ✅ left start */
}

/* LIST SECTION */
.inner-div ul {
  list-style: none;
  display: flex;
  justify-content: center;  /* ✅ left */
  margin-bottom: 20px;
  padding-left: 0;
}

.inner-div li a {
  text-decoration: none;
  font-size: 25px;
  font-weight: 600;
  color: #3bc3d1;
  position: relative;
}

/* DOT BEFORE TEXT */
.inner-div li a::before {
  content: "•";
  margin-right: 8px;
  font-size: 28px;
  vertical-align: middle;
}

/* HEADING */
.heading-div h2 {
  font-size: 36px;
  color: #002153;
  margin-bottom: 15px;
  text-align: left;
}

/* PARAGRAPH */
.para-div p {
  font-size: 18px;
  color: #555;
  width: 100%;
  margin: 0;
  line-height: 1.6;
  padding-right: 0; /* ❌ remove */
}

/* Tablet */
@media (max-width: 992px) {
  .heading-div h2 {
    font-size: 30px;
  }

  .para-div p {
    font-size: 16px;
    padding-right: 20px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .main-parent {
    padding: 30px 20px;
  }

  .heading-div h2 {
    font-size: 22px;
  }

  .para-div p {
    font-size: 14px;
    padding-right: 10px;
  }
}

/*Image section*/

/* section background */
.product-section {
  background: #033b53;
  padding: 60px 20px;
}

/* container */
.product-container {
  width: 100%;
  max-width: 1400px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr); /* desktop = 3 */
  
}

/* box */
.product-box {
  text-align: center;
  color: #fff;
}

/* image */
.product-box img {
  width: 100%;
  max-width: 320px;
  max-height: 320px;
  margin-bottom: 20px;
}

/* heading */
.product-box h3 {
  font-size: 25px;
  margin-bottom: 10px;
  font-weight: 700;
}

/* paragraph */
.product-box p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 280px;
  margin: auto;
}
@media (max-width: 992px) {
  .product-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .product-container {
    grid-template-columns: 1fr;
  }

  .product-box img {
    max-width: 380px;
  }

  .product-box h3 {
    font-size: 25px;
  }

  .product-box p {
    font-size: 16px;
  }
}

/*About Section*/
/* LEFT SIDE ELEMENTS */
.about-left h2,
.about-left p,
.about-left ul,
.about-btn {
  opacity: 0;
  transform: translateY(60px);
  animation: slideUp 0.8s ease forwards;
}

/* DELAY (one by one आए) */
.about-left h2 {
  animation-delay: 0.2s;
}

.about-left p {
  animation-delay: 0.5s;
}

.about-left ul {
  animation-delay: 0.8s;
}

.about-btn {
  animation-delay: 1.1s;
}


/* RIGHT IMAGE */
.about-right img {
  opacity: 0;
  transform: translateY(60px);
  animation: slideUp 1s ease forwards;
  animation-delay: 0.6s;
}


/* TOP HEADING */
.about-header {
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 0.6s ease forwards;
  animation-delay: 0.1s;
}


/* KEYFRAMES (अगर पहले से है तो दुबारा मत लिखना) */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-section {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 20px;
}

/* Header */
.about-header {
  text-align: center;
  margin-bottom: 40px;
}

.about-header h5 {
      color: #3BC3D1;

  font-size: 24px;
  font-weight: 700;
}

/* Content layout */
.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* Left + Right equal width */
.about-left,
.about-right {
  width: 50%;
}

/* LEFT SIDE */
.about-left h2 {
  font-size: 52px;
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-weight: 500;
}

.about-left p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #606061;
}

.about-left ul {
  padding-left: 20px;
  margin-bottom: 25px;
}

.about-left ul li {
  margin-bottom: 10px;
}

.about-left ul li span {
  font-size: 18px;
  color: #606061;
}

/* Button */
.about-btn a {
  background: #2aa7b8;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
}

/* RIGHT SIDE */
.about-right {
  background: linear-gradient(to right, #011d19, #ffffff);

  padding: 40px;
  border-radius: 10px;
  text-align: center;
}

.about-right img {
  max-width: 100%;
  height: auto;
}


/* 📱 Responsive */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
    margin-right: 30px;
  }

  .about-left {
    width: 90%;
  }
  .about-right{
    width: 80%;
    margin-right: 15px;
  }

  .about-left h2 {
    font-size: 30px;
  }
}

/*Our Services section*/

.service-section {
  padding: 60px 20px; /* side padding kam karo */
}

/* ROW */
.service-row {
  background: #3fb3bd;
  display: flex;
  justify-content: center; /* 👈 center align */
  flex-wrap: wrap;
  gap: 20px; /* 👈 spacing proper */
  padding: 40px 20px;
  width: 85%;
  margin: 0 auto;
}

/* BOX */
.service-box {
  width: calc(25% - 20px); /* 👈 perfect 4 fit */
  display: flex;
  flex-direction: column;
}

/* ICON */
.icon-box {
  font-size: 40px;
  margin-bottom: 15px;
}

/* CONTENT */
.content-box h3 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 500;
}

.content-box a {
  display: block;
  margin-bottom: 10px;
  color: #000;
  text-decoration: none;
}

.content-box p {
  font-size: 18px;
  line-height: 1.6;
  color: #606061;
      text-align: justify;
      font-weight: 300;
}

/* Tablet */
@media (max-width: 992px) {
  .service-box {
    width: calc(50% - 20px); /* 👈 2 per row */
  }
}

/* Mobile */
@media (max-width: 576px) {
  .service-box {
    width: 100%; /* 👈 1 per row */
  }
}

/*Reviews  Section */
.carousel-wrapper {
  overflow: hidden;
  position: relative;
}

.card-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px;
}

.card-carousel::-webkit-scrollbar {
  display: none;
}

.custom-card {
  min-width: 30%; /* 3 cards visible */
  height: 200px;
  flex: 0 0 auto;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  background: #f8f9fa;
  transition: transform 0.3s;
}

/* Center focus effect */
.custom-card.active {
  transform: scale(1.1);
  background: #e3f2fd;
}


/*Reviews section*/
/* INITIAL STATE */
.heading-box-87,
.para-box-87 {
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 0.8s ease forwards;
}

/* DELAY */
.heading-box-87 {
  animation-delay: 0.2s;
}

.para-box-87 {
  animation-delay: 0.5s;
}

/* KEYFRAMES (अगर पहले से है तो दुबारा मत लिखना) */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* first div background image */
.main-87 {
  height: 700px;
  width: 100%;
  

  background-image: 
    linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(1, 29, 25, 0) 100%),
    url("images/home-2.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

 
  padding: 40px;
}

/* inner content */
.inner-87 {
 
  padding: 20px;
  border-radius: 10px;
  width: fit-content;
}

/* boxes */
.heading-box-87 {
  width: 60%;
  margin-bottom: 10px;
  font-size: 30px;
  color: #ffffff;
}

.para-box-87 {
  color: #ffffff;
  font-size: 18px;
  width: 50%;
}

.slider {
  width: 80%;
  margin: 100px auto;
  overflow: hidden;
}

.card-container {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
}


.card {
  flex: 0 0 calc((100% - 40px) / 3);
  box-sizing: border-box;

  background: #f8fafc;
  padding: 25px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ⭐ stars */
.stars {
  color: #fbbf24;
  font-size: 18px;
  margin-bottom: 10px;
}

/* paragraph */
.card p {
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

/* user section */
.user {
  display: flex;
  align-items: center;
  margin-top: 20px;
  position: relative;
}

.user img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.info {
  margin-left: 10px;
}

.info h4 {
  margin: 0;
  font-size: 14px;
}

.info span {
  font-size: 12px;
  color: gray;
}

/* quote icon */
.quote {
  margin-left: auto;
  font-size: 30px;
  color: #cbd5f5;
}
/* ================== Tablet (768px - 1024px) ================== */
@media (max-width: 1024px) {
  .heading-box-87 {
    width: 80%;
    font-size: 26px;
  }

  .para-box-87 {
    width: 70%;
    font-size: 16px;
  }

  .slider {
    width: 90%;
  }

  .card {
    flex: 0 0 calc((100% - 20px) / 2); /* 2 cards */
  }
}


/* ================== Mobile (below 768px) ================== */
@media (max-width: 768px) {
  .main-87 {
    height: auto;
    padding: 20px;
  }

  .inner-87 {
    width: 100%;
  }

  .heading-box-87 {
    width: 100%;
    font-size: 22px;
  }

  .para-box-87 {
    width: 100%;
    font-size: 14px;
  }

  .slider {
    width: 100%;
    margin: 50px auto;
  }

  .card-container {
    gap: 15px;
  }

  .card {
    flex: 0 0 100%; /* 1 card per row */
  }

  .card p {
    font-size: 13px;
  }

  .user img {
    width: 40px;
    height: 40px;
  }

  .quote {
    font-size: 24px;
  }
  
}
@media (max-width: 768px) {
  .slider {
    width: 100%;
    margin: 50px auto;
    padding: 0 15px;
    box-sizing: border-box; /* 👉 important */
  }

  .card-container {
    display: flex;
    justify-content: center;
    padding: 0; /* 👉 extra space remove */
  }

  .card {
    width: calc(100% - 30px); /* 👉 15px left + 15px right */
    max-width: 350px; /* optional (better look) */
    margin: 0 auto;
  }
}

/* ================== Tablet (768px - 1024px) ================== */
@media (max-width: 1024px) {
  .slider {
    width: 85%;
    overflow: hidden; /* 👉 important */
  }

  .card-container {
    display: flex;
    gap: 20px;
    margin-right: 40px;
  }

  .card {
    flex: 0 0 50%; /* 👉 exact 2 cards */
    max-width: 50%;
  }
}


/* ================== Mobile (below 768px) ================== */
@media (max-width: 768px) {
  .slider {
    width: 100%;
    overflow: hidden; /* 👉 important */
  }

  .card-container {
    display: flex;
    gap: 20px; 
    margin-right: 20px;
  }

  .card {
    flex: 0 0 100%; /* 👉 exact 1 card */
    max-width: 100%;
  }
}
/*Expert Section*/


.main {
  padding: 40px;
}

.wrapper {
  display: flex;
  gap: 10px;
  width: 90%;
  margin: 0 auto;
}

/* LEFT */
.left {
  width: 50%;
}

.left h2 {
  font-size: 52px;
  color: #161c1d;
  line-height: 1.3em;
  letter-spacing: -1.8;
  font-weight: 500;
}

.left p {
  color: #606061;
  margin-top: 20px;
  font-size: 18px;
      margin-bottom: 1.75em;
}

.info-box {
  display: flex;
  gap: 10px;
  margin-top: 40px;
}
.info-box i {
  width: 50px;
  height: 50px;
  background-color: #161c1d;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  color: #fff;
}
.info-box h3 {
  font-size: 18px;
  color: #161c1d;
}

.icon {
  font-size: 24px;
}

/* RIGHT */
.right {
  width: 50%;
}

.accordion {
  background: #f2f2f2;
  margin-bottom: 10px;
  border-radius: 8px;
  padding: 15px;
}

.acc-header {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
 
}
.acc-header span {
  font-size: 18px;
}

.plus {
  font-size: 20px;
}

.acc-body {
  display: none;
  margin-top: 10px;
  color: #555;
}

.accordion {
  background: #f2f2f2;
  margin-bottom: 10px;
  border-radius: 8px;
  padding: 15px;
  transition: 0.3s;
}

/* Active background */
.accordion.active {
  background: #d9f3f5;
}

.acc-header {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  
}

.plus {
  font-size: 20px;
  transition: 0.3s;
}

/* REMOVE display none */
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  margin-top: 0;
  color: #555;
}

/* Open state */
.accordion.active .acc-body {
  max-height: 200px; /* content ke hisaab se increase kar sakte ho */
  margin-top: 10px;
}
.accordion.active {
  background: #d9f3f5;
}
.info-box {
  display: inline-flex;      /* row me aa jayenge */
  flex-direction: column;    /* icon upar, text niche */
  margin-right: 30px;        /* dono ke beech gap */
}

.icon {
  margin-bottom: 8px;        /* icon ke niche spacing */
}
/* TABLET */
@media (max-width: 992px) {
  .wrapper {
    flex-direction: column;
    width: 95%;
  }

  .left,
  .right {
    width: 100%;
  }

  .left h2 {
    font-size: 36px;
  }

  .left p {
    font-size: 16px;
  }

  .info-box {
    flex-direction: row;   /* icon left, text right */
    align-items: center;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .icon {
    margin-bottom: 0;
  }
}


/* MOBILE */
@media (max-width: 576px) {
  .main {
    padding: 20px;
  }

  .wrapper {
    width: 100%;
  }

  .left h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .left p {
    font-size: 14px;
  }

  .info-box {
    flex-direction: row;
    gap: 10px;
    margin-bottom: 20px;
  }

  .acc-header span {
    font-size: 16px;
  }

  .plus {
    font-size: 18px;
  }
}


/*Footer Section */

.footer {
  background: #0b2d5c;
  color: #fff;
}

/* TOP */
.footer-top {
  width: 80%;
  margin: 0 auto;
  padding: 80px 40px;
}

/* Row */
.footer-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

/* Columns (Desktop same) */
.footer-col {
  width: 18%;
}

/* Logo */
.logo-inner img {
  max-width: 200px;
}

.social-wrap {
  margin-top: 40px;
}

/* Social */
.social-inner ul {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-inner ul li a {
  color: #fff;
  font-size: 20px;
  border: 1px solid #5e6d7e;
  padding: 10px;
  border-radius: 50%;
}

.social-inner ul li a:hover {
  background-color: #6f6f71;
}

/* Titles */
.title-1 h2 {
  font-size: 20px;
  font-family: "Lato", sans-serif;
  margin-bottom: 20px;
}

/* Links */
.links-1 a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  line-height: 40px;
}
.links-1 p {
  line-height: 25px !important;

  
}
.gapping p{
  margin-bottom: 25px;
}

/* Bottom */
.footer-bottom {
  background: #e64c4c;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50.8px;
}

.footer-bottom p {
  padding-left: 150px; /* FIX */
}

/* Tablet (2 column) */
@media (max-width: 992px) {
  .footer-col {
    width: 48%;
    margin-top: 40px;
  }

}

/* Mobile (1 column) */
@media (max-width: 576px) {
  .footer-top {
    width: 95%;
    padding: 40px 20px;
  }

  .footer-col {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .footer-bottom p {
    padding-left: 0;
  }
  
}



#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #1e73be;
  color: #fff;
  border: none;
  padding: 12px 15px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  display: none; /* start me hidden */
  z-index: 999;
  transition: 0.3s;
}

#scrollTopBtn:hover {
  background-color: #155a96;
}