@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Eagle+Lake&family=Exo+2:ital,wght@0,100..900;1,100..900&family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Italianno&family=Monda:wght@400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Outfit:wght@100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quattrocento:wght@400;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Urbanist:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-color: #336aea;
  --secondary-color: #0f0c1d;
  --third-color: #6a6f78;
  --fourth-color: #febe42;
  --fifth-color: #002883;

  --primary-color-rgb: 51, 106, 234;
  --secondary-color-rgb: 15, 12, 29;
  --third-color-rgb: 106, 111, 120;
  --fourth-color-rgb: 254, 190, 66;
  --link-color: #336aea;
  --link-color-hover: #336aea;
  --link-color-active: #336aea;
  --gradient-color-from: #336aea;
  --gradient-color-to: #0f0c1d;

  --font-family: "Outfit", sans-serif;
}

body {
  font-family: var(--font-family);
  color: var(--secondary-color);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100%;
}

/* Top Header Styles */
.top-header {
  background: var(--primary-color);
  color: white;
  padding: 12px;
  font-size: 0.9rem;
  position: relative;
  z-index: 999;
}
.d-flex.ms-3 a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s ease, color 0.3s ease;
  padding: 6px;
  margin-right: 12px; /* consistent spacing between icons */
}


.global-overlay-btn { 
    position: absolute;
    z-index: 999;
    top: 30%;
    left: 34%;
    transform: translate(-50%, -50%);
    
    width: 70px;
    height: 70px;

    background: var(--link-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 35px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
}

.global-overlay-btn:hover {
    background: var(--fifth-color);
    transform: translate(-50%, -50%) scale(1.08);
}
.banner-section {
    position: relative;
}



/* Last icon margin fix */
.d-flex.ms-3 a:last-child {
  margin-right: 0;
}

.d-flex.ms-3 a:hover,
.d-flex.ms-3 a:focus {
  background-color: var(--fourth-color);
  color: #fff;
}
.mySwiper {
    position: relative;
}

@media (max-width: 767px) {
  .d-flex.ms-3 {
    display: none !important;
  }
}

.top-header a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-header a:hover {
  color: var(--fourth-color);
}

.top-header .divider {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 15px;
}
/* ---------- Medium Devices (Tablets) ---------- */
@media (max-width: 991px) {
  .top-header {
    font-size: 13px;
  }

  .top-header .divider {
    margin: 0 8px;
  }
  .global-overlay-btn{
    width: 60px;
    height: 60px;
    top: 20% !important;
  }
  
}

@media (max-width: 767px) {
  /* Make the top-bar container a horizontal flex container */
  #top-bar {
    flex-direction: row !important; /* force row direction */
    justify-content: center !important; /* center horizontally */
    flex-wrap: nowrap; /* prevent wrapping */
    gap: 10px; /* space between icons */
  }

  /* Remove default stacking in col-md-8 */
  .col-md-8 #top-bar > a,
  .col-md-8 #top-bar .divider {
    display: inline-flex !important;
    align-items: center;
  }

  /* Adjust divider vertical line for smaller screen (keep visible with some margin) */
  #top-bar .divider {
    height: 20px;
    margin: 0 8px;
  }

  /* Optional: reduce icon and font sizes to fit */

  #top-bar span {
   display: none;
  }
  
   #top-bar i{
     display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s ease, color 0.3s ease;
  padding: 6px;
  margin-right: 12px;
   }
  /* Make sure the icons and text align properly and do not wrap */
  #top-bar a {
    white-space: nowrap;
  }
  #top-bar i:hover{
 background-color: var(--fourth-color);
  color: #fff;
  }
}


/* ---------- Small Devices (Mobile) ---------- */
@media (max-width: 768px) {
  .top-header {
    text-align: center;
    font-size: 11px;
    padding: 12px 0;
  }

  /* Email + Location stacking */
  .top-header .col-md-6:first-child .d-flex {
    gap: 6px;
    margin-bottom: 10px;
  }

  /* Hide divider on mobile */

  /* Right links become centered */

  #mobileMenu .dropdown-menu {
    display: none;
    /* add other styles if needed e.g. padding, background */
  }

  #mobileMenu .dropdown-menu.show {
    display: block;
  }
  .top-header .col-md-6:last-child .d-flex {
    justify-content: center !important;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
  }

  /* Center social icons */
  .top-header .col-md-6:last-child .d-flex .d-flex {
    justify-content: center !important;
  }
}

/* ---------- Extra Small Devices (Small Phones) ---------- */
@media (max-width: 480px) {
  .top-header a {
    font-size: 12px;
  }

  .top-header i {
    font-size: 14px;
  }
}

/* Main Header Styles */
.main-header {
  background-color: transparent;
  position: absolute;
  /* Height of top header */
  left: 0;
  background: #f8f8f86e;
  right: 0;
  z-index: 1001;
  transition: all 0.3s ease;
}

.main-header.scrolled {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
}

.main-header.scrolled .navbar-brand span {
  color: var(--fifth-color) !important;
  text-shadow: none;
}

.text-light {
  color: var(--fifth-color) !important;
}

.navbar-nav .nav-link {
  color: rgb(0, 0, 0);
  font-weight: 500;
  padding: 0.5rem 1rem;
  position: relative;
  font-size: 17px;
}

.navbar-expand-lg .navbar-nav {
  flex-direction: row;
  gap: 10px;
}

.py-2 {
  border-bottom: 1px solid #00000026;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.navbar-nav .dropdown-menu {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px 0;
}

.navbar-nav .dropdown-item {
  padding: 8px 20px;
  width: 200px;
  color: var(--secondary-color);
}

