:root {
  --primary-color: #f59e0b;
  --primary-dark: #d97706;
  --secondary-color: #fbbf24;
  --dark-color: #1f2937;
  --light-gray: #f9fafb;
  --medium-gray: #6b7280;
  --white: #ffffff;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* outline: 1px solid red; */
}

body {
  /* font-family: "popins", sans-serif; */
  line-height: 1.6;
  color: var(--dark-color);
}

body p {
  font-family: "montserrat", sans-serif;

  font-weight: 400;
  font-size: 1.5rem;
}

/* Custom Bootstrap Overrides */

@media (max-width: 768px) {
  .top-navbar {
    display: none !important;
  }
  .toggle-navbar-btn {
    display: block;
  }
}

.collapse .navbar-collapse {
  justify-content: center;
}

/* Add this new class to manage animation properly */
#topNavbarPopup {
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

#topNavbarPopup.active {
  display: flex;
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.navbar-expand-lg .navbar-collapse {
  flex-basis: auto;
  justify-content: center;
  align-items: center;
}

/* navbar new  */
.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
  position: relative;
  top: 0px;
  z-index: +90;

  background: linear-gradient(to right, #615f6c, #43424e) !important;
  justify-content: center;
  align-items: center;
}

.navbar-dark .navbar-nav .nav-link {
  color: white;
  text-transform: uppercase;
  font-weight: 500;
}
.dropdown-mega {
  position: absolute;
  left: 0;
  right: 0;
  background-color: #4e4d59f0;
  padding: 2rem;
  display: none;
  flex-wrap: wrap;
  z-index: 1050;
}
.dropdown-mega.show {
  display: flex;
}
.mega-submenu {
  min-width: 200px;
  border-right: 1px solid #333;
}
.mega-submenu .nav-link {
  color: #ffffff;
  padding: 10px 15px;
  cursor: pointer;
}
.mega-submenu .nav-link.active,
.mega-submenu .nav-link:hover {
  background-color: #222;
  color: white;
}
.mega-content {
  flex: 1;
  padding-left: 2rem;
  min-width: 250px;
  color: white;
}
.btn-custom {
  border-radius: 50px;
  padding: 10px 20px;
  border: 1px solid white;
  color: white;
  background: transparent;
  cursor: pointer;
}
.btn-custom:hover {
  background-color: white;
  color: black;
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .dropdown-mega {
    position: static;
    flex-direction: column;
    padding: 1rem 0;
  }
  .mega-submenu {
    border-right: none;
    margin-bottom: 1rem;
  }
  .mega-content {
    padding-left: 20px;
  }
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 40px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 40px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  border: 2px solid var(--primary-color);
}

.fa-solid,
.fas {
  padding: 5px;
}

.text-dark {
  color: var(--dark-color) !important;
  font-weight: 700;
}

.text-primary {
  color: var(--primary-color) !important;
  font-weight: 700;
}

.top-navbar {
  background-color: var(--white);
  padding: 8px 0;
  font-size: 0.875rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  color: #f59e0b;
  font-size: 1rem;
  border: 1px solid;
  transition: all 0.3s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.social-icon:hover {
  color: var(--white);
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

.contact-buttons {
  display: flex;
  gap: 1.5rem;
}

.contact-btn {
  color: rgb(0, 0, 0);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  padding: 4px 8px;
  border-radius: 4px;
}

.contact-btn:hover {
  color: var(--primary-color);
  background-color: rgba(255, 255, 255, 0.1);
}

.contact-btn i {
  font-size: 0.875rem;
}

.toggle-navbar-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: orange;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 24px;
  z-index: 1001;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  display: none;
}

#topNavbarPopup {
  display: none;
  position: fixed;
  bottom: 70px;
  right: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  padding: 16px;
  width: 240px;
  max-width: 90vw;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

#topNavbarPopup.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.popup-button {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: #f8f8f8;
  padding: 10px 14px;
  border-radius: 8px;
  color: #333;
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.popup-button i {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.popup-button:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .top-navbar {
    display: none;
  }
  .toggle-navbar-btn {
    display: block;
  }
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  border: 2px solid var(--primary-color);
}

.fa-solid,
.fas {
  padding: 5px;
}

.text-dark {
  color: var(--dark-color) !important;
  font-weight: 700;
}

.text-primary {
  color: var(--primary-color) !important;
  font-weight: 700;
}

/* Top Navbar */
.top-navbar {
  background-color: var(--white);
  padding: 8px 0;
  font-size: 0.875rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  color: #f59e0b;
  font-size: 1rem;
  border: 1px solid;
  transition: all 0.3s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.social-icon:hover {
  color: var(--white);
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

.contact-buttons {
  display: flex;
  gap: 1.5rem;
}

.contact-btn {
  color: rgb(0, 0, 0);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  padding: 4px 8px;
  border-radius: 4px;
}

.contact-btn:hover {
  color: var(--primary-color);
  background-color: rgba(255, 255, 255, 0.1);
}

.contact-btn i {
  font-size: 0.875rem;
}

/* Floating toggle button (mobile only) */
.toggle-navbar-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: orange;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 24px;
  z-index: 1001;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  display: none;
}

/* Popup container */
#topNavbarPopup {
  display: none;
  position: fixed;
  bottom: 70px;
  right: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  padding: 16px;
  width: 240px;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Show popup when active */
#topNavbarPopup.active {
  display: flex;
}

/* Each popup button */
#topNavbarPopup a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: #f8f8f8;
  padding: 10px 14px;
  border-radius: 8px;
  color: #333;
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

#topNavbarPopup a i {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

#topNavbarPopup a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-1px);
}

/* Responsive - hide original navbar, show toggle button */
@media (max-width: 768px) {
  .top-navbar {
    display: none;
  }

  .toggle-navbar-btn {
    display: block;
  }
}

/* main nav bar  */

/* Logo */

.logo-custom {
  margin-right: auto;
  margin-left: 15px;
  width: 267.4px;
  height: 56.1px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255, 255, 255);
}

/* Navigation */

.navbar-clr {
  background: linear-gradient(to right, #615f6c, #43424e) !important;
  color: var(--white);
}
.main-navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
  border-top: 1px solid #e5e7eb;
  background: linear-gradient(to right, #615f6c, #43424e) !important;
}
.navbar-nav .nav-items {
  display: flex;
  align-items: right;
  justify-content: center;
}

.nav-link.dropdown-toggle::after {
  display: none !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--white);
  margin: 0 8px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  height: 550px;
  max-width: 1920px;
  margin: 0 auto;
}
.cushero {
  padding-left: 3%;
  padding-right: 3%;
}

.hero-content {
  height: 500px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(31, 41, 55, 0.8) 0%,
    rgba(31, 41, 55, 0.6) 100%
  );
}
.container-fluid {
  --bs-gutter-x: -1.5rem;
}
.hero-section .container {
  position: relative;
  z-index: 2;
}

/* Auto-sliding text */
.auto-text-slider {
  margin-bottom: 1.5rem;
  height: 40px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 0 1rem;
}

.sliding-text {
  display: flex;
  animation: slideText 20s linear infinite;
  white-space: nowrap;
}

.sliding-text span {
  color: white;
  font-weight: 600;
  font-size: 1rem;
  margin-right: 3rem;
  min-width: max-content;
}

/* @keyframes slideText {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
} */

/* Text Slider Panel */
.text-slider-panel {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.text-slider-panel::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 1080px;
  height: 500px;
}

.slider-content {
  position: relative;
  min-height: 200px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
}

.slide-title {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}
.slide-title span {
  font-weight: 600;
  color: var(--dark-color);
}

