*,
::before,
::after {
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

img {
  vertical-align: bottom;
}

iframe {
  border: none;
}

label {
  display: inline-block;
}

button {
  cursor: pointer;
  padding: 0;
}

:disabled {
  cursor: not-allowed;
}

table {
  border-collapse: collapse;
}

ul {
  list-style: none;
  padding: 0;
}

/* ========================== */
/*  ---------TOPBAR---------- */
/* ========================== */
/* .topbar {
  font-size: 15px;
  background-color: #0b0b55 !important;
}

.topbar a {
  color: #ffffff !important;
  text-decoration: none;
}

.topbar a:hover {
  color: #0d6efd;
  text-decoration: underline;
}

.topbar i {
  color: #fff;
} */

/* ****************************** */
/* ------NAVIGATION-BAR---------- */
/* ****************************** */

.navbar-brand {
  font-weight: bold;
  font-size: 1.4rem;
  /* color: #0d6efd !important; */
}

.nav-link {
  font-weight: 500;
  color: #111;
}

.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 999;
}

/* CTA Button */
.navBar-btn-cta {
  background: #ff0000;
  color: white;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.navBar-btn-cta:hover {
  background: #f60606;
  color: #fff;
}

/* Offcanvas Styling */
.offcanvas {
  transition: transform 0.4s ease-in-out;
  background-color: #f7f9fc;
}

.offcanvas-header {
  border-bottom: 1px solid #eaeaea;
}

.offcanvas-title {
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
}

.enhanced-dropdown {
  padding: 0.5rem 0;
  border-radius: 10px;
  min-width: 220px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  animation: dropdownFade 0.3s ease;
}

.enhanced-dropdown .dropdown-item {
  padding: 10px 20px;
  font-weight: 500;
  font-size: 0.95rem;
  color: #333;
  position: relative;
}

.enhanced-dropdown .dropdown-item:hover {
  background-color: #f3f6ff;
  /* color: #0050ff; */
  color: var(--bgthem-pink-color);
  padding-left: 24px;
}

.enhanced-dropdown .dropdown-item::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 50%;
  background-color: #0050ff;
  border-radius: 4px;
  opacity: 0;
  transition: all 0.3s ease;
}

.enhanced-dropdown {
  max-height: 350px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #ccc;
}

.enhanced-dropdown::-webkit-scrollbar {
  width: 6px;
}

.enhanced-dropdown::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
}

.enhanced-dropdown::-webkit-scrollbar-thumb:hover {
  background-color: #aaa;
}

@keyframes dropdownFade {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  #mobile-main-menu,
  #mobile-submenu {
    transition: all 0.3s ease;
    padding-top: 1rem;
  }

  #mobile-submenu {
    display: none;
  }

  #mobile-submenu.active {
    display: block;
  }

  #mobile-main-menu.hide {
    display: none;
  }

  .offcanvas-body {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .navbar-nav .nav-link {
    display: block;
    width: 100%;
    padding: 12px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid #eee;
  }

  .mobile-back-btn {
    background: none;
    border: none;
    color: #0050ff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
    padding-left: 0;
  }

  #mobile-submenu ul li a {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: block;
    width: 100%;
  }

  .offcanvas-body > .d-flex {
    width: 100%;
    padding-top: 20px;
  }

  .navBar-btn-cta {
    width: 100%;
    text-align: center;
  }
}

/* Hide mobile submenu permanently on desktop */
@media (min-width: 992px) {
  #mobile-submenu {
    display: none !important;
  }
}

/* ✅ Show dropdown on hover for large screens */
/* @media (min-width: 992px) {
	.navbar-nav .dropdown:hover .dropdown-menu {
		display: block;
		animation: dropdownFade 0.8s ease;
		margin-top: 0.5rem;
	}
} */

@media (min-width: 992px) {
  .navbar-nav .dropdown {
    position: relative;
  }

  .navbar-nav .dropdown-menu {
    top: 100% !important;
    margin-top: 0 !important;
    /* Removes any gap */
    left: 0;
  }

  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    animation: dropdownFade 0.3s ease;
  }
}