.navbar-nav .dropdown-item:hover {
  background-color: rgba(var(--primary-color-rgb), 0.1);
  color: var(--primary-color);
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-header {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  text-decoration: none;
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
  position: absolute;
  right: -50px;
}

.sub-list {
  list-style: none;
  padding-left: 0;
}

.header-actions .action-item {
  margin-left: 20px;
  font-size: 1.2rem;
  color: white;
  position: relative;
  cursor: pointer;
  transition: color 0.3s ease;
}

.main-header.scrolled .header-actions .action-item {
  color: var(--secondary-color);
}

.header-actions .action-item:hover {
  color: var(--fourth-color);
}

.cart-counter {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mega Menu */
.mega-menu {
  width: 100%;
  left: 0;
  padding: 30px 0;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.showcase-item {
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.showcase-item:hover {
  transform: translateY(-5px);
}

.showcase-img {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.showcase-img img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.showcase-item:hover .showcase-img img {
  transform: scale(1.05);
}

.showcase-links {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(var(--secondary-color-rgb), 0.8);
  padding: 10px;
  display: flex;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.showcase-item:hover .showcase-links {
  opacity: 1;
}

.showcase-links a {
  color: white;
  padding: 5px 15px;
  margin: 0 5px;
  border-radius: 4px;
  font-size: 0.85rem;
  text-decoration: none;
}

.showcase-links a.active {
  background-color: var(--primary-color);
}

.showcase-links a:not(.active) {
  background-color: rgba(255, 255, 255, 0.2);
}

.showcase-title {
  margin-top: 15px;
  font-weight: 600;
  color: var(--secondary-color);
}

.showcase-title cite {
  font-style: normal;
  color: var(--primary-color);
}

.notification {
  background-color: var(--fourth-color);
  color: var(--secondary-color);
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: 8px;
  font-weight: 600;
}
.dropdown-item {
  white-space: normal !important;
}

/* Mobile Header */
.mobile-header {
  display: none;
  background-color: white;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
}

/* Mobile Menu Container */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: #fff;
  z-index: 1100;
  overflow-y: auto;
  transition: left 0.3s ease;
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  left: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  border-bottom: 1px solid #ddd;
}

.mobile-menu-header .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu-header .navbar-brand img {
  height: 40px;
  width: auto;
}

.mobile-menu-header .navbar-brand span {
  font-weight: 600;
  font-size: 18px;
  color: #222;
  white-space: nowrap;
}

.mobile-menu-close {
  cursor: pointer;
  font-size: 24px;
  color: #444;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: var(--primary-color);
}

/* Mobile Nav */
.mobile-nav {
  padding: 0 1rem;
}

.mobile-nav ul.navbar-nav {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.mobile-nav ul.navbar-nav > li.nav-item {
  border-bottom: 1px solid #eee;
}

.mobile-nav ul.navbar-nav > li.nav-item:last-child {
  border-bottom: none;
}

/* Nav links */
.mobile-nav ul.navbar-nav .nav-link {
  display: block;
  width: 100%;
  padding: 12px 8px;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.3s ease;
}

.mobile-nav ul.navbar-nav .nav-link:hover,
.mobile-nav ul.navbar-nav .nav-link.active {
  color: var(--primary-color);
  background-color: #f9f9f9;
}

/* Dropdown toggle in mobile */
.mobile-nav ul.navbar-nav li.dropdown > a.dropdown-toggle {
  position: relative;
  cursor: pointer;
}

.mobile-nav ul.navbar-nav li.dropdown > a.dropdown-toggle::after {
  content: "\25BC"; /* Down arrow */
  position: absolute;
  right: 15px;
  font-size: 0.7em;
  transition: transform 0.3s ease;
}

.mobile-nav ul.navbar-nav li.dropdown > a.dropdown-toggle.open::after {
  transform: rotate(180deg);
}

/* Dropdown submenu */
.mobile-nav ul.navbar-nav li.dropdown > .collapse,
.mobile-nav ul.navbar-nav li.dropdown > ul.dropdown-menu {
  padding-left: 15px;
  background-color: #fafafa;
  display: none;
  margin: 0;
}

.mobile-nav ul.navbar-nav li.dropdown > .collapse.show,
.mobile-nav ul.navbar-nav li.dropdown > ul.dropdown-menu.show {
  display: block;
}

/* Submenu links */
.mobile-nav ul.navbar-nav li.dropdown .dropdown-item {
  display: block;
  padding: 10px 8px;
  color: #555;
  font-weight: 400;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.3s ease;
}

.mobile-nav ul.navbar-nav li.dropdown .dropdown-item:hover {
  color: var(--primary-color);
  background-color: #eee;
}

/* Scroll for long mega menu */
.mega-menu-scroll {
  max-height: 450px;
  overflow-y: auto;
}

/* Responsive: hide desktop header on mobile and show mobile menu */
@media (min-width: 1200px) {
  .mobile-nav {
    display: none;
  }
}
@media (max-width: 991px) {
  .desktop-header {
    display: none;
  }
  .mobile-header {
    display: block;
  }
}

/* Backdrop to darken the background when menu is open */
.mobile-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1050;
}

.mobile-backdrop.active {
  display: block;
}

/* Lock body scroll when menu open */
body.menu-open {
  overflow: hidden;
}

/* Slider Section */
/* Slider Section */
.slider-section {
  position: relative;
  height: 600px;
  overflow: hidden;
  margin-top: 0;
}

/* Common Overlay Images */
.bg-overlay-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.overlay-img {
  position: absolute;
  opacity: 1;
  animation: floatOverlay 15s ease-in-out infinite;
}

.overlay-1 {
  top: 0%;
  left: 0%;
  /* width: 300px; */
  /* height: 100%; */
  animation-delay: 0s;
  z-index: 3;
}

.overlay-2 {
  bottom: 0%;
  right: 0%;
  /* width: 280px;
    height: 220px; */
  animation-delay: 3s;
  z-index: 3;
}

.overlay-img img {
  width: 115%;
  height: 100%;
  object-fit: contain;
  /* filter: brightness(0) invert(1); */
  /* opacity: 0.6; */
}

/* Floating animation for overlay images */
@keyframes floatOverlay {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-20px) rotate(2deg);
  }

  66% {
    transform: translateY(10px) rotate(-1deg);
  }
}

/* Swiper Styles */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  overflow: hidden;
  padding-left: 300px;
}

/* Slide Backgrounds */
.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.slide-1 .slide-bg {
  background-image: url("../assets/images/3d-rendering-business-meeting-yellow-working-room-with-stair.jpg");
}

.slide-2 .slide-bg {
  background-image: url("../assets/images/slider-2.jpg");
}

/* Slide Content */
.slide-content {
    position: absolute;           /* Allows free positioning */
    left: 130px;                  /* Distance from the left edge */
    top: 60%;                     /* Vertical centering */
    transform: translateY(-50%);  /* Adjust vertical centering */
    z-index: 4;
    max-width: 550px;             /* Optional max width */
    padding: 20px;                /* Space around content */
    color: white !important;
    /*background: rgba(33, 37, 41, 0.45); */
    backdrop-filter: blur(2px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;          /* Rounded corners */
    display: inline-block;        /* Shrink-wrap to content width */
    box-sizing: border-box;       /* Ensure padding is inside width */
}


.slide-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 25px;
    text-transform: capitalize;
    position: relative;
    /* background: rgba(33, 37, 41, 0.45); */
    /* border: 2px solid rgba(255, 255, 255, 0.3); */
    display: inline-block;
    color: #fff;
    box-shadow: black;
    text-shadow: 3px 3px 3px black;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 12, 29, 0.5);
}

.slide-subtitle:after {
  content: "";
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
}

.slide-title {
    /*text-shadow: 4px 4px 4px black;*/
     text-shadow: -3px 0 4px black, 3px 0 4px black;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin-bottom: 35px;
    /* background: rgba(33, 37, 41, 0.45); */
    /* border: 2px solid rgba(255, 255, 255, 0.3); */
}

.slide-bg::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  /* background: rgba(0, 0, 0, 0.3) !important; */
  z-index: 1 !important;
}

/* Decorative Arrow */
.decorative-arrow {
  position: absolute;
  right:7%;
  bottom: 57%;
  z-index: 4;
  animation: floatArrow 4s ease-in-out infinite;
  opacity: 1;
}

.decorative-arrow img {
  width: 180px !important;
}

@keyframes floatArrow {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

/* Navigation Arrows */
.swiper-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px);
}

.swiper-arrow:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.swiper-arrow-prev {
  left: 30px;
  color: var(--fourth-color);
  border: 2px solid var(--fourth-color);
}

.swiper-arrow-next {
  right: 30px;
  color: var(--fourth-color);
  border: 2px solid var(--fourth-color);
}

/* Pagination */
.swiper-pagination {
  bottom: 30px !important;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: var(--primary-color);
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .slide-title {
    font-size: 3.5rem;
  }

  .overlay-1,
  .overlay-2 {
    width: 200px;
    height: 160px;
  }

  .swiper-arrow {
    width: 50px;
    height: 50px;
  }

  .swiper-arrow-prev {
    left: 15px;
  }

  .swiper-arrow-next {
    right: 15px;
  }
}

@media (max-width: 767.98px) {
  .slide-title {
    font-size: 2.8rem;
  }

  .slide-subtitle {
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .slide-subtitle:after {
    width: 30px;
    right: -40px;
  }

  .video-btn {
    width: 60px;
    height: 60px;
  }

  .video-btn i {
    font-size: 1.4rem;
  }

  .overlay-1,
  .overlay-2 {
    width: 150px;
    height: 120px;
    opacity: 0.3;
  }

  .decorative-arrow {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .slide-title {
    font-size: 2.2rem;
  }

  .btn-slider {
    padding: 12px 30px;
    font-size: 0.9rem;
  }

  .overlay-1,
  .overlay-2 {
    width: 120px;
    height: 100px;
  }
}

.btn-contact {
  background-color: #585656;
  border-color: #585656;
  padding: 8px 20px;
  font-weight: 500;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background-color: white;
  border-color: #585656;
  color: #585656;
  transform: translateY(-2px);
}

.main-header.scrolled .btn-contact {
  background-color: #fff;
  border-color: #585656;
  color: #000 !important;
}

.main-header.scrolled .btn-contact:hover {
  background-color: white;
  border-color: #585656;
  color: #585656;
  transform: translateY(-2px);
}

.navbar-brand span {
  font-size: 27px;
  font-weight: 600;
}

.pxl-section {
  padding: 60px 0;
  background-color: #fff;
  position: relative;
}

.pxl-item--inner {
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
}

.pxl-item--icon a {
  display: inline-flex;
  width: 70px;
  height: 70px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: #336aea1a;
  /* gray background */
  color: var(--primary-color);
  /* icon primary color */
  font-size: 25px;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
  border-left: 2px solid var(--primary-color);
}

/* Fill layer */
.pxl-item--icon a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary-color);
  /* fill color */
  transform: translateX(-100%);
  transition: transform 1s ease;
  z-index: -1;
}

.pxl-item--inner:hover .pxl-item--icon a::before {
  transform: translateX(0);
  /* slide fill left to right */
}

/* Icon turns white when filled */
.pxl-item--inner:hover .pxl-item--icon a {
  color: #fff;
}

/* Optional hover scale */
.pxl-item--icon a:hover {
  transform: scale(1.1);
}