.slide-subtitle {
  font-size: 1rem;
  color: var(--medium-gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.slider-controls {
  margin-bottom: 2rem;
}

.slider-dots {
  display: flex;
  gap: 0.75rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

.dot:hover {
  background-color: var(--primary-color);
  transform: scale(1.1);
}

/* PNG Section */
.hero-png-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.png-container {
  position: relative;
  max-width: 500px;
  width: 100%;
}

.hero-png-image {
  width: 90%;
  height: auto;
  transition: transform 0.3s ease;
  position: relative;
  left: 46px;
}

.hero-png-image:hover {
  transform: scale(1.05);
}

/* .floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
} */

.floating-card {
  position: absolute;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--dark-color);
  animation: float 3s ease-in-out infinite;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: +89;
}
.row .curvimage {
  background: url(./Rectangle\ 109.png);
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: bottom;
  position: relative;
}

/* Section Styles */
.section-title {
  font-size: 2rem;
  text-align: center;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.section-subtitle {
  font-size: 1.5rem;
  text-align: start;
  color: var(--medium-gray);
  /* max-width: 900px; */
  margin: 0 auto;
}
/* serive-mobile-section */

/* Mobile/Tab Services Tab View */
.responsive-services-section {
  margin-top: 20px;
  margin-bottom: 5px;
}

.icon-tabs {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  margin-bottom: 1rem;
}

.tab-icon {
  flex: 1;
  text-align: center;
  padding: 1rem;
  border-radius: 10px;
  background: #f7f7f7;
  transition: 0.3s ease;
  cursor: pointer;
  min-width: 80px;
}

.tab-icon.active {
  background: #dfdfdf;
  color: white;
}

.tab-icon .img {
  color: #ffffff;
  background: #fff;
  background-color: #f4f4f4;
}

.tab-icon i {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.tab-icon span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #868686;
}

.tab-content {
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 10px #ddd;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* Services Section */
.services-section {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  padding: 5rem 0;
}

/* Service Cards */
.service-card {
  background: rgb(255, 255, 255);
  padding: 2rem;
  border-radius: 12px;
  height: 100%;
  transition: all 0.3s ease;
  border: none;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.modbtn {
  border: 0px;
  background: white;
  border-radius: 0px;
  text-decoration: none; /* Removes underline */
  color: #000000;
}
.modbtn:hover {
  transition: none !important;
}

.service-icon {
  width: 95px;
  height: 120px;
  background-color: #dfdfdf;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  color: #656566;
  font-size: 1.5rem;
  font-weight: 900;
}

.service-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.service-card p {
  color: var(--medium-gray);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  font-size: 0.875rem;
  color: var(--medium-gray);
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.service-features li::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--medium-gray);
  border-radius: 50%;
  margin-right: 0.5rem;
}

/* business service mobile  */

.extra-section-new {
  padding: 30px 0;
  background: #fff;
}

.services-header {
  text-align: center;
  margin-bottom: 40px;
}

.services-header h2 {
  font-weight: 700;
  font-size: 2rem;
}

.services-header p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #555;
}

.services-note {
  text-align: center;
  font-style: italic;
  font-size: 0.95rem;
  color: #888;
  margin-top: -20px;
  margin-bottom: 20px;
}

.services-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding: 20px;
  scroll-behavior: smooth;
}

.services-container::-webkit-scrollbar {
  height: 8px;
}

.services-container::-webkit-scrollbar-thumb {
  background: #ffa500;
  border-radius: 10px;
}

.service-box {
  flex: 0 0 auto;
  width: 300px;
  scroll-snap-align: start;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-box:hover {
  transform: translateY(-5px);
}

.icon-wrapper {
  background: linear-gradient(to right, #e5e5e5, #f9f9f9);
  padding: 10px;
  border-radius: 50%;
  margin-bottom: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper img {
  width: 40px;
  height: 40px;
}

.service-box h5 {
  text-align: start;
  font-weight: 500;
  margin-bottom: 10px;
}

.service-box p {
  text-align: start;
  font-size: 1rem;
  color: #000000;
}

@media (max-width: 768px) {
  .services-header h2 {
    font-size: 2rem;
    text-align: start;
    font-weight: 400;
  }

  .services-header p {
    font-size: 1rem;
    text-align: start;
  }

  .services-container {
    padding: 10px;
    gap: 15px;
  }

  .service-box {
    width: 240px;
    padding: 16px;
  }

  .icon-wrapper img {
    width: 36px;
    height: 36px;
  }

  .services-note {
    font-size: 0.9rem;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .service-box {
    overflow: hidden;
    height: 280px;
    width: 200px;
  }

  .services-header h2 {
    font-size: 2rem;
    font-weight: 400;
  }

  .services-header p {
    font-size: 1rem;
  }
}
.services-note {
  margin-top: 20px;
}

only-buttons-business {
  position: absolute;
  top: 3300px;
}

/* Business Services Section */
.business-services-section {
  background: #ffffff00;
  position: relative;
  padding: 5rem 0 8rem 0;
}

/* .hidden-service {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.hidden-service.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
} */

@media (max-width: 768px) {
  .show-more-btn {
    background: linear-gradient(
      135deg,
      var(--primary-color),
      var(--secondary-color)
    );
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 3;
    bottom: -70px;
  }
}

.show-more-btn {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 2;
  bottom: -65px;
}

.show-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.4);
}

.show-more-btn .arrow-icon {
  transition: transform 0.3s ease;
}

.show-more-btn.expanded .arrow-icon {
  transform: rotate(180deg);
}

/* Section Curve
.section-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.section-curve svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.section-curve .shape-fill {
  fill: white;
} */

/* Business Service Cards */
.business-service-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  height: 100%;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: none;
}

.business-service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.business-service-icon {
  width: 48px;
  height: 48px;
  background-color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.gradient-border-box {
  border: 2px solid transparent;
  border-radius: 12px;
  background: linear-gradient(white, white) padding-box,
    /* Inner fill */
      linear-gradient(to bottom right, white, rgba(0, 0, 0, 0.241), white); /* 4-stop gradient */
  background-origin: border-box;
  background-clip: padding-box, border-box;
  padding: 2rem 2rem;
  font-weight: bold;
  text-align: center;
}

.business-service-icon i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.business-service-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.business-service-card p {
  color: black;
  font-size: 1.2rem;
}

.bottom-image-row img {
  position: absolute;
  width: 100%;
  bottom: 0px;
  background-position: center;
  z-index: -1;
  filter: drop-shadow(0px 8px 6px rgba(0, 0, 0, 0.2));
}

/* Team Section */
/* .team-section {
  margin-top: 150px;
  background: #ffffff00;
  padding: 5rem 0;
} */
/* .section-title {
  font-size: 65px;
} */

/* Team Cards */
.team-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  height: 100%;
}

.team-card:hover {
  box-shadow: var(--shadow-lg);
}

.team-image {
  aspect-ratio: 1;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-info {
  padding: 1.5rem;
  height: 160px;
}

.team-info h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--dark-color);
}

.team-role {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-social {
  display: flex;
  gap: 0.75rem;
}

.team-social a {
  color: var(--medium-gray);
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.team-social a:hover {
  color: var(--primary-color);
}
.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: -5;
}

/* our parterns section */

.partners-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 1%;
  position: relative;
  overflow: hidden;
  /* background: url("images/imagepartner.png") no-repeat center; */
}
.partnerimage img {
  position: absolute;
  width: 100%;
  z-index: -6;
  height: 60vh;
  object-fit: cover;
}
.left-text {
  max-width: 45%;
  margin-bottom: 10px;
  z-index: 2;
}

.left-text h2 {
  font-size: 3rem;
  margin: 0;
  font-weight: 400;
}

.left-text h2 span {
  font-weight: 700;
  display: block;
}

.left-text p {
  font-size: 1.5rem;
  margin: 20px 0 40px;
  color: #333;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .left-text h2 {
    font-size: 2rem;
    margin: 0;
    font-weight: 400;
  }

  .left-text p {
    font-size: 1rem;
    margin: 20px 0 40px;
    color: #333;
    line-height: 1.6;
  }
}

@media (max-width: 768px) {
  .left-text .btn {
    font-size: x-small;
    padding: 8px 20px;
  }
}

.left-text .btn {
  background: linear-gradient(45deg, #f8b500, #fceabb);
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.left-text .btn:hover {
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.right-logos {
  /* background-image: ("images/meetourpartner.png"); */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 20px;
  max-width: 35%;
  z-index: 2;
}

.logo-circle {
  background: #fff;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.logo-circle img {
  max-width: 130px;
  max-height: 150px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .logo-circle {
    background: #fff;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }

  .logo-circle img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
  }
}

/* Optional: Faint background pattern (placeholder) */
.partners-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  z-index: 0;
}

@media (max-width: 768px) {
  .partners-section {
    flex-direction: column;
    align-items: flex-start;
  }
  .left-text,
  .right-logos {
    max-width: 100%;
    padding: 0 15px;
  }
  .right-logos {
    margin-top: 20px;
    justify-content: center;
  }
}

/* our latest Work */

/* .work-card {
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  position: relative;
  color: white;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
} */

.badge-top {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(to right, #f8b500, #fceabb);
  color: #000;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 5px 12px;
  border-radius: 15px;
}

.view-btn {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: linear-gradient(to right, #fceabb, #f8b500);
  border: none;
  color: #000;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.view-btn:hover {
  background: linear-gradient(to right, #f8b500, #fceabb);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.work-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Goverment Sectors */

.scrolling-wrapper {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;

  padding: 20px;
  gap: 20px;
}
.scrolling-wrapper::-webkit-scrollbar {
  display: none;
}
.scrolling-wrapper .card {
  min-width: 260px;
  max-width: 280px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);

  /* display: inline-block;
  width: 18rem;
  margin: 0 0.5rem;
  vertical-align: top;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
}
.badge-custom {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #f0c14b;
  color: #000;
  padding: 5px 10px;
  font-weight: bold;
  font-size: 0.75rem;
  border-radius: 12px;
}
.know-more-btn {
  /* background-color: #f0c14b;
  border: none;
  color: black;
  border-radius: 20px;
  padding: 6px 20px;
  font-weight: 500;
  margin-top: 10px; */

  margin-top: auto;
  background-color: #f0c14b;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  align-self: center;
  width: fit-content;
}

.know-more-btn :hover {
  background-color: #f4b005;
}

.scroll-btn {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  z-index: 10;
}
.scroll-left {
  left: -20px;
}
.scroll-right {
  right: -20px;
}
.scroll-container {
  position: relative;
  display: flex;
  align-items: center;
}
.card-body {
  /* width: 100%;
  height: 200px;
  background: white; */

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-grow: 1;
  padding: 1rem;
  height: 190px;
}

.section-subtitle2 {
  background-color: #ffb31a;
  color: #000000;
  font-weight: 600;
  padding: 4px 16px;
  display: inline-block;
  border-radius: 20px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* FAQ Accordion */
.accordion-button {
  font-weight: 600;
  color: var(--dark-color);
  background-color: white;
  border: 1px solid #e5e7eb;
}

.accordion-button:not(.collapsed) {
  background-color: #ffffff;
  color: var(--dark-color);
  border-color: var(--primary-color);
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 229, 229, 0.25);
  border-color: var(--primary-color);
}

.slider-box {
  max-width: 600px;
  margin-bottom: 20px;
}

.label-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  font-size: 16px;
  color: #666;
}

input[type="range"] {
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  outline: none;
  /* transition: background 0.3s ease; */
}

.sliderroll1 {
  background: linear-gradient(
    to right,
    #e6a700 var(--value, 85%),
    #ccc var(--value, 15%)
  );
}

.sliderroll2 {
  background: linear-gradient(
    to right,
    #e6a700 var(--value, 93%),
    #ccc var(--value, 7%)
  );
}

.sliderroll3 {
  background: linear-gradient(
    to right,
    #e6a700 var(--value, 97%),
    #ccc var(--value, 3%)
  );
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 16px;
  width: 8px;
  border-radius: 4px;
  background: #ddd;
  cursor: pointer;
  box-shadow: 0 0 2px #00000055;
}

input[type="range"]::-moz-range-thumb {
  height: 16px;
  width: 8px;
  border-radius: 4px;
  background: #ddd;
  cursor: pointer;
  box-shadow: 0 0 2px #00000055;
}

/* .input-group-text{
      text-decoration: none;
      
    }

    .input-group-text i{
      color: #f59e0b;
      font-size: 1.2rem;
      
    } */

/* About Image */
/* .about-image {
  position: relative;
}

.about-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
  border-radius: 8px;
} */

.media-section {
  position: relative;
  width: fit-content;
  margin: 40px auto;
}

.background-image2 img {
  display: block;
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.fullscreen-image {
  height: 100vh;
  width: 100%;
  object-fit: fill;
}

.video.video {
  width: 400px;
  object-fit: cover;
  border-radius: 10px;
  height: 270px;
}
.video-overlay {
  position: relative;
  left: 100px;
  bottom: 100px;
  width: 400px;
  cursor: pointer;
}

.video-overlay img {
  width: 100%;
  border-radius: 10px;
  filter: brightness(0.9);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 15px 20px;
  border-radius: 50%;
}

/* Testimonials Section */

/* @media (max-width: 768px) {
  .contact-form-box {
    width: 50vw;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
} */

.get-in-touch-new {
  background: #3c3c42;
}

@media (max-width: 991px) {
  .get-in-touch-new {
    background: #3c3c4200;
  }
}

.contact-section {
  background: url("images/touch.png") no-repeat center center/cover;
  height: 80vh;
  background-color: #ff000000;
  position: relative;
}
.text-white {
  font-size: 36px;
}

.contact-info-box {
  background-color: #3c3c42;
  color: white;
  padding: 40px;
  width: 100%;
  height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-box h2 {
  font-weight: 400;
  font-size: 48px;
}
.contact-info-box h3 {
  font-weight: 400;
  font-size: 48px;
}

.contact-info-box h2 strong {
  font-weight: 700;
  font-size: 48px;
}
.contact-info-box p {
  font-weight: 400;
}

.contact-form-box {
  position: absolute;
  z-index: +5;
  top: 15%;
  left: 60%;
  background-color: #666;
  padding: 30px 30px 90px 30px;
  border-radius: 5px;
  width: 500px;
  height: 450px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-form-box input,
.contact-form-box textarea {
  background-color: #888;
  border: none;
  color: rgb(211, 211, 211);
}

.contact-form-box input::placeholder,
.contact-form-box textarea::placeholder {
  color: #c1c1c1;
}

.contact-form-box button {
  background-color: white;
  color: black;
  border: none;
  width: 50%;
}

/* Footer */
.footer {
  width: 100%;
  background: white;
  padding: 60px 0 20px;
  border-top: 1px solid #e5e7eb;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  font-size: 1.1rem;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: #ff6b35;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  transition: all 0.3s ease;
}

.logo:hover .logo-icon {
  background: #e55a2b;
  transform: rotate(5deg);
}

.logo-text {
  font-size: 1.2rem;
  font-weight: bold;
  color: #1a1a1a;
}

.company-description {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.company-description:hover {
  color: #333;
}

/* Footer Links */
.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: #666;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff6b35;
  transform: translateX(5px);
  transition: all 0.3s ease;
}

/* Contact Info */
.contact-info {
  font-size: 0.85rem;
  color: #666;
}

.contact-item {
  margin-bottom: 16px;
  transition: all 0.3s ease;
}
.contact-item p {
  font-size: 0.85rem;
  font-weight: 500;
}

.contact-item:hover {
  transform: translateY(-2px);
  color: #333;
}

.contact-label {
  font-weight: 600;
  margin-bottom: 4px;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-link.facebook {
  background: #1877f2;
  color: white;
}

.social-link.linkedin {
  background: #0a66c2;
  color: white;
}

.social-link.instagram {
  background: #e4405f;
  color: white;
}

.social-link.twitter {
  background: #1da1f2;
  color: white;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Map Placeholder */

.map-container {
  flex: 1 1 50%;
  min-width: 100px;
  /* padding: 10px; */
  padding-top: 10px;
}

.map-container iframe {
  width: 100%;
  height: 50%;
  min-height: 200px;
  border: none;
  border-radius: 10px;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  transition: all 0.3s ease;
}

.footer-bottom:hover {
  background: #f9fafb;
  border-radius: 8px;
  padding: 40px 32px 32px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #666;
  transition: all 0.3s ease;
}

.footer-bottom:hover p {
  color: #333;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonials-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .profiles-container {
    gap: 20px;
  }

  .profile-card {
    width: 300px;
  }

  .profile-circle {
    width: 300px;
    height: 450px;
  }

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

  .section-header h2 {
    font-size: 2rem;
  }

  .contact-text h2 {
    font-size: 2rem;
  }

  .contact-text h3 {
    font-size: 1.8rem;
  }
}

/* Who we are page  */

.abstract-header {
  background: url("images/abstractnew2.png") center/cover no-repeat;
  padding: 40px 20px;
  text-align: center;
  color: var(--primary-color);
}

.abstract-header h1 {
  font-size: 48px;
  font-weight: 700;
  margin: 0;
}

#about-us h3 {
  font-weight: 600;
  font-size: 1.5rem;
}

#about-us p {
  color: #555;
  line-height: 1.6;
}

.btn-outline-primary {
  border-radius: 30px;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  transition: all 0.3s ease;
  border-color: var(--primary-color);
  color: white;
  background-color: var(--primary-color);
  text-decoration: none;
}

.btn-outline-primary i {
  margin-right: 6px;
}

.btn-outline-primary:hover {
  background-color: #d97706;
  color: white;
  border-color: #d97706;
}

/* #collageCarousel {
  position: relative;
  max-width: 800px;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  max-height: 300px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#collageCarousel .carousel-inner img {
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 10px;
} */

/* Our Business Partner */

.nav-link.active {
  background-color: #f59e0b !important; /* Bootstrap danger red */
  color: #fff !important;
  border-radius: 5px;
}

.partner-card {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  width: 250px;
  height: 250px;
  margin: auto;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 4px solid transparent;
}

.partner-card img {
  width: 100%;
  height: 100%;
  padding: 10px;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.partner-card:hover {
  box-shadow: 0 0 0 8px #f59e0b;
}

.partner-card:hover img {
  transform: scale(1.1);
  filter: brightness(60%);
}

.partner-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  transition: opacity 0.3s ease;
}
.partner-info p {
  font-size: 1rem;
  font-weight: 500;
}

.partner-card:hover .partner-info {
  opacity: 1;
}
.project-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  position: relative;
}
.project-card:hover {
  transform: translateY(-5px);
}
.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.project-info {
  padding: 15px;
}
.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.project-card:hover .project-overlay {
  opacity: 1;
}
.project-overlay button {
  background-color: #f59e0b;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}
.pagination {
  justify-content: center;
}
.active > .page-link,
.page-link.active {
  background-color: #f59e0b !important;
  color: #fff !important;
  /* border-radius: 1px; */
}
.page-link {
  color: #f59e0b !important;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* 

    blood bank separate page  */

.blood-heading {
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
  font-weight: bold;
}
.feature-list li {
  margin-bottom: 10px;
}
.three-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}
.banner-img {
  height: 100%;
  max-height: 720px;
  object-fit: cover;
}

/* 
media files maximum mobile responsive file below here  */
/* 
media files maximum mobile responsive file below here  */
/* 
media files maximum mobile responsive file below here  */
/* 
media files maximum mobile responsive file below here  */
/* 
media files maximum mobile responsive file below here  */
/* 
media files maximum mobile responsive file below here  */

@media (max-width: 767px) {
  .my-section {
    background-image: url("your-small-image.jpg"); /* different image */
    background-size: cover;
  }
}
@media (max-width: 992px) {
  #desktop-only-section {
    display: none;
  }
}

@media (max-width: 968px) {
  .removeit {
    display: none;
  }
}
@media (min-width: 991px) {
  #mobile-only-section {
    display: none;
  }
}

@media (max-width: 991px) {
  .contact-form-box {
    position: static;
    margin: 40px auto;
    width: 90%;
    max-width: 500px;
    height: auto;
    padding: 20px;
    transform: none;
    margin-bottom: 60px; /* 🔸 add this */
  }
}

@media (max-width: 991px) {
  .testimonials-section {
    padding: 0px 0px;
  }
  .section-header {
    margin-bottom: 0px;
  }
}

/* top hero banner */

@media (max-width: 767px) {
  .slide-title {
    font-size: calc(1.5rem + 1.5vw);
    color: var(--dark-color);
  }

  .slider-controls {
    margin: 2rem;
  }

  .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .btn-primary {
    font-size: calc(0.8rem + 0.3vw);
  }
}

/* meet our team  */

/* Carousel Styles for Mobile/Tablet */
/* Carousel Styles */
.team-section {
  background: #ffffff00;
  padding: 3rem 0 0 0;
}

.section-title {
  font-size: 3rem;
  text-align: start;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: #555;
  /* max-width: 600px; */
  margin: 0 auto 3rem;
  text-align: start;
}

.section-subtitlen2 {
  text-align: start;
}
.team-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.team-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.team-image {
  aspect-ratio: 1;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-info {
  padding: 1.5rem;
}

.team-info h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.team-role {
  color: #f59e0b;
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-social {
  display: flex;
  gap: 0.75rem;
}

.team-social a {
  color: #666;
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.team-social a:hover {
  color: #007bff;
}

/* Grid Layout (Desktop) */
.team-grid {
  display: flex;

  gap: 2rem;
  justify-content: center;
}

.team-grid .team-card {
  width: calc(25% - 2rem);
  width: calc(33.333% - 3rem);
}
.grdwrpr2 {
  max-width: 1140px; /* same as Bootstrap .container (lg) */
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* Carousel Layout (Mobile) */
.team-carousel-wrapper {
  display: none;
  position: relative;
  overflow: hidden;
}

.team-carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1rem;
  padding: 0 2rem;
  padding-bottom: 10px;
}

.team-carousel {
  padding-bottom: 10px;
}

.team-carousel::-webkit-scrollbar {
  display: none;
}

.team-carousel .team-card {
  /* min-width: 80%; */
  flex: 0 0 auto;
}

.carousel-button {
  width: 57px;
  height: 57px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  padding: 10px 14px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.carousel-button.left {
  left: 10px;
}

.carousel-button.right {
  right: 10px;
}

/* Responsive Switch */
@media (max-width: 991px) {
  .team-grid {
    display: none;
  }

  .team-carousel-wrapper {
    display: block;
  }
}

@media (max-width: 767px) {
  .bottom-image-row {
    position: absolute;
    width: 100%;
    background-position: center;
    filter: drop-shadow(0px 12px 6px rgba(0, 0, 0, 0.4));
    z-index: 2;
  }
}

.team-grid-wrapper {
  max-width: 1140px; /* same as Bootstrap .container (lg) */
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.latest-work-section {
  /* max-width: 1140px; */
  margin: 0 auto;
  padding: 20px 20px;
  position: relative;
}

.latest-work-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

/* Scroll wrapper */
.work-scroll-wrapper {
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-behavior: smooth;
}

/* Hide scrollbar visually */
.work-scroll-wrapper::-webkit-scrollbar {
  display: none;
}
.work-scroll-wrapper {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Scroll content */
.work-scroll {
  display: flex;
  gap: 1rem;
}

.work-card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 2rem;
  color: white;
  border-radius: 12px;
  height: 300px;
  position: relative;
  flex: 0 0 calc(33.333% - 1rem); /* desktop default */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.badge-top {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #f59e0b;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
}

.work-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 50px;
}

@media screen and (max-width: 991px) {
  .work-title {
    font-size: 15px;
    margin-bottom: 32px;
  }
}

.view-btn {
  background: rgba(0, 0, 0, 0.6);
  border: none;
  padding: 8px 16px;
  color: white;
  cursor: pointer;
  border-radius: 4px;
  align-self: flex-start;
}

/* Scroll buttons */
.scroll-btnp {
  /* position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  padding: 10px 14px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%; */

  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  z-index: 10;
}

.my-scroll-btnR {
  position: absolute;
  top: 165px;
  right: 10px;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 6px;
  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  font-size: 1.5rem;
  z-index: 10;
}
.my-scroll-btnL {
  position: absolute;
  top: 165px;
  left: 10px;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 6px;
  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  font-size: 1.5rem;
  z-index: 10;
}

.only-buttons-business {
  position: relative;
}

@media (min-width: 493px) and (max-width: 991px) {
  .my-scroll-btnR {
    position: absolute;

    transform: translateY(-50%);
    background: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 6px;
    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
  }
  .my-scroll-btnL {
    position: absolute;

    transform: translateY(-50%);
    background: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 6px;
    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
  }
}

@media (min-width: 492px) {
  .my-scroll-btnL {
    display: none;
  }
}

.scroll-btn.left {
  left: 10px;
}

.scroll-btn.right {
  right: 10px;
}

@media (max-width: 991px) {
  .work-card {
    flex: 0 0 80%;
    min-width: 80%;
    max-width: 80%;
    height: 150px;
  }
}

/* @media (min-width: 992px) {
  .scroll-btn {
    display: none;
  }
} */

@media (min-width: 992px) {
  .goverment-sectors .scroll-btn {
    display: inline;
  }
}

@media (max-width: 767px) {
  .section-subtitle {
    text-align: start;
    font-size: 1rem;
  }
  .section-title {
    text-align: start;
    font-size: 2rem;
  }
  .section-title .mb-4 {
    font-size: 1rem;
  }

  .contact-info-box h2 {
    font-size: 2rem;
  }
  .contact-info-box h3 {
    font-size: 2rem;
  }
  .contact-info-box h2 strong {
    font-size: 2rem;
  }
  .contact-info-box p {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .contact-section {
    background: url("images/touch.png") no-repeat center center/cover;
    height: 100%;
    background-color: #ff000000;
    position: relative;
  }
}

@media (min-width: 768px) and (max-width: 997px) {
  .contact-section {
    background: url("images/touch.png") no-repeat center center / cover;
    height: 115vh;
    background-color: #ff000000;
    position: relative;
  }
}

@media (max-width: 767px) {
  .profiles-section {
    display: none;
  }

  .contact-info-box {
    background-color: #3c3c42;
    color: white;
    padding: 40px;
    width: 100%;
    height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* 
Mobile Only  */
@media (max-width: 767px) {
  .scrolling-wrapper .card {
    width: 14rem;
  }
}
@media (max-width: 767px) {
  .show-more-btn {
    position: relative;
    overflow: hidden;
    z-index: 4;
    bottom: -65px;
  }
}

@media (max-width: 767px) {
  .partnerimage img {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: -6;
    object-fit: cover;
  }
}

/* Modal Content Styling */
@media (max-width: 992px) {
  [data-bs-target="#ceoModal"] {
    display: none !important;
  }
}

.ceo-button {
  position: absolute;
  right: 25px;
}

@media (min-width: 992px) {
  #ceoModal .modal-dialog {
    max-width: 1100px;
  }

  .ceo-container {
    display: grid;
    grid-template-columns: 65% 1fr;
    grid-template-rows: auto auto;
    column-gap: 40px;
    row-gap: 20px;
  }

  .ceo-img {
    grid-row: 1 / span 2;
  }

  .ceo-img img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

  .ceo-intro {
    align-self: start;
  }

  .ceo-extra {
    grid-column: 1 / span 2;
  }
}

@media (max-width: 991px) {
  .ceo-img img {
    width: 100%;
    margin-bottom: 20px;
  }

  .ceo-container {
    display: block;
  }
}

#ceoModal .modal-header {
  background-color: #f59e0b;
  border-bottom: none;
}

#ceoModal .modal-title {
  font-size: 1.5rem;
  font-weight: 600;
}

#ceoModal .modal-body {
  padding: 30px;
}

.ceo-intro h5 {
  font-weight: 700;
  color: #1f2937;
  font-size: 1.3rem;
}

.ceo-intro p.subtitle {
  color: #6b7280;
  margin-bottom: 20px;
}

.ceo-intro p,
.ceo-extra p {
  font-size: 1rem;
  line-height: 1.7;
  color: #374151;
}

.ceo-highlight {
  font-weight: 600;
  color: #198754;
}

.ceo-link a {
  color: #1d4ed8;
  font-style: italic;
  text-decoration: underline;
}

.modal-footer {
  border-top: none;
  padding: 15px 30px;
}

/* floating buttons */

.hero-floting-buttons {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 50%;
  z-index: 1;
}

/* .floating-btn {
      position: absolute;
      padding: 12px 20px;
      background-color: #f59e0b;
      color: white;
      border: 1px solid #fbbf24;
      border-radius: 50px;
      cursor: pointer;
      font-weight: bold;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      display: flex;
      align-items: center;
      gap: 8px;
      animation: floatUpDown 4s ease-in-out infinite;
    } */

.floating-btn {
  position: absolute;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: floatUpDown 4s ease-in-out infinite;
}

.floating-btn i {
  font-size: 16px;
}

@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Position each button */

.btn1 {
  top: 33%;
  left: 11%;
  animation-delay: 0s;
}

.btn2 {
  top: 32%;
  right: 5%;
  animation-delay: 0.5s;
}

.btn3 {
  top: 88%;
  left: 3%;
  animation-delay: 1s;
}
.btn4 {
  bottom: -10%;
  right: 3%;
  animation-delay: 1.5s;
}

.btn5 {
  bottom: -63%;
  left: 10%;
  animation-delay: 2s;
}

.btn6 {
  bottom: -65%;
  right: 15%;
  animation-delay: 2.5s;
}

@media (max-width: 991px) {
  .floating-btn {
    display: none;
  }
}

/* career with us page */

.career-header {
  background: var(--primary-color);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.career-header img {
  max-width: 800px;
  height: 80%;
  border-radius: 12px;
  margin-top: 20px;
}

.job-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100%;
}

.job-card:hover {
  transform: translateY(-5px);
}

.apply-section {
  background-color: #fff3e0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
}

.btn-orange {
  background-color: #ffa500;
  color: white;
}

.btn-orange:hover {
  background-color: #e65c00;
}

.section-title2 {
  font-weight: 700;
  font-size: 2rem;
  color: #333;
}

.job-title {
  color: #f5930b;
  font-size: 1.25rem;
  font-weight: 600;
}

.job-card p {
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 500;
}

.equal-height {
  display: flex;
}

.lead {
  font-size: 2rem;
  font-weight: 600;
}

/* contact form  */
.custom-contact-section {
  padding: 60px 0;
}

.custom-contact-form-wrapper {
  width: 100%;
  background: url(images/formimage.jpg) no-repeat center center;
  background-size: cover;

  background-attachment: fixed;
}

.custom-contact-form-bg {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 60px 20px;
}

.custom-contact-form {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.custom-contact-form p {
  font-size: 1.2rem;
}

.custom-map-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.custom-map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  border: 0;
}

.custom-office-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.07);
}

.custom-quick-contact-btns .btn {
  margin: 5px;
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
}
.cstm-new-btn {
  font-size: 1.15rem;
  padding: 5px 20px;
  border-radius: 25px;
}

@media (max-width: 767.98px) {
  .custom-contact-form {
    padding: 20px;
  }
}

/* gov & private page  */

.member-card {
  border-radius: 8px;
  position: relative;
  transition: transform 0.3s ease;
}
.member-card:hover {
  transform: scale(1.03);
}
.member-card img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 8px;
}
.member-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.member-card:hover .member-overlay {
  opacity: 1;
}

.newbtn {
  background-color: #f59e0b;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.newbtn :hover {
  border: 2px solid white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.fw-bold {
  font-size: 2rem;
}

@media (max-width: 991px) {
  .new-text {
    text-align: start;
  }
}

/* career */

@media (max-width: 991px) {
  .cstxt {
    text-align: start;
    font-size: 2rem;
    line-height: 1.5;
  }
  .cstxt2 {
    text-align: start;
  }
}

/* portfolio section  */
.portfolio .portfolio-filters {
  list-style: none;
  text-align: center;
  padding: 0 0 20px;
}
.portfolio .portfolio-filters li {
  display: inline-block;
  margin: 8px 12px; /* More spacing */
  padding: 8px 16px; /* Padding like a button */
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  color: #555;
  border: 1px solid transparent;
  border-radius: 25px;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover {
  background-color: #f59e0b;
  color: #fff;
  border-color: #ffcd75;
}

.portfolio .portfolio-filters .filter-active {
  background-color: #f59e0b;
  color: #fff;
  border-color: #ffcd75;
}

.portfolio .portfolio-content {
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.portfolio .portfolio-content img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
  flex-shrink: 0;
}
.portfolio .portfolio-content:hover img {
  transform: scale(1.08);
}
.portfolio-info {
  padding: 15px 20px;
  flex-grow: 1;
}
.portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}
.portfolio-info p {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .newtxt4 {
    font-size: 32px;
    text-align: start;
    font-weight: 600;
  }
  .portfolio .portfolio-filters {
    text-align: left;
    padding: 0 20px;
  }
  .portfolio .portfolio-filters li {
    margin: 4px 8px; /* Adjusted for smaller screens */
    padding: 6px 12px; /* Adjusted for smaller screens */
    font-size: 14px; /* Slightly smaller font size */
  }
}

.dark-line {
  color: rgb(255, 166, 0);
}

/* resistration form  */
.reg-container {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.reg-info-panel {
  background-color: #f5a623;
  color: white;
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reg-info-panel h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
}

.reg-info-panel p {
  margin-top: 15px;
  font-size: 16px;
}

.reg-contact-details {
  margin-top: 40px;
  font-size: 14px;
}

.reg-contact-item {
  margin-bottom: 15px;
  display: flex;
  align-items: start;
  gap: 10px;
}

.reg-contact-item i {
  font-size: 18px;
  margin-top: 2px;
}

.reg-form-panel {
  flex: 2;
  padding: 40px;
  background: #fff;
}

.form-control,
.form-select {
  border-radius: 5px;
  padding: 10px 15px;
}

.reg-submit-btn {
  background-color: #f5a623;
  color: white;
  border: none;
  padding: 12px 25px;
  font-weight: bold;
  width: 100%;
  border-radius: 5px;
}

.reg-submit-btn:hover {
  background-color: #e39613;
}

@media (max-width: 768px) {
  .reg-container {
    flex-direction: column;
  }

  .reg-info-panel,
  .reg-form-panel {
    flex: unset;
    width: 100%;
    padding: 30px 20px;
  }

  .reg-info-panel h2 {
    font-size: 22px;
  }
}

/* future concept iot  */

.custom-text-section {
  background-color: #f0f0f0;
  padding: 30px;
  border-radius: 8px;
  animation: fadeInText 1.2s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.custom-image-section {
  animation: fadeInImage 1.2s ease-in-out;
}

.custom-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.custom-equal-height-row {
  display: flex;
  flex-wrap: wrap;
}

@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInImage {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.custom-heading {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
}

.custom-paragraph {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
}

/* new modals  */

.custom-modal-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

.custom-modal-body {
  padding: 20px;
}

.custom-modal-header {
  border-bottom: none;
}

.custom-modal-content {
  border-radius: 12px;
}

@media (min-width: 992px) {
  .custom-image-col-double {
    max-width: 48%;
    flex: 0 0 48%;
  }

  .custom-image-col-single {
    max-width: 70%;
    flex: 0 0 70%;
  }
}

/* Blood Banks page  */

.custom-feature-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.custom-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: #f59e0b;
  color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.custom-feature-item i {
  color: #ffffff;
}

.custom-feature-item:hover,
.custom-feature-item:focus {
  background-color: #ffffff;
  color: #f59e0b;
  border-color: #f59e0b;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.custom-feature-item:hover i {
  color: #f59e0b;
}

/* lightbox */
.lightbox .lb-close {
  top: 10px;
  right: 10px;
  font-size: 28px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 36px;
  color: #333;
}

.lightbox .lb-close::after {
  content: "×"; /* Custom X */
  font-size: 24px;
}

.lb-close {
  display: block !important;
  position: absolute !important;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 30px;
  line-height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  z-index: 9999;
  color: #000;
}

/* Add visible X content in case image fails */
.lb-close:after {
  content: "×";
  font-weight: bold;
  font-size: 26px;
  display: block;
}

/* Custom Styles */
.highlight-box {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
}

.highlight-box:hover {
  transform: scale(1.05);
}

.screenshot-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.section-title-new {
  font-weight: 700;
  font-size: 28px;
}

.section-description {
  font-size: 16px;
  color: #555;
}

@media (min-width: 992px) {
  .desktop-flex {
    display: flex;
    align-items: center;
    gap: 40px;
  }
}

/* call center */
.section-banner-full {
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
}

.section-banner-full img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.section-grey-features {
  background-color: #e9ecef;
  padding: 60px 20px;
}

.features-dual-column {
  list-style: none;
  padding: 0;
  margin-left: 10px;
  position: relative;
}

.features-dual-column li {
  margin-bottom: 24px;
  font-size: 1.1rem;
  position: relative;
  padding-left: 30px;
}

.features-dual-column li::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 6px;
  width: 14px;
  height: 14px;
  background-color: #000;
  border-radius: 50%;
  z-index: 1;
}

.section-info-area {
  padding: 60px 20px;
}

@media (min-width: 768px) {
  .info-text-block {
    padding-left: 40px;
  }
}
/* new banner  */
.custom-carousel-item {
  height: 600px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease-in-out;
}

@media (max-width: 768px) {
  .custom-carousel-item {
    height: 400px;
  }
  .custom-carousel-caption h5 {
    font-size: 24px;
    line-height: 36px;
  }
  .custom-carousel-caption p {
    font-size: 16px;
    line-height: 24px;
  }
}

.custom-carousel-caption {
  position: absolute;
  left: 20px;
  text-align: left;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  max-width: 600px;
}

.custom-carousel-caption h5 {
  font-size: 34px;
  font-weight: 700;
  line-height: 55px;
  color: #191b1f;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 4px 20px;
  display: inline-block;
}

.custom-orange {
  color: #f1501a;
}

.custom-carousel-caption p {
  font-size: 19px;
  line-height: 30px;
  font-weight: 400;
  color: #191b1f;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 2px 14px;
  margin-top: 10px;
  display: inline-block;
}

.custom-carousel-caption .custom-btn {
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  background-color: #f59e0b;
  border: none;
  padding: 10px 30px;
  margin-top: 20px;
  text-transform: uppercase;
  text-decoration: none;
}

.custom-carousel-control-prev-icon,
.custom-carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 15px;
}

.custom-carousel-indicators {
  bottom: 10px;
}

/* Full-screen video background */

.video-section {
  border-top: 10px solid #f59e0b;
  border-bottom: 10px solid #f59e0b;
  background-color: #00000069;
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: start;
  box-shadow: 0px 0.5px 20px -10px rgb(0, 0, 0);
}

.video-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(0.5);
}

.slider-container {
  max-width: 800px;
  padding: 20px;
}

.slider-text {
  margin-left: 280px;
  margin-right: 280px;
  position: absolute;
  /* position: absolute; */
  /* margin-top: 250px; */
  /* top: 50%;
      left: 50%; */
  top: 20%;
  width: 75%;

  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.yellow-text {
  color: #f5a623;
  font-size: 2rem;
}

.slider-text.active {
  margin-left: 280px;
  margin-right: 280px;
  position: absolute;

  top: 20%;
  width: 75%;

  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slider-text h2 {
  font-family: "montserrat", sans-serif;
  font-size: 4rem;
  margin-bottom: 15px;
  margin-left: 40px;
  text-align: start;
}

.slider-text p {
  font-family: "montserrat", sans-serif;
  font-size: 24px;
  margin-bottom: 20px;
  margin-left: 40px;
  text-align: start;
}

.slider-text a {
  text-decoration: none;
  color: #ffffff;
  /* background: #ff9800; */
  font-weight: bold;
  /* border: 1px solid #ff9800; */
  padding: 8px 15px;
  border-radius: 5px;
  transition: 0.3s;
  margin-left: 40px;
}

.slider-text a:hover {
  background: #ff9800;
  color: #fff;
}

@media (max-width: 768px) {
  .slider-text h2 {
    font-size: 2rem;
  }
  .slider-text p {
    font-size: 1rem;
  }
}

.slider-logos {
  position: relative;
}

/* videosection */

/* navbar mobile button */
.left-menu-button {
  position: absolute;
  top: 30px;
  right: 20px;
}

@media (max-width: 991px) {
  .navbar-collapse {
    position: relative;
    top: auto;
  }
}

/* for other pages at the top  */
/* Parallax Section */
.parallax {
  position: relative;
  height: 35vh;

  background-image: url("images/officeheadernew.jpg");
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--light-color);
  text-align: center;
  overflow: hidden;
}

#parallaxText {
  font-size: 3rem;
  opacity: 0;
  color: #ffffff;
  transition: opacity 1s;
}

/* Text Section */
section.bg-light-new {
  background-color: var(--light-color) !important;
  color: var(--secondary-color);
}

/* Left Image Right Text Section */
.left-image-right-text h2 {
  color: #f59e0b;
}

/* Highlight Cards */
.highlight-card-new {
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: var(--light-color) !important;
  font-size: 1.1rem;
}

.highlight-card-new {
  background-color: #f59e0b !important;
}

.highlight-card-new i {
  color: white;
  font-size: 2rem;
  margin-bottom: 10px;
}

.highlight-card-new:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* Image Gallery */
.img-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
  border: 2px solid var(--primary-color);
}

.img-gallery img:hover {
  transform: scale(1.05);
  border-color: var(--secondary-color);
}

.lead-custom-new {
  font-size: 1.5rem;

  color: #000;
}
.card-body-new {
  color: white;
}

.card-body-new i {
  color: white;
}

a.albatross-link {
  text-decoration: none;
  color: inherit;
}
h1.albatross-h1,
h2.albatross-h2 {
  margin: 0 0 15px;
}
p.albatross-p {
  margin: 0 0 15px;
}
.albatross-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 50px 0;
}

/* Header */
header.albatross-header {
  background-color: #f59e0b;
  color: white;
  padding: 60px 0;
  text-align: center;
}
header.albatross-header h1.albatross-h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
header.albatross-header p.albatross-p {
  font-size: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Grid of Sectors */
.albatross-sectors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.albatross-sector-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}
.albatross-sector-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.albatross-sector-card i.albatross-icon {
  font-size: 50px;
  color: #f59e0b;
  margin-bottom: 15px;
}
.albatross-sector-card h3.albatross-h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}
.albatross-sector-card p.albatross-p {
  font-size: 1.2rem;
  color: #555;
}

/* Benefits Section */
.albatross-benefits {
  background-color: #f1f5f9;
  padding: 60px 20px;
  text-align: center;
}
.albatross-benefits h2.albatross-h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.albatross-benefits p.albatross-p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  color: #555;
}

/* CTA Section */
.albatross-cta {
  background-color: #f59e0b;
  color: white;
  padding: 60px 20px;
  text-align: center;
}
.albatross-cta h2.albatross-h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.albatross-cta a.albatross-btn {
  background-color: #ffffff;
  color: #ffb300;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  transition: background 0.3s;
}
.albatross-cta a.albatross-btn:hover {
  background-color: rgb(255, 255, 255);
}

/* Footer */
footer.albatross-footer {
  background-color: #f59e0b;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 50px;
}

@media (max-width: 768px) {
  header.albatross-header h1.albatross-h1 {
    font-size: 2rem;
  }
  header.albatross-header p.albatross-p {
    font-size: 1rem;
  }
  .albatross-benefits h2.albatross-h2,
  .albatross-cta h2.albatross-h2 {
    font-size: 1.5rem;
  }
  .albatross-cta a.albatross-btn {
    padding: 12px 25px;
  }
}

/* about us page new  */

.abt-header-custom {
  color: #f59e0b;
  text-align: center;
  padding-top: 20px;
}
.abt-header-custom h1 {
  font-weight: 600;
  margin: 0;
  font-size: 2em;
}
.abt-header-custom p {
  font-size: 1rem;
  margin-top: 10px;
}
.abt-header-custom p {
  color: black;
}
.abt-section-custom {
  padding: 20px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.abt-flex-custom {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}
.abt-flex-custom img {
  max-width: 350px;
  border-radius: 10px;
  flex: 1 1 45%;
}
.abt-content-custom {
  flex: 1 1 45%;
}
.abt-content-custom h2 {
  font-weight: 600;
  color: #f59e0b;
  margin-bottom: 20px;
}
.abt-counters-custom {
  display: flex;
  justify-content: space-around;
  text-align: center;
  margin-top: 50px;
}
.abt-counter-box-custom {
  flex: 1;
}
.abt-counter-box-custom h3 {
  font-weight: 600;
  font-size: 2em;
  color: #f59e0b;
  margin: 0;
}
.abt-counter-box-custom p {
  margin-top: 10px;
  font-size: 1.1em;
}
.abt-vision-mission-custom {
  background: #f7f7f7;
  padding: 20px 20px;
}
.abt-vision-mission-custom h2 {
  font-weight: 600;
  text-align: center;
  color: #555;
  margin-bottom: 40px;
}
.abt-vm-boxes-custom {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.abt-vm-card-custom {
  flex: 1 1 40%;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.abt-vm-card-custom h3 {
  color: #f59e0b;
  font-weight: 600;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .abt-counter-box-custom p {
    margin-top: 10px;
    font-size: 0.7rem;
  }
  .abt-flex-custom {
    flex-direction: column;
  }
  .abt-vm-card-custom {
    flex: 1 1 100%;
  }
}

.custom-bg-white {
  margin-top: 80px;
  background: #ffffff00;
}

.mega-content p {
  font-size: 1rem;
}

@media (min-width: 1100px) {
  .mega-content h2 {
    font-size: 3rem;
  }
  .mega-content p {
    font-size: 1.5rem;
  }

  .mega-submenu .nav-link {
    color: #ffffff;
    padding: 10px 40px;
    cursor: pointer;
    font-size: 1.5rem;
  }
}

/* Cookie  */

/* Cookie popup container */
/* Cookie popup container */
.cookie-popup {
  position: fixed;
  bottom: -200px;
  left: 0;
  width: 100%;
  background: #ffffff;
  color: #4b5563;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column; /* stack by default */
  transition: bottom 0.4s ease-in-out;
  z-index: 9999;
  border-top: 4px solid #f59e0b;
}

.cookie-popup.show {
  bottom: 0;
}

.cookie-popup p {
  margin: 0 0 15px 0;
  line-height: 1.4;
  font-size: 14px;
  width: 100%; /* full width text */
  max-width: none; /* remove previous 75% limit */
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end; /* always align buttons to the right */
}

.cookie-buttons button {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  color: white;
}

.cookie-buttons .accept-btn {
  background-color: #f59e0b;
}

.cookie-buttons .deny-btn {
  background-color: #9ca3af;
}

/* custome_Reviews_ */
/* --- Discover Section --- */
.discover-section {
  background: #fff;
  padding: 50px 30px;
  margin-bottom: 60px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.discover-section h2 {
  font-size: 2rem;
  color: #f59e0b;
  text-align: start;
  margin-bottom: 20px;
}
.discover-section p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 15px;
  text-align: start;
  margin-left: auto;
  margin-right: auto;
}
.client-list {
  text-align: center;
  font-size: 1rem;
  color: #555;
  margin-top: 20px;
}
.client-list strong {
  color: #f59e0b;
}

/* --- Grid for Success Stories --- */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* --- Story Card --- */
.story-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.story-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.story-content {
  padding: 20px;
}
.story-content h3 {
  font-size: 1.3rem;
  color: #f59e0b;
  margin-bottom: 10px;
}
.story-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}
.read-more {
  display: inline-block;
  font-size: 0.9rem;
  text-decoration: none;
  color: #fff;
  background: #f59e0b;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background 0.3s ease;
}
.read-more:hover {
  background: #f59e0b;
}

/* --- Reviews Section --- */
.reviews-section {
  margin-top: 60px;
}
.reviews-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 30px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.review-text {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
  font-style: italic;
}
.review-author {
  font-weight: bold;
  color: #f59e0b;
  font-size: 1rem;
}
.review-role {
  font-size: 0.85rem;
  color: #777;
}
.stars {
  color: #f4b400;
  margin-bottom: 10px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 600px) {
  header h1 {
    font-size: 2rem;
  }
}

/* analyst  */

.hero-section-new h1 {
  font-size: 3rem;
  font-weight: bold;
}
.content-section {
  padding: 60px 20px;
}
.content-section h2 {
  font-weight: bold;
  margin-bottom: 20px;
}
.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-5px);
}
.feature-card h4 {
  color: #f59e0b;
  font-weight: bold;
  margin-bottom: 15px;
}

/* new gallery section */

/* floating-buttons */
/* Force 2 logos per row */
.right-logos-new {
  display: flex;
  grid-template-columns: repeat(2, 1fr); /* 2 per row */
  gap: 25px; /* space between logos */
  justify-items: center;
  margin-top: 30px;
  width: 100%;
}

/* .right-logos-new .logo-circle {
  width: 190px;
  height: 150px;
} */

/* Make logos bigger and circular */
.right-logos-new .logo-circle img {
  height: 300px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

/* Hover effect */
.right-logos-new .logo-circle img:hover {
  transform: scale(1.1);
}

/* Overlay background */
.center-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

/* Card Style */
.center-panel-content {
  position: relative;
  background: #fff;
  width: 90%;
  max-width: 450px;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  animation: fadeInUp 0.3s ease;
}

/* Close button */
.center-panel-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 26px;
  color: #333;
  cursor: pointer;
}

/* Icon style */
.center-panel-icon {
  font-size: 50px;
  color: #f59e0b;
  margin-bottom: 15px;
}

/* Title */
.center-panel-content h2 {
  font-size: 20px;
  margin: 0 0 10px;
  color: #222;
}

/* Description */
.center-panel-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hidden-service {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}

.hidden-service.show {
  max-height: 1000px;
  opacity: 1;
}

@media (max-width: 768px) {
  .custom-bg-white {
    margin-top: 0px;
  }
}

@media (max-width: 768px) {
  .left-text .btn {
    font-size: small;
    padding: 8px 20px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1366px) {
  .slider-container {
    max-width: 500px;
    padding: 20px;
  }
  .slider-text {
    position: absolute;
    margin: 0;
    padding: 0;
    top: 10%;
    width: 80%;

    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .slider-text h2 {
    font-family: "montserrat", sans-serif;
    font-size: 3rem;
    margin-bottom: 15px;
    margin-left: 80px;
    text-align: start;
  }

  .slider-text p {
    font-family: "montserrat", sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    margin-left: 80px;
    text-align: start;
  }

  .slider-text a {
    margin-left: 80px;
  }

  /* .ceobtn {
    position: relative;
    top: 80px;
  } */

  .slider-logos {
    margin-left: 40px;
  }

  /* .video-section {
    height: 500px;
  } */

  .contact-info-box {
    height: auto;
  }
  .dot {
    display: none;
  }

  .contact-form-box {
    height: 400px;
    width: 400px;
  }

  .right-logos {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 50%;
    z-index: 2;
    justify-content: space-evenly;
  }
  .navbar-dark .navbar-nav .nav-link {
    padding: 0px;
  }

  /* .ceobtn {
    padding: 6px 12px;
  } 
  .ceobtn i {
    display: none;
  } */
  .navbar-expand-lg .navbar-collapse {
    flex-basis: auto;
    justify-content: start;
    align-items: center;
    margin-left: 20px;
  }
}

.text-slider-panel {
  height: 450px;
}

.text-slider-panel2 {
  height: 400px;
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 320px) and (max-width: 991px) {
  .text-slider-panel {
    height: 440px;
    margin-bottom: 15px;
  }
}

/* changes made on 16th oct  */

.herologos {
  overflow: hidden;
  position: relative;
  width: 100%;
  background: #fff;
  padding: 10px 0;
}

.logo-marquee {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-track {
  display: flex;
  width: calc(200%); /* allows seamless scroll */
  animation: scrollLogos 25s linear infinite;
}

.marquee-track img {
  filter: grayscale(100%);
  height: 90px;
  margin: 0 15px;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.marquee-track img:hover {
  filter: grayscale(0%);
}

@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 991px) {
  .hero-buttons {
    margin-top: 15px;
  }
}

.slide-subtitle {
  margin-bottom: 1rem;
}

.new-cus-text {
  color: orange;
  font-size: 1.2rem;
  align-items: end;
}

.hero-buttons {
  margin-top: 15px;
  align-items: end;
}
@media screen and (max-width: 991px) {
  .marquee-track img {
    height: 70px;
  }
}

/* changes for the other website  */
.logo-section-new {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background: #fff;
}

.new-logo-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: center;
  align-items: center;
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

.new-logo-section img {
  height: 50px; /* Fixed height */
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

@media screen and (max-width: 768px) {
  .new-logo-section {
    gap: 15px;
  }
}

@media screen and (max-width: 480px) {
  .new-logo-section {
    gap: 10px;
  }
}

@media screen and (min-width: 300px) and (max-width: 991px) {
  .text-slider-panel {
    height: 560px;
  }
  .text-slider-panel2 {
    height: 540px;
  }
  .marquee-track {
    margin-top: 100px;
  }
  .new-new-btn {
    text-decoration: none;
    color: orange;
  }

  .btn-header-banner {
    text-decoration: none;
    color: orange;
    margin-top: 20px;
  }

  .new-new-btn {
    text-decoration: none;
    color: orange;
  }

  .logo-marquee {
    padding-top: 50px;
  }
}

@media screen and (min-width: 1366px) and (max-width: 1560px) {
  .text-slider-panel2 {
    height: 480px;
  }

  .new-new-btn {
    text-decoration: none;
    color: orange;
  }
}

@media screen and (min-width: 991px) and (max-width: 1365px) {
  .text-slider-panel2 {
    height: 530px;
  }

  .new-new-btn {
    text-decoration: none;
    color: orange;
    margin-bottom: 10px;
    margin-bottom: 10px;
  }
  .new-new-btn {
    text-decoration: none;
    color: orange;
  }
}
.new-new-btn a {
  color: orange;
  text-decoration: none;
}

.logo-marquee {
  background: rgba(255, 255, 255, 0);
}
.custom-office-card p {
  font-size: 1rem;
}

@media (max-width: 768px) {
  body p {
    font-size: 1rem;
  }

  .abstract-header h1 {
    font-size: 32px !important;
    margin: 0;
  }

  #parallaxText {
    font-size: 2rem;
  }
  .parallax {
    height: 20vh;
  }

  header.albatross-header {
    padding: 0;
    text-align: start;
  }

  .albatross-sector-card i.albatross-icon {
    font-size: 30px;
  }
  .albatross-sector-card i.albatross-icon h3 {
    font-size: 1.2rem;
  }
  .albatross-sector-card p.albatross-p {
    font-size: 1rem;
  }

  .albatross-sectors {
    margin-top: auto;
    gap: 10px;
  }
  .albatross-benefits {
    padding: 10px 20px !important;
  }

  .albatross-container {
    padding: 30px 0px;
  }

  .albatross-cta {
    padding: 20px 0px;
  }

  .right-logos-new {
    display: flex;
    justify-content: space-evenly;
  }

  .custom-contact-section {
    padding: 0;
  }
  .custom-contact-form p {
    font-size: 1rem;
  }
}

.row .faq-sec-row {
  align-items: center;
}

@media (max-width: 1180px) {
  .parallax {
    height: 20vh;
  }
}


    /* WRAPPER */
    .carousel-wrapper-gal {
        width: 100%;
        overflow: hidden;
        padding: 20px 0;
    }

    /* TRACK */
    .carousel-track-gal {
        display: flex;
        width: max-content;
        gap: 15px;
        animation: scroll 40s linear infinite;
    }

    /* ITEMS */
    .carousel-item-gal {
        flex: 0 0 auto;
        width: 250px;
        height: 180px;
        border-radius: 10px;
        overflow: hidden;
    }

    .carousel-item-gal img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* MOBILE ADJUSTMENTS */
    @media (max-width: 768px) {
        .carousel-item-gal {
            width: 60vw;
            height: 150px;
        }
    }

    /* TRUE INFINITE ANIMATION */
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

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

    /* OUTER WRAPPER (never moves) */
    .gallery-wrapper {
        max-width: 1360px;
        margin: 0 auto;
        overflow: hidden;
        padding: 0 15px;
    }

    /* DESKTOP GRID */
    .gallery-track {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
        padding: 20px;
    }

    .gallery-item {
        border-radius: 12px;
        overflow: hidden;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }



.my-scroll-btnR{
color: rgb(255, 166, 0);
}