/* ******************************** */
/* ------BANNER-HOME-PAGE---------- */
/* ******************************** */
/* Section Styling */
.custom-carousel {
  position: relative;
}

.custom-carousel-item {
  position: relative;
}

.custom-carousel-img {
  width: 100%;
  height: 500px;
  /* object-fit: cover; */
  object-fit: fill;
}

@media (max-width: 768px) {
  .custom-carousel-img {
    height: 280px;
  }
}

/* Dots Styling */
.custom-carousel .owl-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  justify-content: center;
}

.custom-carousel .owl-dot span {
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  display: block;
  margin: 4px;
  opacity: 0.6;
  transition: 0.3s ease;
}

.custom-carousel .owl-dot.active span {
  background: #0050ff;
  opacity: 1;
}
/* =========================================== */
/* ------------ WRAP-3 LABEL ----------------- */
/* =========================================== */
.laber-services-section {
  background: #fff;
  padding: 20px 0;
}
.laber-service-box h6 {
  color: #ff0000;
  font-weight: 700;
  font-size: 2.8rem;
}
.laber-service-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 10px;
}

.laber-service-box img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.laber-divider {
  border-right: 1px dashed #ccc;
}

.laber-services-section .row > div:last-child {
  border-right: none;
}

@media (max-width: 991px) {
  .laber-divider {
    border-right: none;
    border-bottom: 1px dashed #ccc;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}

/* ******************************** */
/* -----------ABOUT-US------------- */
/* ******************************** */
.aboutus-section {
  position: relative;
  padding: 100px 0;
  color: #fff;
  /* background: linear-gradient(
      rgba(11, 11, 85, 0.8),
      rgba(11, 11, 85, 0.9)
    ),
    url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1400&q=80') no-repeat center center/cover; */
  background: linear-gradient(rgba(32, 32, 33, 0.8), rgba(53, 53, 54, 0.9)),
    url("https://img.freepik.com/free-photo/motherboard-circuit-background_23-2151733852.jpg")
      no-repeat center center/cover;
  background-attachment: fixed;
  overflow: hidden;
}

.aboutus-image {
  position: relative;
}

.aboutus-image img {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: all 0.5s ease;
}

.aboutus-image img:hover {
  transform: scale(1.05);
}

/* BADGE ON IMAGE */
.aboutus-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #ff0000;
  color: #fff;
  font-weight: 600;
  padding: 8px 18px;
  border-bottom-right-radius: 12px;
  border-top-left-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* TEXT CONTENT */
.aboutus-content h6 {
  color: #ff0000;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.aboutus-content h2 {
  font-weight: 700;
  margin-bottom: 25px;
  color: #fff;
}

.aboutus-content p {
  color: #e5e5e5;
  font-size: 15px;
  line-height: 1.8;
}

/* BUTTONS */

.aboutus-btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 28px;
  border-radius: 25px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
}

.aboutus-btn-outline:hover {
  background-color: #fff;
  color: #0b0b55;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .aboutus-section {
    padding: 70px 0;
    background-attachment: scroll;
  }

  .aboutus-image img {
    width: 100%;
    margin-bottom: 30px;
  }

  .aboutus-badge {
    top: 10px;
    left: 10px;
    padding: 6px 14px;
  }
}