.pxl-item--meta .pxl-item--title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.pxl-item--excerpt {
  color: var(--third-color);
  font-size: 16px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-subtitle {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 1px;
  position: relative;
  display: inline-flex;
  align-items: center;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.section-description {
  font-size: 18px;
  color: var(--third-color);
  max-width: 600px;
  margin: 0 auto;
}

.banner-bottom-cards .container .row {
  border-bottom: 1px solid #bed2ff;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  
  .pxl-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .pxl-section {
    padding: 60px 0;
  }

  .pxl-item--inner {
    padding: 40px 25px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-description {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .navbar-brand span {
    font-size: 16px;
    font-weight: 600;
  }
  .navbar-brand img {
    height: 46px;
    width: 46px;
  }
  .pxl-item--inner {
    padding: 30px 20px;
  }

  .section-title {
    font-size: 28px;
  }
}


.pxl-section-bg-parallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 120%; */
  z-index: 0;
}

/* Banner Styles */
.pxl-banner {
  position: relative;
  z-index: 1;
}

.pxl-banner2 .pxl-banner-inner {
  position: relative;
  z-index: 1;
  padding-bottom: 150px;
  padding-right: 128px;
}

.pxl-banner2 .pxl-banner-inner:before {
  width: 392px;
  height: 392px;
  content: "";
  display: block;
  position: absolute;
  bottom: 5px;
  right: 40px;
  z-index: -1;
  background-color: var(--primary-color);
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  animation: pxl_bottom_top_small 3s ease-out infinite;
  -webkit-animation: pxl_bottom_top_small 3s ease-out infinite;
}

.pxl-banner2 .banner-divider {
  width: 15px;
  height: 100px;
  background-color: var(--primary-color);
  position: absolute;
  top: 0;
  right: 80px;
}

.banner-divider {
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  margin-bottom: 30px;
  border-radius: 2px;
}

.box-image-main {
  padding-left: 20px;
  padding-bottom: 20px;
  position: relative;
  z-index: 1;
}

.image-bottom-left {
  position: absolute;
  bottom: -30px;
  left: -30px;
  z-index: -1;
  animation: float 6s ease-in-out infinite;
}

.image-bottom-left img {
  width: 230px;
  height: auto;
  opacity: 0.7;
}

.pxl-banner2 .box-image-bottom {
  position: absolute;
  bottom: 0;
  right: 30px;
  max-width: 75%;
  text-align: center;
  z-index: 2;
}

.hover-light-horizontal:before {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  opacity: 1;
  z-index: 1;
  -webkit-transition: all 400ms linear;
  -khtml-transition: all 400ms linear;
  -moz-transition: all 400ms linear;
  -ms-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
  pointer-events: none;
}

.video-btn {
  width: 80px;

  height: 80px;

  background: var(--gradient-color-from);

  border: 2px solid rgba(255, 255, 255, 0.3);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  /* margin: 0 auto 40px; */

  cursor: pointer;

  transition: all 0.3s ease;

  backdrop-filter: blur(10px);
}

.video-btn i {
  color: white;

  font-size: 1.8rem;

  margin-left: 5px;
}

.box-image-bottom img {
  width: 95%;

  border-radius: 5% !important;
  object-fit: contain;
  max-width: 530px;
}

/* Heading Styles */

.pxl-item--subtitle {
  display: inline-block;
  margin-bottom: 15px;
}

.pxl-item--subtext {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 1px;
  position: relative;
  display: inline-flex;
  align-items: center;
}

/*.pxl-item--subdivider {*/
/*  width: 30px;*/
/*  height: 2px;*/
/*  background: var(--primary-color);*/
/*  margin-left: 9px;*/
/*  display: inline-block;*/
/*}*/

.pxl-item--title {
  font-size: 42px;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1.2;
  margin-bottom: 20px;
}

.pxl-item--icon {
  color: var(--primary-color);
  margin-right: 20px;
}

/* Text Editor Styles */
.pxl-text-editor {
  margin-bottom: 10px;
}

.pxl-text-editor p {
  color: var(--third-color);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Progress Bar Styles */
.pxl-progressbar {
  margin: 40px 0;
}

.pxl--meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.pxl--title {
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 0;
}

.pxl--holder {
  height: 6px;
  background-color: rgba(var(--third-color-rgb), 0.2);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.pxl--progressbar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--fourth-color));
  border-radius: 3px;
  position: relative;
  transition: width 2s ease-in-out;
}

.pxl--percentage {
  position: absolute;
  right: 0;
  top: -25px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
}

/* Button Styles */

.pxl-button .btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pxl-button .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--fourth-color),
    var(--primary-color)
  );
  transition: left 0.3s ease;
  z-index: -1;
}

.pxl-button .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(var(--primary-color-rgb), 0.3);
}

.pxl-button .btn:hover::before {
  left: 0;
}

.pxl--btn-text {
  position: relative;
  z-index: 1;
}

/* Arrow Image */
.pxl-image-single {
  position: absolute;
  top: 50px;
  left: 100px;
  animation: bounce 3s infinite;
  z-index: -1;
}

.pxl-image-single img {
  width: 60px;
  height: auto;
  opacity: 1;
  transform: rotateZ(180deg);
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

.hover-light-vertical:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

.hover-light-horizontal:hover {
  transform: translateX(5px);
  transition: transform 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .pxl-section {
    padding: 80px 0;
  }

  .pxl-item--title {
    font-size: 36px;
  }

  .image-bottom-left {
    left: -15px;
    bottom: -15px;
  }

  .image-bottom-left img {
    width: 120px;
  }
}

@media (max-width: 768px) {
  .pxl-section {
    padding: 60px 0;
  }

  .pxl-item--title {
    font-size: 32px;
  }

  .box-image-main,
  .box-image-bottom {
    margin: 0 auto 30px;
    text-align: center;
  }

  .image-bottom-left {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 20px;
  }

  .pxl-image-single {
    position: relative;
    bottom: 0;
    right: 0;
    text-align: center;
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .pxl-item--title {
    font-size: 28px;
  }

  .pxl-button .btn {
    padding: 12px 25px;
    font-size: 14px;
  }
}

.principle-section {
  padding: 80px 0;
  background: var(--secondary-color);
  position: relative;
  overflow: hidden;
}

.principle-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

/* Background Images */
.principlebgimages {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.priciple-bg-1 {
  position: absolute;
  bottom: -7%;
  right: -5%;
  transform: translateY(-50%);
  /* opacity: 0.4; */
  animation: floatAnimation 6s ease-in-out infinite;
}

.priciple-bg-2 {
  position: absolute;
  top: 30%;
  left: 0%;
  animation: floatAnimation 8s ease-in-out infinite reverse;
}

.priciple-bg-1 img,
.priciple-bg-2 img {
  max-width: 400px;
  height: auto;
}

@keyframes floatAnimation {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Header Styles */
.principle-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.principle-text-editor {
  margin-bottom: 15px;
}

.principle-text-editor p {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.7;
  margin-bottom: 0;
}

.principle-text-editor span {
  color: var(--primary-color);
  font-weight: 700;
}

.principle-heading {
  margin-bottom: 40px;
}

.principle-heading .principle-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 0;
}

/* Swiper Container */
.principle-swiper {
  width: 100%;
  padding: 20px 0 80px;
  position: relative;
  z-index: 2;
}

.principle-swiper .swiper-slide {
  padding-left: 0;
}

/* Icon Box Styles */
.principle-icon-box {
  position: relative;
  height: 100%;
}

.principle-item-inner {
  background: #fff;
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.45s ease;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  min-height: 450px;
}

/* Hover Glow & Lift Effect */
.principle-item-inner:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(var(--primary-color-rgb), 0.45);
}

.principle-icon-box .principle-item-inner:hover::before {
  height: 100%;
}

/* Subtle Light Shine Effect */
.principle-item-inner::before {
  position: absolute;
  left: 0px;
  bottom: 0px;
  height: 0px;
  width: 100%;
  background-image: url("../assets/bg/bg-overlay-7.png");
  background-color: var(--primary-color);
  background-repeat: no-repeat;
  content: "";
  z-index: -1;
  border-radius: 0px;
  background-position: right bottom;
  transition: 300ms linear;
}

.principle-item-inner:hover .principle-item-excerpt,
.principle-item-inner:hover h3,
.principle-item-inner:hover p,
.principle-item-inner:hover span,
.principle-item-inner:hover i {
  color: #fff !important;
}

.principle-item-img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  height: 100px;
}

.principle-item-img .principle-inner-img img {
  max-width: 200px;
  max-height: 80px;
  object-fit: contain;
}

.principle-item-inner:hover {
  color: rgba(var(--primary-color-rgb), 0.15);
  transform: scale(1.1);
}

.principle-item-excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-top: 15px;
}

/* Swiper Navigation */
.principle-swiper-button-prev,
.principle-swiper-button-next {
  color: #fff;
  background: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  top: auto;
  margin-top: 0;
  z-index: 3;
  border: 1px solid #ddd;
}

.principle-swiper-button-prev:after,
.principle-swiper-button-next:after {
  font-size: 20px;
  font-weight: bold;
}

.principle-swiper-button-prev {
  left: calc(50% - 70px);
}

.principle-swiper-button-next {
  right: calc(50% - 70px);
}

/* Enhanced Animations for Principle Section */
.principle-skewIn {
  animation: principleSkewIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes principleSkewIn {
  0% {
    transform: skewX(12deg) translateX(30px) translateY(20px);
    opacity: 0;
    filter: blur(4px);
  }

  100% {
    transform: skewX(0deg) translateX(0) translateY(0);
    opacity: 1;
    filter: blur(0);
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .principle-heading .principle-title {
    font-size: 2.8rem;
  }

  .principle-item-inner {
    padding: 25px;
  }

  .priciple-bg-1 img,
  .priciple-bg-2 img {
    max-width: 250px;
  }
}

@media (max-width: 992px) {
  .principle-section {
    padding: 60px 0;
  }

  .principle-heading .principle-title {
    font-size: 2.5rem;
  }

  .principle-item-title {
    font-size: 1.1rem;
  }

  .priciple-bg-1 img,
  .priciple-bg-2 img {
    max-width: 200px;
  }

  .priciple-bg-1 {
    left: 2%;
  }

  .priciple-bg-2 {
    right: 2%;
  }
}

@media (max-width: 768px) {
  .principle-section {
    padding: 50px 0;
  }

  .principle-heading .principle-title {
    font-size: 2.2rem;
  }

  .principle-item-inner {
    padding: 20px;
  }

  .principle-swiper-button-prev,
  .principle-swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .principle-swiper-button-prev:after,
  .principle-swiper-button-next:after {
    font-size: 16px;
  }

  .priciple-bg-1,
  .priciple-bg-2 {
    display: none;
  }
  
}

@media (max-width: 576px) {
  .principle-heading .principle-title {
    font-size: 1.8rem;
  }

  .principle-text-editor p {
    font-size: 1rem;
  }

}

/* awards section starts */

.awards-section {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 40px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.awards-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #0f0c1d, #336aea);
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.section-subtitle {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 1px;
  position: relative;
  display: inline-flex;
  align-items: center;
}

.section-subtitle::before {
  margin-right: 8px;
  color: #336aea;
  font-weight: 700;
}

.section-description {
  font-size: 1.25rem;
  color: #4a5568;
  max-width: 700px;
  margin: 40px auto 0;
  line-height: 1.7;
}

/* Certifications Section */
.certifications-section {
  position: relative;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin-top: 40px;
}

.certification-card {
  background: white;
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 380px;
}

.certification-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(15, 12, 29, 0.03) 0%,
    rgba(51, 106, 234, 0.03) 100%
  );
  z-index: 0;
}

.certification-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #336aea, #0f0c1d);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.certification-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(51, 106, 234, 0.15);
  border-color: rgba(51, 106, 234, 0.2);
}

.certification-card:hover::after {
  transform: scaleX(1);
}

.certification-card:hover .cert-badge {
  transform: scale(1.1) rotate(10deg);
}

.cert-img-container {
  position: relative;
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  z-index: 1;
  overflow: hidden;
  border-radius: 12px;
  background: #f8fafc;
  padding: 15px;
  transition: all 0.4s ease;
}

.certification-card:hover .cert-img-container {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.cert-img-container img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: all 0.5s ease;
  filter: grayscale(20%);
}

.certification-card:hover .cert-img-container img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

.cert-content {
  z-index: 1;
  width: 100%;
}

.cert-name {
  font-weight: 700;
  color: #0f0c1d;
  font-size: 1.3rem;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.certification-card:hover .cert-name {
  color: #336aea;
}

.certification-card:hover .cert-year {
  background: #336aea;
  color: white;
}

/* Decorative Elements */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(51, 106, 234, 0.03);
  animation: float 20s infinite linear;
}

.shape-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 80px;
  height: 80px;
  bottom: 15%;
  right: 8%;
  animation-delay: -5s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  top: 40%;
  left: 90%;
  animation-delay: -10s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(10px, 15px) rotate(90deg);
  }
  50% {
    transform: translate(0, 30px) rotate(180deg);
  }
  75% {
    transform: translate(-10px, 15px) rotate(270deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 1100px) {
  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .awards-section {
    padding: 40px 25px;
  }

  .section-title {
    font-size: 2.4rem;
  }

  .certifications-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .certification-card {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .awards-section {
    padding: 30px 20px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-description {
    font-size: 1.1rem;
  }

  .certification-card {
    height: 320px;
  }

  .cert-img-container {
    height: 180px;
  }
}

/* awards section ends */

.application-section {
  padding: 60px 0;
  background: var(--light-color);
  position: relative;
  overflow: hidden;
}

.application-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header Styles */
.application-header {
  margin-bottom: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.application-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-transform: capitalize;
  position: relative;
  display: inline-block;
}

.application-subtitle::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
}

.application-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.application-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

/* Swiper Container */
.application-swiper {
  width: 100%;
  padding: 20px 0 60px;
  margin-left: 100px;
}

.application-swiper .swiper-slide {
  padding-left: 0;
}

.application-slide {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
}

.application-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.application-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.application-title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 20px;
  text-align: center;
}

.application-project-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Animations */
.application-fadeInUp {
  animation: applicationFadeInUp 0.8s ease forwards;
}

.application-skewIn {
  animation: applicationSkewIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes applicationFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes applicationSkewIn {
  0% {
    transform: skewX(12deg) translateX(30px) translateY(20px);
    opacity: 0;
    filter: blur(4px);
  }

  100% {
    transform: skewX(0deg) translateX(0) translateY(0);
    opacity: 1;
    filter: blur(0);
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .application-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .application-section {
    padding: 80px 0;
  }

  .application-title {
    font-size: 2.2rem;
  }

  .application-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .application-section {
    padding: 60px 0;
  }

  .application-title {
    font-size: 2rem;
  }

  .application-swiper-button-prev,
  .application-swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .application-swiper-button-prev:after,
  .application-swiper-button-next:after {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .application-title {
    font-size: 1.8rem;
  }
}

.clients-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background-color: #f8f9fa;
}

/* Background Image */
.clients-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/bg/bg-overlay-6.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.clients-container {
  position: relative;
  z-index: 3;
}

/* Header Styles */
.clients-header {
  text-align: center;
  margin-bottom: 60px;
}

.clients-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-transform: capitalize;
  position: relative;
  display: inline-block;
}

.clients-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.clients-description {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Client Logo Styles */
.client-logo {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 140px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.client-logo:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  border-color: var(--primary-color);
}

.client-logo img {
  max-width: 160px;
  max-height: 95px;
  object-fit: contain;
  opacity: 1;
  transition: all 0.3s ease;
}

/* Background Pattern */
.clients-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(var(--primary-color-rgb), 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(var(--fourth-color-rgb), 0.1) 0%,
      transparent 50%
    );
  z-index: 2;
  pointer-events: none;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .clients-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .clients-section {
    padding: 80px 0;
  }

  .clients-title {
    font-size: 2.2rem;
  }

  .client-logo {
    height: 120px;
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .clients-section {
    padding: 60px 0;
  }

  .clients-title {
    font-size: 2rem;
  }

  .client-logo {
    height: 100px;
    padding: 20px;
    margin-bottom: 20px;
  }

  .client-logo img {
    max-width: 120px;
    max-height: 50px;
  }
}

@media (max-width: 576px) {
  .clients-title {
    font-size: 1.8rem;
  }

  .clients-description {
    font-size: 1rem;
  }

  .clients-section {
    padding: 50px 0;
  }
}

/* Custom Styles */

.footer-cta-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.footer-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: 1;
}

.footer-cta-section > * {
  border-top: 1px solid rgba(0, 0, 0, 0.171);
  position: relative;
  z-index: 2;
}

.footer-cta {
  background-color: var(--primary-color);
  position: relative;
  z-index: 3;
}

/* internal angle overlay */
.footer-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -30px;
  width: 60%;
  height: 100%;
  background: var(--primary-color);
  transform: skewX(-24deg);
  transform-origin: left;
  z-index: 1;
}

.footer-cta > * {
  position: relative;
  z-index: 2;
}

.footer-logo a {
  text-decoration: none;
}

.footer-logo img {
  max-width: 100%;
  height: auto;
}

.footer-logo span {
  font-size: 25px;
  font-weight: 700;
  color: var(--fifth-color);
}

.footer-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-btn {
  background-color: #ffffff;
  color: var(--primary-color);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: absolute;
  bottom: 40px;
  /* move up/down */
  right: 10px;
  /* set left or right */
  z-index: 2;
}

.footer-btn:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
  color: var(--primary-color);
}

.footer-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.footer-image img {
  max-width: 100%;
  height: auto;
}

.footer-text p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-social .social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 10px;
  color: #fff;
  transition: all 0.3s ease;
}

.footer-social .social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-divider span {
  display: block;
  height: 2px;
  width: 50px;
  background-color: var(--primary-color);
  margin: 15px 0;
}