@media (max-width: 576px) {
  .aboutus-content h2 {
    font-size: 1.8rem;
  }
}
/* ***************************** */
/* -- WRAP 03 PRODUCTS SECTION-- */
/* ***************************** */
.productcards-section {
  background: linear-gradient(135deg, #0b0b55 0%, #1a1a80 100%);
  color: #fff;
  padding: 50px 0;
}

.productcards-section h2 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.productcards-card {
  background: linear-gradient(145deg, #ffffff, #f2f2f2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  height: 380px;
}

.productcards-card:hover {
  border-color: #ff0000;
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}
.productcards-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.productcards-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.productcards-card:hover .productcards-image img {
  transform: scale(1.05);
}

/* Card content */
.productcardscard-content {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-grow: 1;
}

.productcardscard-content h5 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 6px;
  color: #0b0b55;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.productcardscard-content p {
  font-size: 13px;
  color: #444;
  line-height: 1.4;
  /* overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical; */
  margin-bottom: 6px; /* tightened gap */
  min-height: 45px;
}

.productcards-btn {
  background: #ff0000;
  color: #fff;
  border: none;
  padding: 7px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 13.5px;
  transition: 0.3s;
  margin-top: 0;
  align-self: center;
}

.productcards-btn:hover {
  background-color: #d60000;
  transform: scale(1.05);
}

.productcards-carousel .owl-nav {
  text-align: center;
  margin-top: 25px;
}

.productcards-carousel .owl-nav button {
  background-color: #ff0000 !important;
  color: #fff !important;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  margin: 0 8px;
  transition: 0.3s;
}

.productcards-carousel .owl-nav button:hover {
  background-color: #d60000 !important;
}

@media (max-width: 991px) {
  .productcards-card {
    height: 320px;
  }
  .productcards-image {
    height: 140px;
  }
}

@media (max-width: 767px) {
  .productcards-card {
    height: 340px;
  }
  .productcards-image {
    height: 130px;
  }

  .productcardscard-content h5 {
    font-size: 0.95rem;
  }
  .productcardscard-content p {
    font-size: 12px;
  }
  .productcards-btn {
    font-size: 12px;
    padding: 6px 16px;
  }
}

@media (max-width: 480px) {
  .productcards-card {
    height: 270px;
  }
  .productcards-image {
    height: 120px;
  }

  .productcardscard-content h5 {
    font-size: 0.9rem;
  }
  .productcardscard-content p {
    font-size: 11.5px;
  }
  .productcards-btn {
    font-size: 11.5px;
    padding: 6px 14px;
  }
}

/* ******************************** */
/* -- WRAP BUSINESS MODEL SECTION-- */
/* ******************************** */

.businessmodel-section {
  padding: 40px 0 60px 0px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
  color: #0b0b55;
  position: relative;
  overflow: hidden;
}
.businessmodel-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg, #ffffff, #f2f2f2, #ffffff);
  animation: gradientMove 12s infinite linear;
  z-index: 0;
}

@keyframes gradientMove {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(0);
  }
}

.businessmodel-section h6 {
  color: #ff0000;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.businessmodel-section h2 {
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

/* .section-desc {
  color: #555;
  font-size: 15px;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
} */
.business-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  position: relative;
  z-index: 2;
  align-items: stretch;
}

@media (max-width: 992px) {
  .business-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .business-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
.bm-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.bm-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 25px rgba(255, 0, 0, 0.25);
}
.bm-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bm-card:hover .bm-image img {
  transform: scale(1.1);
}
.bm-glass {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 20px 15px;
  text-align: left;
  border-top: 3px solid #ff0000;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
}

.bm-card:hover .bm-glass {
  background: rgba(255, 255, 255, 0.95);
  border-top-color: #0b0b55;
}
.bm-glass h5 {
  color: #0b0b55;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
}
.bm-glass h5::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: #ff0000;
  margin-top: 6px;
  border-radius: 2px;
  transition: width 0.4s ease;
}

.bm-card:hover .bm-glass h5::after {
  width: 60px;
}
.bm-glass ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.bm-glass ul li {
  font-size: 14px;
  color: #000;
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}
.bm-glass ul li::before {
  content: "✓";
  color: #ff0000;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 600;
}
/* Responsive text */
@media (max-width: 768px) {
  .bm-glass h5 {
    font-size: 1rem;
  }
  .bm-glass ul li {
    font-size: 13px;
  }
}
/* ******************************** */
/* --WRAP OUR CLINTS LOGO SLIDER-- */
/* ******************************** */