.footer-links li {
  margin-bottom: 10px;
  list-style: none;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-links li a i {
  margin-right: 10px;
  width: 20px;
}

.footer-contact .contact-label {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  display: block;
}

.footer-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.footer-gallery-item {
  margin: 0;
}

.footer-gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.footer-gallery-item img:hover {
  transform: scale(1.05);
}

.footer-copyright p {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
  margin: 0;
  color: #fff !important;
}

.footer-copyright p a {
  color: #fff !important;
  text-decoration: none;
}
.footer-copyright p a:hover {
  color: var(--fourth-color) !important;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .footer-image {
    display: none;
  }

  .footer-cta {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .footer-title {
    font-size: 24px;
  }

  .footer-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1500px) {
  .container-fluid {
    max-width: 1440px;
  }
}
@media (max-width: 768px) {
  .footer-cta-section .row {
    flex-direction: column;
    text-align: center;
  }

  .footer-cta::before {
    display: none; /* Remove skew effect on mobile */
  }

  .footer-btn {
    position: static;
    margin-top: 20px;
  }
}

/* Stylish scrollbar alternative */
.mega-menu-scroll.styled-scroll::-webkit-scrollbar {
  width: 10px;
}

.mega-menu-scroll.styled-scroll::-webkit-scrollbar-track {
  background: linear-gradient(180deg, #f1f1f1 0%, #e0e0e0 100%);
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

.mega-menu-scroll.styled-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #007bff 0%, #0056b3 100%);
  border-radius: 10px;
  border: 2px solid #f1f1f1;
}

.mega-menu-scroll.styled-scroll::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #0056b3 0%, #004085 100%);
}

/* about us  starts*/

.about-header-content {
  padding: 4.5em 0 0 0;
}

/* About Page Specific Styles */

.swiper {
  padding: 0px 0;
}

.team-card {
  background: var(--card);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  height: 100%;
  box-sizing: border-box;
}
.team-photo {
  width: 130px;
  height: 130px;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
  display: inline-block;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.08);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* shows full image */
  /*background: #fff;*/
  display: block;
}
.team-name {
  font-weight: 600;
  font-size: 16px;
  color: #111827;
}
.team-role {
  font-size: 14px;
  color: var(--muted);
}

/* responsive widths for Swiper slides */
.swiper-slide {
  display: flex;
  justify-content: center;
}
.slide-inner {
  width: 260px;
}

@media (max-width: 768px) {
  .team-head h2 {
    font-size: 22px;
  }
  .slide-inner {
    width: 220px;
  }
}

/* Swiper navigation custom */
.swiper-button-next,
.swiper-button-prev {
  color: #111827;
}
.swiper-pagination-bullet {
  background: #cbd5e1;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: var(--accent);
}

.breadcrumb {
  justify-content: center;
  display: flex;
  align-items: center;
}

/* Each item inline */
.breadcrumb li {
  list-style: none;
  display: flex;
  color: #000;

  align-items: center;
}

/* Slash only after HOME */
.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin: 0 8px;
  color: #000;
}

/* Breadcrumb links (remove underline) */
.breadcrumb li a {
  text-decoration: none !important;
  color: #000;
  display: flex;
  align-items: center;
  /*text-shadow: -2px 0 3px black, 2px 0 3px black;*/
  gap: 6px;
}

/*.breadcrumb-text {*/
/*    text-shadow: -1px 0 2px black, 1px 0 2px black;*/
/*}*/


.breadcrumb li a:hover,
.breadcrumb-icon:hover {
  text-shadow: 1px 1px 1px #000000c2;

  color: var(--fourth-color);
  transition: 0.2s ease;
}
/* Icon */
.breadcrumb-icon {
  color: #000;
}

.about-header-section {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: 0;
}

.about-header-content {
    position: relative;
    z-index: 3;
    /*backdrop-filter: blur(4px);*/
    /*background: rgb(0 0 0 / 10%);*/
    /*max-width: 500px; */
    margin: 0 auto;     /* Center the content horizontally */
    padding: 20px;      /* Optional, to give some padding inside */
}


.about-header-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: -1px 0 2px black, 1px 0 2px black;
}

.about-header-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: #000;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

.about-content-section {
  padding: 80px 0;
  background: #fff;
}

.about-company-section {
  margin-bottom: 80px;
}

.about-company-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-company-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.about-company-image:hover img {
  transform: scale(1.05);
}

.about-company-content {
  padding-left: 40px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 25px;
  position: relative;
}

.section-title::after {
  width: 30px;
  height: 2px;
  background: var(--primary-color);
  margin-left: 9px;
  display: inline-block;
}

.section-subtitle {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 1px;
  position: relative;
  display: inline-flex;
  align-items: center;
}
.section-subtitle::after {
  width: 30px;
  height: 2px;
  background: var(--primary-color);
  margin-left: 9px;
  display: inline-block;
  .values-section {
    background: #f8f9fa;
    padding: 80px 0;
    border-radius: 20px;
    margin: 40px 0;
  }
}

.value-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border-left: 4px solid var(--primary-color);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: rgba(51, 106, 234, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: var(--primary-color);
}

.value-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.value-description {
  color: var(--third-color);
  line-height: 1.6;
}

.value-para li {
    color: var(--third-color);
    line-height: 1.6;
    text-align: left;
}

.clients-section {
  padding: 0px 0;
}

.client-logo-carousel {
  padding: 40px 0;
}

.client-logo-item {
  background: #fff;
  padding: 0px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  height: 120px;
  margin: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.client-logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.client-logo-item img {
  max-width: 160px;
  max-height: 60px;
  object-fit: contain;

  transition: filter 0.3s ease;
}

.team-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.swiper-container {
  width: 100%;
  height: 400px;
  padding: 20px 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.team-card {
  width: 100%;
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.team-image {
  height: 250px;
}

.team-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%; /* Add this */
}

.team-description {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.5; /* Add proper line height */
}
.team-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.team-position {
  font-size: 1rem;
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 1rem;
}
.team-position {
  font-size: 1rem;
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-description {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  transition: all 0.3s;
}

.social-link:hover {
  background-color: var(--secondary);
  transform: translateY(-3px);
}

.swiper-pagination {
  position: relative;
  margin-top: 2rem;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #dee2e6;
  opacity: 0.5;
  transition: all 0.3s;
}

.swiper-pagination-bullet-active {
  background: var(--primary);
  opacity: 1;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .swiper-container {
    height: 450px;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-header-title {
    font-size: 2.8rem;
  }

  .about-company-content {
    padding-left: 0;
    margin-top: 40px;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .about-header-section {
    height: 50vh;
  }

  .about-header-title {
    font-size: 2.2rem;
  }

  .about-content-section {
    padding: 60px 0;
  }

  .value-card {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .about-header-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

/* about us ends  */

/* solutions starts */

/* Main Content */
.services-details-area {
  padding: 80px 50px 80px 50px;
}
.services-details-items .thumb {
  border-radius: 10px;
  overflow: hidden;
}

.services-details-items .thumb img {
  margin-bottom: 40px;
  height: 350px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.301);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.services-details-items .thumb img:hover {
  transform: scale(1.02);
}

.services-details-items h2 {
  color: var(--primary-color);
  margin-bottom: 1em;
  font-size: 1.5em;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 1px;
  position: relative;
  display: inline-flex;
  align-items: center;
}

.services-details-items h3 {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 1px;
  position: relative;
  display: inline-flex;
  align-items: center;
}

.services-details-items p {
  margin-bottom: 25px;
  font-size: 1.1rem;
}

/* Sidebar */
.services-sidebar {
  position: sticky;
  top: 120px;
}

.services-list-widget {
  padding: 24px;
  border-radius: 10px;
  background: #fff;
  color: white;
}

.services-list-widget .widget-title {
  display: block;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  display: inline-block;
  padding-bottom: 15px;
  color: var(--primary-color);
  font-size: 1.5rem;
}

.services-list-widget .widget-title::after {
  position: absolute;
  left: 10px;
  bottom: 0;
  content: "";
  height: 3px;
  width: 50px;
  border-bottom: 3px solid var(--primary-color);
}

.services-list-widget .widget-title::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 3px;
  width: 5px;
  background: var(--primary-color);
}

.services-list-widget .content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-list-widget .content ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.services-list-widget .content ul li:last-child {
  border-bottom: none;
}

.services-list-widget .content ul li a {
  display: block;
  font-size: 1.1rem;
  padding: 11px 0;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.services-list-widget .content ul li a.active {
  background: var(--fifth-color);
  color: #fff;
  padding-left: 20px;
  border-radius: 10px;
}
.services-list-widget .content ul li a:hover {
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  padding-left: 20px;
}

/* Quick Contact Widget */
.quick-contact-widget {
  background: var(--fifth-color);
  position: relative;
  z-index: 1;
  padding: 40px 30px;
  border-radius: 10px;
  color: white;
  overflow: hidden;
}

.quick-contact-widget::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: -1;
}

.quick-contact-widget h3 {
  color: #fff;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.quick-contact-widget p {
  color: #fff;
  margin-bottom: 25px;
  opacity: 0.9;
}

.quick-contact-widget .contact-info {
  margin-bottom: 25px;
}

.quick-contact-widget .contact-info div {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.quick-contact-widget .contact-info i {
  margin-right: 10px;
  margin-top: 5px;
  color: var(--primary-color);
}

.quick-contact-widget .contact-info a {
  color: white;
  text-decoration: none;
}

.quick-contact-widget .btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.quick-contact-widget .btn:hover {
  background: #1a56d0;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Accordion Styling */
.faq-style-one .accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-style-one .accordion-button {
  background: white;
  color: var(--secondary-color);
  font-weight: 600;
  padding: 20px;
  border: none;
  box-shadow: none;
}

.faq-style-one .accordion-button:not(.collapsed) {
  background: var(--primary-color);
  color: white;
}

.faq-style-one .accordion-body {
  padding: 20px;
  background: #f8f9fa;
}

.faq-style-one .accordion-body h5 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 991px) {
  .about-header-title {
    font-size: 2.5rem;
  }

  .services-sidebar {
    margin-top: 50px;
    position: static;
  }

  .services-details-items .thumb img {
    height: 250px;
  }
}

@media (max-width: 767px) {
  .about-header-section {
    padding: 80px 0 60px;
  }

  .about-header-title {
    font-size: 2rem;
  }

  .about-header-subtitle {
    font-size: 1rem;
  }

  .services-details-area {
    padding: 60px 0;
  }
}

/* 2. Smooth text-transform on hover */
.single-widget .content:hover h3 {
  text-transform: capitalize;
  transition: 0.3s ease;
}

/* 3. Contact Info Hover Lift */
.single-widget .contact-info div:hover a {
  transform: translateX(5px);
  display: inline-block;
  transition: all 0.3s ease;
}

/* 4. Icon hover transform */
.single-widget .contact-info div:hover i {
  color: #ffd36a;
  transform: scale(1.2);
  transition: 0.3s;
}

/* 5. Button hover text-transform + soft glow */
.pxl-button a:hover .pxl--btn-text {
  transition: 0.3s ease;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 16px;
}

.why-list li::before {
  content: "❯❯";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 500;
  color: var(--primary-color); /* your theme color */
  font-size: 14px;
}
.services-sidebar {
  position: sticky;
  top: 120px; /* space below header */
  height: max-content; /* prevents collapse */
}

/* Feature Cards Grid */
.feature-card-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 40px;
}

/* Individual Card */
.feature-card {
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  transition: 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Card Heading */
.feature-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

/* Card Text */
.feature-card p {
  margin: 0;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 767px) {
  .feature-card-wrapper {
    grid-template-columns: 1fr;
  }
}

.why-card.accent {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 40px;
  margin-top: 1.5rem;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.why-card.accent::before {
  content: "";
  width: 6px;
  border-radius: 6px;
  background: linear-gradient(180deg, #0056ff, #021f4c);
}

.why-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: #1c2c5a;
  margin-bottom: 20px;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-list li {
  font-size: 16px;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  color: #333;
}

/* Custom stylish check mark */
.why-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #0056ff;
  font-weight: 600;
}
/* Mobile & Tablet Responsive */
@media (max-width: 768px) {
  .why-card.accent {
    flex-direction: column;
    padding: 25px;
    gap: 18px;
    border-radius: 16px;
  }

  .why-card.accent::before {
    width: 100%;
    height: 4px;
  }

  .why-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .why-list li {
    font-size: 15px;
    padding-left: 22px;
    margin-bottom: 10px;
  }
}
.cap-card-tag {
  background: rgba(0, 86, 255, 0.12);
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #002b70;
  display: inline-block;
  margin-bottom: 15px;
  letter-spacing: 0.3px;
}

/* solution ends */

/* products starts */

.category-info {
  text-align: center;
  flex-grow: 1;
}

.category-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.category-description {
  color: var(--third-color);
  max-width: 500px;
  margin: 0 auto;
}

/* Filter Section */
.filter-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}

.category-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--primary-color);
  background-color: transparent;
  color: var(--primary-color);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color);
  color: white;
}

.search-box {
  position: relative;
  max-width: 300px;
}

.search-box i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--third-color);
}

.search-box input {
  width: 100%;
  padding: 0.7rem 1rem 0.7rem 2.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fill,
    minmax(355px, 1fr)
  ); /* Increase min width */
  gap: 2rem;
  margin-bottom: 2rem;
}
/* .product-card, .product-actions {

  display: flex !important;
  opacity: 1 !important;
} */

.product-card {
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 500px; /* Add this line */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(87, 87, 87, 0.247);
  overflow: hidden;
  display: block !important;
  opacity: 1 !important;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.product-image {
  height: 220px; /* Increase image height */
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.171);
}

.product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-category {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--secondary-color);
  color: white;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.product-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.product-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.product-description {
  color: var(--third-color);
  margin-bottom: 1.5rem;
  display: -webkit-box;
  /* Show more lines */
  -webkit-box-orient: vertical;
  flex-grow: 1; /* Make description expand to fill space */
  overflow: hidden;
  line-height: 1.6;
}
.product-actions {
  display: flex !important;
  opacity: 1 !important;
  justify-content: space-between;
  align-items: center;

  gap: 10px; /* Add spacing between buttons */
}
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
  border: none;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  flex: 1; /* Make buttons equal width */
  min-height: 44px; /* Consistent button height */
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-primary {
  background-color: white;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
/* .product-actions {
  display: flex !important; ;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  /* Push buttons to bottom */
} */

.btn-primary:hover {
  background-color: var(--primary-color) !important;
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: rgba(0, 86, 163, 0.1);
}

/* Custom Button Style */
.pxl-button {
  margin-top: 30px;
  text-align: center;
  text-align: left;
}

.pxl-button .btn-default {
    display: inline-flex;        /* keep inline-flex for content alignment */
    justify-content: flex-start; /* align inner content to the left */
    align-items: center;         /* vertically center icon/text if any */
    text-align: left;            /* text inside button aligned left */
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 0;              /* remove any left margin if applied */
}

.pxl-button .btn-default:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 86, 164, 0.3);
}

.pxl-button .pxl--btn-text {
  position: relative;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1005;
  justify-content: center;
  align-items: center;
  padding: 20px;
  transition: opacity 0.3s ease;
}

.modal-content {
  background: white;
  width: 100%;
  max-width: 480px;
  padding: 1.8rem;
  border-radius: 12px;
  position: relative;
  animation: popup 0.25s ease;
  max-height: 500px;
  overflow: auto;
}

/* Hide all products by default */
.product-card {
  display: none;
}

/* Show only connectivity products by default */
.product-card[data-category="connectivity"] {
  display: block;
}