.ourpartners h6 {
  text-align: center;
  color: #ff0000;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

@keyframes slides {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 30px 0px;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  content: "";
  width: 250px;
  height: 100%;
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 0),
    rgb(255, 255, 255)
  );
}

.logos:after {
  right: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgb(255, 255, 255)
  );
}

.logo_items {
  display: inline-block;
  animation: 60s slides infinite linear;
}

.logos:hover .logo_items {
  animation-play-state: paused;
}

.logo_items img {
  height: 100px;
  margin: 0 40px;
  object-fit: contain;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .logo_items img {
    height: 70px;
    margin: 0 5px;
  }
}

/* ========================== */
/* ------FAQ SECTION------ */
/* ========================== */
.faq-section {
  /* background: #f0f0f3; */
  background: linear-gradient(90deg, #f5f7ff, #edf2ff);

  color: #333;
  padding: 100px 0px;
}
.accordion-button {
  color: #fff;
  background: #e10f0f;
  font-weight: 500;
}
.accordion-button:not(.collapsed) {
  background: #ff0000;
  color: #fff;
}
.accordion-item {
  border: none;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.accordion-body {
  background: #fff;
}
/* ******************************** */
/* ------BLOG-SECTION------ */
/* ******************************** */
.blog-section {
  padding: 40px 0 60px 0px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
  color: #0b0b55;
}

.blog-section h6 {
  color: #ff0000;
  font-weight: 700;
  letter-spacing: 1px;
}

.blog-section h2 {
  font-weight: 700;
}

.blog-desc {
  color: #555;
  font-size: 15px;
  max-width: 720px;
  margin: 0 auto;
}

/* ===== BLOG CARD ===== */
.blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  aspect-ratio: 1 / 1;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 25px rgba(255, 0, 0, 0.25);
}

/* IMAGE DESIGN */
.blog-image {
  position: relative;
  height: 50%;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(11, 11, 85, 0.2),
    rgba(255, 0, 0, 0.3)
  );
  transition: opacity 0.4s ease;
}

.blog-card:hover .blog-overlay {
  opacity: 0.6;
}
.blog-content {
  margin-bottom: 30px;
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 50%;
}
.blog-content h5 {
  font-weight: 700;
  color: #0b0b55;
  margin-bottom: 8px;
}
.blog-content p {
  color: #444;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}
.blog-meta {
  font-size: 13px;
  color: #777;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-bottom: 12px;
}
.blog-meta i {
  color: #ff0000;
  margin-right: 4px;
}
.blog-btn {
  display: inline-block;
  background-color: #ff0000;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 25px;
  padding: 7px 20px;
  transition: 0.3s;
  align-self: flex-start;
}
.blog-btn:hover {
  background-color: #d60000;
  transform: scale(1.05);
}
/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .blog-section {
    padding: 70px 0;
  }
}
@media (max-width: 768px) {
  .blog-card {
    aspect-ratio: 4 / 3;
  }
}
@media (max-width: 576px) {
  .blog-card {
    aspect-ratio: auto;
  }
  .blog-image {
    clip-path: none;
    height: 200px;
  }
  .blog-content {
    height: auto;
  }
}
/* ******************************** */
/* -----WRAP-TOP-FOOTER SECTION-------- */
/* ******************************** */
.footer-section-top {
  width: 100%;
  background-color: #000;
}

.footer-section-box {
  position: relative;
  height: 250px;
  color: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
}
.footer-section-enquiry {
  background: url("https://img.freepik.com/free-photo/customer-service-handsome-young-guy-office-suit-with-laptop-headset-smiling-happily_140725-164887.jpg")
    center/cover no-repeat;
}
.footer-section-work {
  background: url("https://img.freepik.com/free-photo/office-discussion-busines-group-business_1303-915.jpg")
    center/cover no-repeat;
}

.footer-section-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
  transition: 0.4s ease;
}