@keyframes popup {
  from {
    transform: scale(0.92);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-title {
  margin-top: 0;
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.close-modal {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--third-color);
  transition: 0.3s;
}

.close-modal:hover {
  color: var(--primary-color);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem;
  border-radius: 6px;
  border: 1px solid var(--third-color);
  font-size: 0.95rem;
}

.form-group textarea {
  min-height: 90px;
}

.modal-submit-btn {
  width: 100%;
  margin-top: 10px;
  padding: 0.9rem;
  font-size: 1rem;
  border-radius: 6px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .about-header-title {
    font-size: 2.2rem;
  }

  .services-details-items h2 {
    font-size: 2rem;
  }

  .filter-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .search-box {
    max-width: 100%;
  }

  .category-navigation {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .nav-btn {
    width: 100%;
    justify-content: center;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .modal-content {
    max-width: 360px;
    padding: 1.2rem;
  }

  .modal-title {
    font-size: 1.2rem;
  }

  .close-modal {
    font-size: 1.4rem;
  }
}

/* products ends */

/* contact us starts */

/* Main two-column section */
.cp-main {
  max-width: 1200px;
  margin: 36px auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 992px) {
  .cp-main {
    grid-template-columns: 1.1fr 1fr;
    gap: 28px;
  }
}

/* Info card left */
.cp-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(15, 26, 42, 0.08);
  padding: 28px;
}
.cp-card h2 {
  margin: 0 0 6px 0;
  font-size: 26px;
}
.cp-muted {
  color: #5a6782;
  font-size: 14px;
  margin: 0 0 18px 0;
}
.cp-media {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid #eef1f7;
}
.cp-media:first-of-type {
  border-top: none;
}
.cp-ico {
  flex: 0 0 40px;
  height: 40px;
  width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e8f0ff;
  color: #1e4fd6;
  font-size: 16px;
}
.cp-ico:hover {
  background: var(--fourth-color);
}
.cp-media strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}


/* Form card right */
.cp-form-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(15, 26, 42, 0.08);
  padding: 28px;
}
.cp-badge {
  display: inline-block;
  font-size: 12px;
  color: #7c3aed;
  background: #f3e8ff;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
  font-weight: 600;
}
.cp-form-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 14px 0;
}
.cp-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
@media (min-width: 700px) {
  .cp-row.cp-2 {
    grid-template-columns: 1fr 1fr;
  }
}
.cp-input,
.cp-textarea,
.cp-select {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid #dde3ef;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  background: #fff;
  color: #0f1a2a;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cp-textarea {
  min-height: 140px;
  resize: vertical;
}
.cp-input:focus,
.cp-textarea:focus,
.cp-select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}
.cp-submit {
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cp-submit:hover {
  background: var(--fifth-color);
}

/* Spacer section (light grey area under cards) */
.cp-spacer {
  height: 340px;
}

/* Layout: one column by default, two on large screens */
.cp-main {
  max-width: 1120px;
  margin: 36px auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* Two columns ≥ 992px */
@media (min-width: 992px) {
  .cp-main {
    grid-template-columns: 1.1fr 1fr;
    gap: 28px;
  }
}

/* Cards */

.cp-card h2 {
  color: var(--primary-color);
}
.cp-card {
  padding-left: 50px;
}
.cp-card,
.cp-form-card {
  background: #ffffff;
  line-height: 24px;
  border-radius: 14px;

  padding: 24px;
}

/* Titles and text */
.cp-card h2 {
  margin: 0 0 8px 40px;
  font-size: 1.5rem;
}
.cp-muted {
  color: #5a6782;
  font-size: 17px;
  margin: 0 0 18px 0;
}

/* Info rows */
.cp-media {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 28px;
  border-top: 1px solid #eef1f7;
}
.cp-media:first-of-type {
  border-top: none;
}
.cp-ico {
  flex: 0 0 40px;
  height: 40px;
  width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e8f0ff;
  color: #1e4fd6;
  font-size: 17px;
}
.cp-media strong {
  display: block;
  font-size: 17px;
  margin-bottom: 2px;
}
.cp-media a,
.cp-media span {
  color: #0f1a2a;
  text-decoration: none;
  font-size: 14px;
}
.cp-media a:hover {
  color: var(--fifth-color);
  text-decoration: none;
}

/* Form header */
.cp-badge {
  display: inline-block;
  font-size: 17px;
  color: var(--primary-color);
  background: #d8dff3;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
  font-weight: 600;
}
.cp-form-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 14px 0;
}

/* Form grid */
.cp-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

/* Two inputs side-by-side on wider screens */
@media (min-width: 700px) {
  .cp-row.cp-2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* Inputs */
.cp-input,
.cp-textarea {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid #dde3ef;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  background: #fff;
  color: #0f1a2a;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cp-textarea {
  min-height: 140px;
  resize: vertical;
}
.cp-input:focus,
.cp-textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.cp-location-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.cp-location-title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #0f1a2a;
}

/* Responsive map box: 16:9 by default */
.cp-map-embed {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #e8edf7;
  box-shadow: 0 10px 30px rgba(15, 26, 42, 0.08);
  margin-top: 12px;
}
.cp-map-embed::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.cp-map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Slightly taller on tablets */
@media (min-width: 700px) {
  .cp-map-embed::before {
    padding-top: 52%;
  }
}

/* Fixed comfortable height on desktops */
@media (min-width: 992px) {
  .cp-map-embed {
    min-height: 420px;
  }
  .cp-map-embed::before {
    padding-top: 0;
  }
  .cp-map-iframe {
    height: 100%;
  }
}

/* Compact on very small phones */
@media (max-width: 360px) {
  .cp-location-title {
    font-size: 20px;
  }
  .cp-map-embed {
    border-radius: 10px;
  }
}

/* Submit button */
.cp-submit {
  background: #1e40af;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cp-submit:hover {
  background: #193691;
}

/* Spacing tweaks on very small screens */
@media (max-width: 360px) {
  .cp-card,
  .cp-form-card {
    padding: 18px;
  }
  .cp-form-title {
    font-size: 24px;
  }
}

/* contact us ends */
/* ---------------------------------
   MOBILE MENU – SAME DESKTOP MENU
   Slide from Right
-----------------------------------*/

@media (max-width: 991px) {
  /* Mobile overlay */
  .mobile-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 998;
  }

  /* Mobile slide menu */
  .custom-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%; /* hidden */
    width: 280px;
    height: 100vh;
    overflow-y: auto;
    background: #fff;
    padding: 25px 15px;
    transition: 0.4s ease-in-out;
    z-index: 999;
    display: block !important; /* override Bootstrap */
  }

  /* When opened */
  .custom-mobile-menu.open {
    right: 0;
  }

  /* Remove desktop alignment */
  .navbar-nav {
    flex-direction: column !important;
    gap: 15px;
  }

  /* Style links */
  .navbar-nav .nav-link {
    color: #000 !important;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    font-size: 18px;
  }

  /* Hide mega menu complexity */
  .mega-menu-scroll {
    width: 100% !important;
    left: 0 !important;
    position: relative;
    max-height: none !important;
    padding: 0 !important;
  }
}

.close-mobile-menu {
    font-size: 32px;
    cursor: pointer;
    display: block;
    text-align: right;
   
}
/* Ensure the mobile menu is correctly hidden/shown */
/* Example: Show when 'open' class is present */
@media (max-width: 991px) {
    .navbar-collapse.custom-mobile-menu {
        /* ... your existing styles for the closed menu ... */
        /* You likely use a transform or position change here */
    }
    .navbar-collapse.custom-mobile-menu.open {
        /* ... your existing styles for the open menu ... */
        /* This is where the menu should slide into view */
    }

    /* 1. Hide dropdown menus by default on mobile */
    .main-header .navbar-nav .dropdown-menu {
        display: none;
        position: static; /* Allows submenus to stack naturally inside the list */
        /* Ensure you override the desktop mega-menu styles */
        width: auto !important;
        left: auto !important;
        right: auto !important;
        max-height: none !important; /* Allow the content to expand */
        overflow-y: visible !important;
        border: none;
    }

    /* 2. Show the dropdown menu when the JS adds 'open-dropdown' to the parent <li> */
    .nav-item.dropdown.open-dropdown > .dropdown-menu {
        display: block;
        padding-left: 15px; /* Optional: Indent the submenu items */
        margin-top: 0;
        max-height: 300px !important;
        overflow-y: auto !important;
    }
    
    /* 3. Style for the Mobile Backdrop (Crucial for closing) */
    .mobile-menu-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1040; /* Below the menu (which should be 1050+) */
        display: none; /* Hidden by default, shown by JS */
    }
}

#navbarNav .mobilenav11 {
  font-size: 17px;
  align-items: center;
} 

#navbarNav .close-mobile-menu{
  align-items: center;
  justify-content: center;
  font-size: 35px;
  margin-left: 6px;
}
.mobile-menu-toggle {
  background-color: transparent;  /* Transparent background */
  border: none;                   /* Remove default border */
  font-size: 24px;                /* Size of the hamburger icon */
  color: #333;                   /* Icon color */
  cursor: pointer;               /* Pointer cursor on hover */
  padding: 8px 12px;             /* Spacing inside the button */
  transition: color 0.3s ease;  /* Smooth color transition */
}

.mobile-menu-toggle:hover {
  color: #007bff;                /* Change icon color on hover */
}

.mobile-menu-toggle:focus {
  outline: none;                 /* Remove default focus outline */
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5); /* Custom focus ring */
}
@media (max-width: 767px) {
  .swiper-arrow-prev {
    display: none !important;
  }
  .swiper-arrow-next {
    display: none !important;
  }
  .decorative-arrow{
    display: none !important;
  }
}

@media (min-width:  1024px){
  .decorative-arrow{
    right: 45%;
  }

}
@media (min-width: 1024px) {
  #navbarNav .mobilenav11 {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .mobile-menu-toggle#mobileMenuToggle {
    display: none !important;
  }
}

.section {
  padding: 80px 0;
}

.section-lg {
  padding: 100px 0;
}

.bg-default {
  background-color: #fff;
}

.row-40 {
  margin-top: -40px;
}

.row-40>div {
  margin-top: 40px;
}

.row-60 {
  margin-top: -60px;
}

.row-60>div {
  margin-top: 60px;
}

/* Full Image Card Styles */
.post-classic {
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.post-classic:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.post-classic-2 {
  display: block;
  height: 420px;
  position: relative;
}

.post-classic-figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.post-classic-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.post-classic:hover .post-classic-figure img {
  transform: scale(1.08);
}

/* Date Badge - Top Left */
.post-classic-time {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--primary-color);
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Text Overlay */
.post-classic-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(15, 12, 29, 0.95) 0%, rgba(15, 12, 29, 0.7) 60%, transparent 100%);
  z-index: 1;
  transition: all 0.3s ease;
}

/* .post-classic:hover .post-classic-content {
  background: linear-gradient(to top, rgba(51, 106, 234, 0.95) 0%, rgba(51, 106, 234, 0.7) 60%, transparent 100%);
} */