.footer-section-box:hover::before {
  background: linear-gradient(
    90deg,
    rgba(11, 11, 85, 0.8),
    rgba(255, 0, 0, 0.8)
  );
}
.footer-section-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  padding: 10px 20px;
}
.footer-section-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
}
.footer-section-content p {
  color: #eaeaea;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.footer-section-btn {
  background: #ff0000;
  color: #fff;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
  border: none;
}
.footer-section-btn:hover {
  /* background: #0b0b55; */
  background: linear-gradient(90deg, #0b0b55, #ff0000);

  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
  .footer-section-box {
    height: 230px;
  }
  .footer-section-content h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .footer-section-box {
    height: 220px;
  }
  .footer-section-content h3 {
    font-size: 1.4rem;
  }
}
@media (max-width: 576px) {
  .footer-section-box {
    height: 200px;
  }
  .footer-section-content h3 {
    font-size: 1.2rem;
  }
  .footer-section-btn {
    font-size: 0.6rem;
    padding: 8px 24px;
  }
}
/* ******************************** */
/* ----------------FOOTER---------- */
/* ******************************** */
.footer-dark {
  background-color: #0b0b55;
  color: #f0f0f0;
  padding: 60px 0 20px;
  font-family: "Segoe UI", sans-serif;
  overflow-x: hidden;
}

.footer-dark h5 {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 18px;
  position: relative;
}

.footer-dark h5::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #0b0b55 0%, #ffffff 50%, #ffb26b 100%);
  border-radius: 2px;
}

.footer-dark .footer-logo {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  position: relative;
  display: inline-block;
  animation: fadeInLeft 1s ease forwards;
}

.footer-dark .footer-logo::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  /* background: linear-gradient(90deg, #fff, #ff5fa2); */
  background: linear-gradient(90deg, #0b0b55 0%, #ffffff 50%, #ffb26b 100%);

  margin-top: 10px;
  border-radius: 2px;
}

.footer-dark .footer-links a {
  display: block;
  color: #f1f1f1;
  text-decoration: none;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  font-size: 15px;
  position: relative;
  padding-left: 2px;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.3s;
}

.footer-dark .footer-links a:hover {
  color: #ffffff;
  padding-left: 10px;
  text-shadow: 0 0 8px #fff;
}

.footer-dark .footer-links a:hover::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
}

.footer-dark .social-icons a {
  color: #eee;
  font-size: 20px;
  margin-right: 15px;
  transition: all 0.3s ease;
  display: inline-block;
  transform: scale(1);
}

.footer-dark .social-icons a:hover {
  color: #fff;
  transform: scale(1.2);
  text-shadow: 0 0 10px #fff;
}

.footer-dark .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  text-align: center;
  color: #f1f1f1;
  font-size: 14px;
  margin-top: 40px;
  animation: fadeIn 1.5s ease forwards;
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
/* ====================================================================================================================== */
/* =======CONTACT-US-PAGE============CONTACT-US-PAGE=============CONTACT-US-PAGE=========CONTACT-US-PAGE================= */
/* ====================================================================================================================== */
.contact-us-hero {
  background: linear-gradient(90deg, #0b0b55, #ff0000);
  color: #fff;
}
.contact-us-hero h1 {
  font-size: 2.4rem;
}
.contact-us-hero p {
  font-size: 1.05rem;
}

.contact-us-section {
  background: #f8f9fa;
}

.contact-us-form {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.contact-us-form:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 35px rgba(11, 11, 85, 0.15);
}
.contact-us-form h4 {
  color: #0b0b55;
}
.contact-us-form .form-control {
  border-radius: 10px;
  border: 1px solid #ccc;
  transition: 0.3s;
}
.contact-us-form .form-control:focus {
  border-color: #ff0000;
  box-shadow: 0 0 0 0.15rem rgba(255, 0, 0, 0.25);
}
.contact-us-btn {
  background: linear-gradient(90deg, #0b0b55, #ff0000);
  border: none;
  color: #fff;
  padding: 15px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.contact-us-btn:hover {
  background: linear-gradient(90deg, #ff0000, #0b0b55);
  color: #fff;
}

/* --MAP-- */
.contact-us-info-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98),
    rgba(240, 240, 240, 0.9)
  );
  border-radius: 15px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  height: 100%;
  padding: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(11, 11, 85, 0.08);
}
.contact-us-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(11, 11, 85, 0.18);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1),
    rgba(255, 245, 245, 0.95)
  );
}
.contact-us-info h4 {
  color: #0b0b55;
}
.contact-us-icon {
  background: linear-gradient(135deg, #0b0b55, #ff0000);
  color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.contact-us-text h6 {
  font-weight: 600;
  color: #0b0b55;
  margin-bottom: 6px;
}
.contact-us-text p,
.contact-us-text a {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  text-decoration: none;
}
.contact-us-text a:hover {
  color: #ff0000;
  text-decoration: underline;
}
.contact-us-info .row > div {
  display: flex;
}
.contact-us-info-card {
  flex: 1;
}
.contact-us-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.contact-us-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  transition: 0.3s ease;
}
.contact-us-social-icon.fb {
  background: #1877f2;
}
.contact-us-social-icon.linkedin {
  background: #0a66c2;
}
.contact-us-social-icon.insta {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}
.contact-us-social-icon.youtube {
  background: #ff0000;
}
.contact-us-social-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-us-map iframe {
  width: 100%;
  height: 420px;
  border: none;
}

@media (max-width: 992px) {
  .contact-us-hero h1 {
    font-size: 2rem;
  }
  .contact-us-info-card {
    flex-direction: row;
  }
}
@media (max-width: 576px) {
  .contact-us-info-card {
    flex-direction: row;
  }
  .contact-us-info .row > div {
    display: block;
  }
}
/* ====================================================================================================================== */
/* =======ABOUT-US-PAGE==========ABOUT-US-PAGE==========ABOUT-US-PAGE=========ABOUT-US-PAGE=========ABOUT-US-PAGE======== */
/* ====================================================================================================================== */
.aboutus-hero {
  background: linear-gradient(90deg, #0b0b55, #ff0000);
  color: #fff;
}
.aboutus-hero h1 {
  font-size: 2.3rem;
}
.aboutus-hero p {
  font-size: 1.05rem;
}
.aboutus-overview img {
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}
.aboutus-overview p {
  color: #444;
  line-height: 1.8;
}
.aboutus-vision {
  background: linear-gradient(90deg, #0b0b55, #2b2ba0);
  border-top: 5px solid #ff0000;
  border-bottom: 5px solid #ff0000;
}
.aboutus-mission {
  background: linear-gradient(180deg, #ffffff, #f8f8f8);
}
.aboutus-mission h2 {
  color: #0b0b55;
}
.aboutus-mission-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}
.aboutus-mission-card img {
  width: 65px;
  height: 65px;
  margin-bottom: 15px;
}
.aboutus-mission-card p {
  color: #444;
  font-size: 0.96rem;
  line-height: 1.6;
}
.aboutus-mission-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(11, 11, 85, 0.2);
}
.aboutus-values {
  background: #fff;
}
.aboutus-values h2 {
  color: #0b0b55;
}
.aboutus-value-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  height: 100%;
}
.aboutus-value-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}
.aboutus-value-card p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
}
.aboutus-value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(11, 11, 85, 0.15);
}
@media (max-width: 991px) {
  .aboutus-hero h1 {
    font-size: 1.8rem;
  }
  .aboutus-mission-card,
  .aboutus-value-card {
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .aboutus-overview img {
    width: 100%;
  }
  .aboutus-hero p {
    font-size: 1rem;
  }
}
/* ====================================================================================================================== */
/* =======PRODUCT-PAGE=======PRODUCT-PAGE======PRODUCT-PAGE=========PRODUCT-PAGE=====PRODUCT-PAGE======== */
/* ====================================================================================================================== */
.product-hero {
  background: linear-gradient(135deg, #0b0b55 0%, #1a1a80 100%);
  min-height: 65vh;
  padding: 60px 20px;
}
.product-hero h1 {
  font-size: 2.4rem;
  line-height: 1.3;
}
.product-hero p {
  color: #e3e6f0;
  max-width: 700px;
  margin: 0 auto;
}
.product-hero .btn {
  background: #ec2029;
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}
.product-hero .btn:hover {
  background: #c51b23;
}

.premium-product-page {
  background: linear-gradient(135deg, #f7f9fc 0%, #eef2f7 100%);
}
.premium-product-page h2 {
  color: #0b0b55;
}
.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e9ecef;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.product-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img img {
  transform: scale(1.05);
}
.product-body {
  padding: 20px 16px 25px;
}
.product-body h5 {
  font-size: 1.05rem;
  color: #1a1a80;
}
.product-body p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.5;
}
.product-body .partners {
  font-size: 0.85rem;
  color: #777;
}
.premium-product-page .btn-buy {
  background: #ec2029;
  color: #fff;
  font-weight: 600;
  border-radius: 25px;
  padding: 8px 0;
  transition: all 0.3s ease;
}
.premium-product-page .btn-buy:hover {
  background: #c51b23;
}

@media (max-width: 767px) {
  .product-hero h1 {
    font-size: 1.8rem;
  }
  .product-img img {
    height: 180px;
  }
}
@media (max-width: 576px) {
  .premium-product-page .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 375px) {
  .product-hero {
    padding: 40px 15px;
    min-height: 60vh;
    text-align: center;
  }

  .product-hero h1 {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .product-hero p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .product-hero .btn {
    font-size: 0.9rem;
    padding: 8px 20px;
  }

  .premium-product-page .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .product-card {
    border-radius: 12px;
    padding: 0;
  }

  .product-img img {
    height: 150px;
    object-fit: cover;
  }

  .product-body {
    padding: 12px 10px 18px;
  }

  .product-body h5 {
    font-size: 0.95rem;
  }

  .product-body p {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }

  .product-body .partners {
    font-size: 0.78rem;
  }

  .premium-product-page .btn-buy {
    font-size: 0.85rem;
    padding: 6px 0;
    border-radius: 20px;
  }

  .premium-product-page {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .premium-product-page h2 {
    font-size: 1.4rem;
  }

  .premium-product-page p {
    font-size: 0.9rem;
  }
}
/* ====================================================================================================================== */
/* =======CARRIER-PAGE============CARRIER-PAGE=============CARRIER-PAGE========CARRIER-PAGE===========CARRIER-PAGE====== */
/* ====================================================================================================================== */
.career-hero {
  background: linear-gradient(135deg, #0b0b55, #ec2029);
  min-height: 50vh;
  background-size: cover;
  background-attachment: fixed;
}
.career-why .why-card {
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
}
.career-why .why-card:hover {
  transform: translateY(-8px);
  border-top: 4px solid #ff0000;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}
.why-card-icon {
  color: #ff0000;
}
.why-card h5 {
  color: #0b0b55;
}
.job-card h5 {
  color: #ff0000;
}
.carr-appnow {
  color: #ff0000;
  border: 2px solid #ff0000;
  background-color: transparent;
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 10px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.carr-appnow:hover {
  color: #fff;
  background-color: #ff0000;
  border-color: #ec2029;
}
.career-openings .job-card {
  transition: all 0.3s ease;
}
.career-openings .job-card:hover {
  transform: translateY(-6px);
  border: 1px solid #ff0000;
  box-shadow: 0 6px 25px rgba(236, 32, 41, 0.15);
}
.career-apply {
  background: linear-gradient(135deg, #0b0b55, #1a1a80);
}
.career-apply input {
  border-radius: 10px;
  border: none;
  padding: 12px;
}
.career-apply input:focus {
  outline: none;
  box-shadow: 0 0 5px 2px #ffc107;
}
.career-life img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.career-life img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.career-life .btn-warning {
  background-color: #ffc107;
  color: #000;
  border: none;
}
.career-life .btn-warning:hover {
  background-color: #ffda3a;
}

@media (max-width: 767px) {
  .career-hero {
    min-height: 60vh;
  }
  .career-apply form .col-md-3,
  .career-apply form .col-md-2 {
    width: 100%;
  }
}
/* ====================================================================================================================== */
/* =======PRODUCT-DETAIL-PAGE=============PRODUCT-DETAIL-PAGE=========PRODUCT-DETAIL-PAGE========PRODUCT-DETAIL-PAGE===== */
/* ====================================================================================================================== */

.productdetail-section {
  padding: 100px 0 70px;
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fb 100%);
}

.productdetail-image {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.6s ease;
}

.productdetail-image:hover {
  transform: scale(1.03);
}

.productdetail-title {
  font-weight: 700;
  font-size: 2.2rem;
  color: #1a1a1a;
  margin-bottom: 15px;
  position: relative;
}

.productdetail-title::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #ec2029;
  display: block;
  margin-top: 10px;
  border-radius: 3px;
}

.productdetail-text {
  color: #555555;
  margin-top: 25px;
  line-height: 1.8;
}

.productdetail-list {
  list-style: none;
  margin: 25px 0;
  padding: 0;
}

.productdetail-list li {
  margin-bottom: 10px;
  font-weight: 500;
  color: #1a1a1a;
}

.productdetail-list li i {
  color: #ec2029;
  margin-right: 8px;
}

.productdetail-price {
  font-size: 28px;
  font-weight: 700;
  color: #ec2029;
  margin: 15px 0;
}

.productdetail-btn {
  display: inline-block;
  padding: 12px 40px;
  border: 2px solid #ec2029;
  color: #ec2029;
  font-weight: 600;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.productdetail-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #ec2029 0%, #f7444e 100%);
  z-index: -1;
  transition: all 0.4s ease;
}

.productdetail-btn:hover::before {
  left: 0;
}

.productdetail-btn:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

/* ===== TABS SECTION ===== */
.productdetail-tabs-section {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 50px 30px;
  margin-bottom: 100px;
}

.productdetail-tabs-section .nav-tabs {
  border-bottom: 2px solid #eeeeee;
}

.productdetail-tabs-section .nav-link {
  border: none;
  color: #555555;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 30px;
  transition: all 0.3s ease;
}

.productdetail-tabs-section .nav-link.active {
  color: #ec2029;
  border-bottom: 3px solid #ec2029;
}

.productdetail-tabcontent {
  padding: 40px 10px 10px;
  line-height: 1.8;
  color: #1a1a1a;
}

.productdetail-section .tab-heading {
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.productdetail-section .tab-heading i {
  color: #ec2029;
  margin-right: 8px;
}

.productdetail-section .tab-list {
  list-style: none;
  margin: 15px 0;
  padding: 0;
}

.productdetail-section .tab-list li {
  margin-bottom: 10px;
  font-weight: 500;
  color: #555555;
}

.productdetail-section .tab-list li i {
  color: #ec2029;
  margin-right: 8px;
}

@media (max-width: 991px) {
  .productdetail-section {
    padding: 60px 0;
  }

  .productdetail-content {
    text-align: center;
    margin-top: 30px;
  }

  .productdetail-title {
    font-size: 1.8rem;
  }

  .productdetail-title::after {
    margin: 10px auto;
  }

  .productdetail-list {
    text-align: left;
    display: inline-block;
  }

  .productdetail-btn {
    padding: 10px 32px;
    font-size: 0.95rem;
  }

  .productdetail-tabs-section {
    padding: 30px 15px;
  }

  .productdetail-tabs-section .nav-link {
    font-size: 0.9rem;
    padding: 10px 16px;
  }
  .laber-service-box h6 {
    color: #ff0000;
    font-weight: 700;
    font-size: 2rem;
}
}

@media (max-width: 320px) {
.row.g-4.justify-content-center {
    display: grid;
}
}