.post-classic-title {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 0;
  color: white;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-classic-title a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-classic-title a:hover {
  color: var(--fourth-color);
}

/* Category Badge */
.post-category {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--secondary-color);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Pagination Styles */
.pagination-wrap {
  margin-top: 80px;
  text-align: center;
}

.pagination {
  justify-content: center;
}

.page-item.active .page-link {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.page-link {
  color: var(--secondary-color);
  border: 1px solid #eaeaea;
  padding: 10px 18px;
  margin: 0 5px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.page-link:hover {
  background-color: rgba(var(--primary-color-rgb), 0.1);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.page-item-control .page-link {
  padding: 10px 15px;
}

.page-item-control .icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
}

.page-item-control:first-child .icon {
  transform: rotate(135deg);
  margin-left: 3px;
}

.page-item-control:last-child .icon {
  transform: rotate(-45deg);
  margin-right: 3px;
}

.page-item.disabled .page-link {
  color: #ccc;
  pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
  .post-classic-2 {
    height: 380px;
  }
}

@media (max-width: 991px) {
  .section-lg {
    padding: 80px 0;
  }

  .row-lg-60 {
    margin-top: -60px;
  }

  .row-lg-60>div {
    margin-top: 60px;
  }

  .post-classic-2 {
    height: 350px;
  }
}

@media (max-width: 767px) {
  .section-lg {
    padding: 60px 0;
  }

  .post-classic-2 {
    height: 320px;
  }

  .post-classic-content {
    padding: 20px;
  }

  .post-classic-title {
    font-size: 18px;
    -webkit-line-clamp: 2;
  }

  .pagination-wrap {
    margin-top: 50px;
  }
}

@media (max-width: 575px) {
  .post-classic-2 {
    height: 300px;
  }

  .post-classic-time {
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    font-size: 13px;
  }

  .post-category {
    top: 15px;
    right: 15px;
    padding: 5px 10px;
    font-size: 11px;
  }
}

.single-blog-section {
  padding: 80px 0;
}

.single-blog-section-lg {
  padding: 100px 0;
}

.single-blog-bg-default {
  background-color: #fff;
}

/* Row spacing */

/* Single Post Styles */
.single-blog-post {
  margin-bottom: 60px;
}

.single-blog-text-spacing-50 {
  letter-spacing: 0.5px;
}

.single-blog-section-style-2 {
  padding-bottom: 30px;
  border-bottom: 1px solid #eaeaea;
}

/* Post Header */
.single-blog-group-md {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
}

.single-blog-group-middle {
  align-items: center;
}

.single-blog-aside-item{
  margin-top: 30px;
}

.single-blog-post-time {
    font-size: 15px;
    color: var(--third-color);
    margin-left: 20px;
    margin-bottom: 20px;
    font-weight: 500;
}

.single-blog-post-time1 {
    font-size: 15px;
    color: var(--third-color);
    margin-right: 15px;
    font-weight: 500;
}

.single-blog-post-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.single-blog-post-info li {
  margin-right: 20px;
  font-size: 14px;
  color: var(--third-color);
}

.single-blog-post-info li span {
  margin-right: 5px;
}

.single-blog-post-info li a {
  color: var(--primary-color);
  text-decoration: none;
}

.single-blog-post-info li a:hover {
  color: var(--secondary-color);
}

.single-blog-post-author,
.single-blog-post-views,
.single-blog-post-comments {
  display: flex;
  align-items: center;
}

.single-blog-icon {
  margin-right: 8px;
  color: var(--primary-color);
}

/* Content Styles */
.single-blog-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.4;
}

.single-blog-content p {
  margin-bottom: 25px;
  font-size: 16px;
  color: #444;
}

.single-blog-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
}

.single-blog-post-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Quote Classic */
.single-blog-quote {
  background-color: rgba(var(--primary-color-rgb), 0.05);
  border-left: 4px solid var(--primary-color);
  padding: 25px 30px;
  margin: 40px 0;
  border-radius: 0 8px 8px 0;
}

.single-blog-quote-text {
  font-size: 18px;
  font-style: italic;
  color: var(--secondary-color);
  line-height: 1.7;
}

.single-blog-q {
  position: relative;
  margin: 0;
}

/* Unit Layout */
.single-blog-unit {
  display: flex;
}

.single-blog-unit-spacing-xl {
  margin-bottom: 40px;
}

.single-blog-unit-left {
  flex-shrink: 0;
}

.single-blog-unit-body {
  flex-grow: 1;
}

/* Single Post Footer */
.single-blog-post-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eaeaea;
}

.single-blog-group-lg {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.single-blog-group-sm-justify {
  justify-content: space-between;
}

.single-blog-social-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.single-blog-social-list li {
  margin-right: 15px;
}

.single-blog-social-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--gradient-color-from);
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.single-blog-social-list li a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

/* Related Posts */
.single-blog-related-title {
  font-size: 22px;
  font-weight: 600;
  margin: 60px 0 30px;
  position: relative;
  padding-bottom: 15px;
}

.single-blog-related-title:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.single-blog-related-title span {
  color: var(--primary-color);
}

/* Post Classic for Related */
.single-blog-related-post {
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
}

.single-blog-related-post:hover {
  transform: translateY(-5px);
}

.single-blog-related-post-2 {
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #eaeaea;
}

.single-blog-related-post-figure {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.single-blog-related-post-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  margin: 0;
  border-radius: 0;
}

.single-blog-related-post:hover .single-blog-related-post-figure img {
  transform: scale(1.05);
}

.single-blog-related-post-content {
  padding: 20px;
}

.single-blog-related-post-title {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 0;
}

.single-blog-related-post-title a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.single-blog-related-post-title a:hover {
  color: var(--primary-color);
}

.single-blog-block-3 {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Sidebar Styles - Sticky */
.single-blog-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
  padding-left: 20px;
}

.single-blog-inset-left-xl-40 {
  margin-left: 0;
}

.single-blog-aside {
  display: flex;
  flex-wrap: wrap;
}

.single-blog-aside-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.single-blog-aside-title:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
}

/* Popular Posts */
.single-blog-list-popular-post-item {
  margin-bottom: 20px;
}

.single-blog-post-minimal {
  display: flex;
}

.single-blog-unit-spacing-2 {
  margin-bottom: 15px;
}

.single-blog-unit-spacing-md {
  margin-bottom: 0;
  gap: 20px;
}

.single-blog-post-minimal-figure {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.single-blog-post-minimal-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  border-radius: 0;
  transition: transform 0.5s ease;
}

.single-blog-post-minimal-figure:hover img {
  transform: scale(1.05);
}

.single-blog-post-minimal-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 5px;
  line-height: 1.4;
}

.single-blog-post-minimal-title a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.single-blog-post-minimal-title a:hover {
  color: var(--primary-color);
}

.single-blog-post-minimal-time {
  font-size: 13px;
  color: var(--third-color);
}

/* Tags */
.single-blog-group-xxs {
  display: flex;
  flex-wrap: wrap;
}

.single-blog-button-tags {
  display: inline-block;
  padding: 6px 12px;
  background-color: #f5f5f5;
  color: var(--secondary-color);
  border-radius: 4px;
  font-size: 13px;
  margin: 0 8px 8px 0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.single-blog-button-tags:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Responsive */
@media (max-width: 991px) {
  .single-blog-section-lg {
    padding: 80px 0;
  }

  .single-blog-inset-left-xl-40 {
    margin-left: 0;
  }

  .single-blog-flex-md-row {
    flex-direction: row !important;
  }

  .single-blog-sidebar {
    position: static;
    top: auto;
    max-height: none;
    padding-left: 0;
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .single-blog-section-lg {
    padding: 60px 0;
  }

  .single-blog-title {
    font-size: 24px;
  }

  .single-blog-group-md {
    flex-direction: column;
    align-items: flex-start;
  }

  .single-blog-post-time {
    margin-bottom: 15px;
  }

  .single-blog-flex-md-row {
    flex-direction: column !important;
  }

  .single-blog-unit-left {
    margin-bottom: 20px;
  }
}

/* Custom Scrollbar for Sticky Sidebar */
.single-blog-sidebar::-webkit-scrollbar {
  width: 6px;
}

.single-blog-sidebar::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.single-blog-sidebar::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
}

.single-blog-sidebar::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}

.single-blog-content img{
    max-width: 100% !important;
    height: auto !important;
    border-radius: 8px !important;
    margin: 30px 0 !important;
}

.video-popup {
    display: none;
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999 !important;
}

.video-popup-content {
    position: relative;
    width: 80%;
    max-width: 700px;
    background: #000;
    padding: 10px;
    z-index: 9999 !important;
}

#videoFrame {
    width: 100%;
    height: 400px;
}

.close-btn {
    position: absolute;
    top: -15px;
    right: -10px;
    background: #fff;
    color: #000;
    padding: 4px 8px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modern Social Icons */
.cp-social-icons {
    margin-top: 0;
    display: flex;
    gap: 16px;
    align-items: center;
}

.cp-social-link {
    font-size: 16px;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #e5e7eb;
}

.cp-social-link:hover {
    color: #ffffff !important;
    background: #3664e1;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}


#contact {
  scroll-margin-top: 100px; /* adjust height based on your fixed header */
}

@media (min-width: 320px) and (max-width: 768px){
    .slide-content {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    max-width: 550px;
    padding: 20px;
    height: auto;
    color: white !important;
    background: rgba(33, 37, 41, 0.45);
    border: 2px solid rgba(255, 255, 255, 0.3);
}
}