a {
  text-decoration: none;
}


body {
  font-family: 'DM Sans', sans-serif;
  margin: 0;
  padding: 0;
}


/* navbar styles.................................................*/

/* Floating Navbar */
.floating-navbar {
  position: fixed;
  top: 15px;
  left: 20px;
  right: 20px;
  margin: 0 auto;
  max-width: 1500px;
  padding: 3px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 1050;
}

.nav-link.active {
color: rgb(0, 0, 0) !important;
font-weight: bold;
}

.navbar-toggler {
  border: none; /* remove border */
  background: none; /* remove background */
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}


.navbar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
}

.offcanvas {
  background-color: #000000 !important;
  color: #ffffff;
  z-index: 1200 !important;
}


.nav-link {
  color: #000000 !important;
  font-family: 'DM Sans', sans-serif;
}

.contact-btn {
  background-color: black;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: linear-gradient(135deg, #1e3a8a, #60a5fa);
  color: #ffffff;
}


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

/* Tablets */
@media (min-width: 576px) {
  .navbar-brand img.logo {
    height: 48px;
    transform: scale(3.3);
  }
}

/* Laptops & Desktops */
@media (min-width: 992px) {
  .navbar-brand img.logo {
    height: 52px;
    transform: scale(3.45);
  }
}

/* Prevent clipping */
.navbar {
  overflow: visible;
}

/* Ensure header elements stack correctly */
.header {
  position: relative;
}

/* Align button and nav links horizontally on large screens */

  .offcanvas-body .navbar-nav {
    margin-bottom: 0; /* remove bottom spacing */
  }

  .offcanvas-body form {
    margin-left: 1rem; /* add a bit of space between links and button */
  }


/* Change offcanvas close button color */
.btn-close {
  filter: invert(66%) sepia(35%) saturate(458%) hue-rotate(8deg) brightness(96%) contrast(91%);
  /* This filter creates the #c79d63 gold tone */
}

.navbar-brand {
  pointer-events: auto;
}

.navbar-brand img {
  pointer-events: none;
}

.navbar-toggler {
  position: relative;
  z-index: 1300;
}



/* ================================================= */
/* MOBILE OFFCANVAS — DARK BLUR GLASS (IMAGE MATCH) */
/* ================================================= */
@media (max-width: 991px) {

  /* Offcanvas dark blur */
  .offcanvas {
    background: rgba(18, 18, 18, 0.55) !important; /* dark blur glass */
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: #ffffff;
    width: 280px; /* panel width */
    height: 100vh;
    border-radius: 0;
    z-index: 1200 !important;
    padding: 0;
  }

  /* Offcanvas header */
  .offcanvas-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .offcanvas-title {
    color: #ffffff;
    font-weight: 500;
  }

  .offcanvas .btn-close {
    filter: invert(1);
  }

  /* Body layout */
  .offcanvas-body {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    height: calc(100% - 70px); /* account for header height */
  }

  /* Menu links aligned left */
  .offcanvas .navbar-nav {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .offcanvas .nav-link {
    color: #ffffff !important;
    font-size: 1rem;
    text-align: left;
    font-weight: 400;
  }

  .offcanvas .nav-link.active,
  .offcanvas .nav-link:hover {
    color: #ffffff !important;
  }

  /* Button at bottom, rounded black */
  .offcanvas .contact-btn {
    margin-top: auto;
    align-self: flex-start;  /* left align */
    background: linear-gradient(135deg, #1e3a8a, #60a5fa);
    color: #ffffff;
    border-radius: 50px;
    padding: 0.7rem 1.6rem;
    border: none;
  }

  .offcanvas .contact-btn:hover {
    background: linear-gradient(135deg, #1e3a8a, #60a5fa);
    color: #ffffff;
  }

  /* Backdrop */
  .offcanvas-backdrop {
    background: rgba(0,0,0,0.35);
    z-index: 1150 !important;
  }
}
@media (max-width: 991px) {
  /* Stack links vertically and align left */
  .offcanvas .navbar-nav {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1rem;
    margin-left: 0 !important;  /* remove any left/right auto margin */
  }
}

/* ===== SMALL MOBILE FIX (≤420px) ===== */
@media (max-width: 420px) {

  /* Make navbar content align properly */
  .navbar .container {
    justify-content: space-between;
  }

  /* Brand wrapper */
  .navbar-brand {
    display: flex;
    align-items: center;
    margin-right: auto;
  }
}



/*....................................................................... Hero section ........................................*/
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* Background video wrapper */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Video full cover */
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25);
}


.hero-info {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  color: #B4B4B499;
  font-family: 'DM Mono', monospace;
  font-size: 25px;
  font-weight: 400;
}

.hero-info .container {
  padding-left: 1rem;
  padding-right: 1rem;
}

.hero-info h1 {
  color: white;
  font-family: 'Bebas Neue', poppins;
  font-size: 120px;
  letter-spacing: 5px;
  margin-bottom: 0%;
}
.hero-info h1 span {
  color: #00ffd5;
}

.hero-info .btn-primary-custom {
 border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  background: linear-gradient(135deg, #1e3a8a, #60a5fa);
  border: none;
  padding: 12px 30px;
  color: white;
}

.hero-info .btn-primary-custom:hover {
  transform: translateY(2px);
  box-shadow: 
  0 4px 10px rgba(255, 255, 255, 0.12),
  0 0 30px rgba(18, 194, 163, 0.15);
}

.hero-info .btn-outline-light {
  color: white;
  border: 2px solid white;
  background-color: transparent;
  border-radius: 50px;
}
.hero-info .btn-outline-light:hover {
  background: linear-gradient(135deg, #1e3a8a, #60a5fa);
    transform: translateY(2px);
  box-shadow: 
  0 4px 10px rgba(255, 255, 255, 0.12),
  0 0 30px rgba(18, 194, 163, 0.15);
  color: #ffffff;
  border-color: white;
}

/* Laptops & Mid Desktops (992px–1439px) */
@media (max-width: 1439px) {
  .hero-info h1 {
    font-size: 90px;
  }
  .hero-info p {
    font-size: 20px;
  }
}

/* Tablets (768px–991px) */
@media (max-width: 991px) {
  .hero-info {
    font-size: 20px;
  }
  .hero-info h1 {
    font-size: 70px;
    letter-spacing: 3px;
  }
  .hero-info p {
    font-size: 18px;
  }
  .hero-info .btn-lg {
    padding: 10px 25px;
    font-size: 16px;
  }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
  .hero-info {
    top: 50%;
    transform: translateY(-50%);
    padding: 0 1rem;
  }
  .hero-info h1 {
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: 2px;
  }
  .hero-info p {
    font-size: 16px;
  }
  .hero-info .btn-lg {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }
  .hero-info .btn-outline-light {
    width: 100%;
  }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
  .hero-info h1 {
    font-size: 34px;
  }
  .hero-info p {
    font-size: 14px;
  }
  .hero-info span {
    font-size: 16px;
  }
}

/*......................................................business section...................................................*/

#business-section {
  padding: 10rem 0;
  color: white;
}

.business h2 {
  font-size: 72px;
  color: #B4B4B499;
}

.business-img {
  max-width: 100%;
  height: auto;
}


/* Tablet */
@media (max-width: 991px) {
  #business-section {
    padding: 6rem 0;
    text-align: center; /* center text and inline elements */
  }

  #business-section .section-title {
    font-size: 42px;
  }

  #business-section .section-subtitle {
    font-size: 18px;
  }

  #business-section p {
    font-size: 15px;
    line-height: 1.6;
  }

  .business-img {
    margin: 32px auto 0; /* auto left & right for centering */
    display: block;       /* ensures it respects auto margins */
    max-width: 90%;       /* optional, keep it responsive */
  }
}

/* Mobile */
@media (max-width: 576px) {
  #business-section {
    padding: 5rem 0;
    text-align: center;
  }

  #business-section .section-title {
    font-size: 32px;
  }

  #business-section .section-subtitle {
    font-size: 16px;
  }

  #business-section p {
    font-size: 14px;
  }

  .business-img {
    max-width: 85%;
    margin: 24px auto 0;
    display: block;
  }
}

/* ..................................................................challengets section...................................................*/


#Challenges-section {
  padding: 10rem 0;
  background-color: #262628;
}

.Challenges h2 {
  font-size: 72px;
  color: #B4B4B4;
}

/* Image */
.challenges-img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.7));
}

.challenges h3 {
  color: white;
  font-size: 40px;
}

.Challenges p {
  color: white;
}
.challenges-question {
  font-size: 28px;
  font-weight: bold;
}

.challenges-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: linear-gradient(135deg, #1e3a8a, #60a5fa);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.challenges-btn:hover {
  transform: translateY(2px);
  box-shadow: 
  0 4px 10px rgba(255, 255, 255, 0.12),
  0 0 30px rgba(18, 194, 163, 0.15);
}

/* =====================================
   RESPONSIVE — TABLET & MOBILE
===================================== */

/* TABLET */
@media (max-width: 991px) {

  #Challenges-section {
    padding: 6rem 0;
  }

  .challenges-heading {
    font-size: 48px;
  }

  .challenges-img {
    margin-bottom: 40px;
  }

  .challenges h3 {
    font-size: 32px;
  }

  .challenges-question {
    font-size: 22px;
  }

  .challenges-btn {
    padding: 12px 26px;
    font-size: 15px;
  }
}

/* MOBILE */
@media (max-width: 576px) {

  #Challenges-section {
    padding: 5rem 0;
    text-align: center;
  }

  .challenges-heading {
    font-size: 34px;
    line-height: 1.2;
  }

  .challenges-img {
    max-width: 85%;
    margin: 0 auto 32px;
    display: block;
  }

  .challenges h3 {
    font-size: 26px;
  }

  .challenges-text {
    font-size: 14px;
    line-height: 1.6;
  }

  .challenges-question {
    font-size: 20px;
  }

  .challenges-btn {
    margin: 0 auto;
    justify-content: center;
  }
}

/* Tablet */
@media (max-width: 991px) {
  #Challenges-section .challenges-heading {
    font-size: 42px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  #Challenges-section .challenges-heading {
    font-size: 32px;
  }
}


/*........................................................................industries-section........................................*/
#industries-section {
  padding: 10rem 0;
}

.industries h2 {
  font-size: 72px;
  color: #B4B4B499;
}

.industries h3 {
  font-size: 14px;
}

.industry-card {
  position: relative;
  background: #eef3f6;
  border-radius: 22px;
  padding: 40px;
  overflow: hidden;
  min-height: 260px;
}

.industry-img {
  position: absolute;
  right: 10px;
  bottom: 0;
  height: 98%;
  padding-top: 15px;
  padding-bottom: 15px;
  transition: transform 0.4s ease;
}

.industry-content h3 {
  font-size: 40px;
}

/* ---------- GRADIENT ON HOVER ---------- */

.industry-card.aqua:hover {
  background: linear-gradient(135deg, #eef3f6, #1fe0c8);
}

.industry-card.brown:hover {
  background: linear-gradient(135deg, #eef3f6, #b87333);
}

.industry-card.blue:hover {
  background: linear-gradient(135deg, #eef3f6, #4b8bff);
}

.industry-card.orange:hover {
  background: linear-gradient(135deg, #eef3f6, #ffb347);
}

.industry-card .btn {
  transition: all 0.3s ease;
}

.industry-card:hover .btn {
  background-color: #000;
  color: #fff;
  border-color: #000;
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.industry-card:hover .industry-img {
  transform: translateX(-15px) scale(1.05);
}

/* ===============================
   RESPONSIVE — TABLET & MOBILE
================================ */
@media (max-width: 991px) {

  #industries-section {
    padding: 6rem 0;
  }

  .industries h2 {
    font-size: 42px;
  }

  .industry-card {
    padding: 28px;
    min-height: auto;
  }

  .industry-content h3 {
    font-size: 28px;
  }

  .industry-content p {
    font-size: 14px;
  }

  .industry-img {
    position: relative;
    right: auto;
    bottom: auto;
    display: block;
    margin: 20px auto 0;
    height: 180px;
    transform: none !important;
  }
}

/* ===============================
   MOBILE (SMALL SCREENS)
================================ */
@media (max-width: 576px) {

  .industries h2 {
    font-size: 34px;
  }

  .industry-card {
    text-align: center;
  }

  .industry-content h3 {
    font-size: 24px;
  }

  .industry-img {
    height: 160px;
  }
}

/* ===============================
   FIX CARD SPACING ON MOBILE
================================ */
@media (max-width: 991px) {

  .industries .col-md-6 {
    margin-bottom: 24px;
  }

  /* remove extra space after last card */
  .industries .col-md-6:last-child {
    margin-bottom: 0;
  }
}

/* =====================================
   FORCE GRADIENT VISIBILITY ON MOBILE
===================================== */
@media (max-width: 991px) {

  .industry-card.aqua,
  .industry-card.brown,
  .industry-card.blue,
  .industry-card.orange {
    background: linear-gradient(135deg, #eef3f6, transparent) !important;
  }

  .industry-card.aqua {
    background: linear-gradient(135deg, #eef3f6, #1fe0c8) !important;
  }

  .industry-card.brown {
    background: linear-gradient(135deg, #eef3f6, #b87333) !important;
  }

  .industry-card.blue {
    background: linear-gradient(135deg, #eef3f6, #4b8bff) !important;
  }

  .industry-card.orange {
    background: linear-gradient(135deg, #eef3f6, #ffb347) !important;
  }

  /* Disable hover dependency on mobile */
  .industry-card:hover {
    background: inherit;
  }

  /* Button always active style */
  .industry-card .btn {
    background-color: #000;
    color: #fff;
    border-color: #000;
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
  }

  /* Prevent image jump */
  .industry-card:hover .industry-img {
    transform: none;
  }
}


/*........................................................................services section...........................................................*/
#services-section {
  padding: 10rem 0;
  background-color: #262628;
}

/* Image card */
.service-image {
  width: 100%;
  max-width: 420px;   /* controls width */
  height: 320px;      /* FIXED height for all images */
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}


.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* 🔥 key line */
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s ease;
}

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

/* Content */
.service-content h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.service-content p {
  color: #707486;
  max-width: 520px;
  margin-bottom: 20px;
}

/* Button */
.service-content .btn {
  padding: 10px 26px;
  transition: all 0.3s ease;
}

.service-content .btn:hover {
  background: linear-gradient(135deg, #1e3a8a, #60a5fa);
  box-shadow: 
    0 4px 10px rgba(255, 255, 255, 0.12),
    0 0 30px rgba(18, 194, 163, 0.15);
    border: none;
    color: #ffffff;
}

.services .container {
  display: flex;
  flex-direction: column;
  gap: 7rem; /* ← spacing between ITEM 1–4 */
}

/* Responsive: stack rows on smaller screens */
@media (max-width: 991px) {
  .row.align-items-center {
    display: flex;
    flex-direction: column; /* stack image and content vertically */
    align-items: center;    /* center everything */
    text-align: center;     /* center text */
  }

  .col-md-6 {
    max-width: 100%;
  }

  .service-content {
    margin-top: 2rem;
  }
}

/*........................................................................read-section...........................................................*/
/* #read-section {
  padding: 10rem 0;
  color: white;
}

.read h2 {
  color: #B4B4B499;
} */

/* SCROLL CONTAINER */
/* .scroll-container {
  width: 100%;
  overflow: hidden;
  position: relative;
} */

/* .scroll-content {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: scroll 35s linear infinite;
} */

/* CARD */
/* .read-card {
  width: 340px;
  background: #121317;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.4s ease;
} */

/* .read-card:hover {
  transform: translateY(-6px);
} */

/* IMAGE */
/* .read-image {
  height: 200px;
  position: relative;
  overflow: hidden;
} */

/* .read-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
} */

/* IMAGE GRADIENT OVERLAY */
/* .read-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 40%,
    rgba(0,0,0,0.9) 100%
  );
} */

/* .read-card:hover img {
  transform: scale(1.05);
} */

/* CONTENT */
/* .read-content {
  padding: 22px;
  position: relative;
} */

/* .read-content h3 {
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 48px;
} */

/* BUTTON */
/* .read-btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1f2025;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s ease;
} */

/* .read-card:hover .read-btn {
  background: linear-gradient(135deg, #12c2a3, #0ea5a4);
  box-shadow: 0 0 30px rgba(18, 194, 163, 0.45);
} */

/* .scroll-container {
  overflow: hidden;
  width: 100%;
} */

/* .scroll-content {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: infiniteScroll s linear infinite;
} */


/* TRUE SEAMLESS LOOP */
/* @keyframes infiniteScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 1.25rem));
  }
} */

/* RESPONSIVE */
/* @media (max-width: 768px) {
  .read-card {
    width: 280px;
  }

  .read-content h3 {
    font-size: 1.05rem;
  }
} */

/*........................................................................have-section...........................................................*/
#have-section {
  position: relative;
  padding: 9rem 0;
}

#have-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/images/jonatan-pie-FOcMXBbe5rU-unsplash.jpg')
              no-repeat center / cover;
  filter: brightness(30%);
  z-index: -1;
}

.have h1 {
  font-size: 72px;
}

/* ===================== */
/* 📱 Mobile */
/* ===================== */
@media (max-width: 576px) {
  #have-section {
    min-height: 80vh;
    padding: 6rem 1.2rem;
    text-align: center;
  }

  .have h1 {
    font-size: 2rem;   /* smaller on mobile */
    line-height: 1.2;
  }

  .have p br {
    display: none;
  }

  .challenges-btn {
    justify-content: center;
  }
}

/* ===================== */
/* 📲 Tablet */
/* ===================== */
@media (max-width: 768px) {
  #have-section {
    padding: 8rem 2rem;
  }

  .have h1 {
    font-size: 2.8rem; /* slightly smaller on tablet */
  }
}

/*......................................................footer section...................................................*/
#footer-section {
  padding: 7rem 0;
  background-color: #262628;
}

.footer-title {
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-list {
  list-style: none;
  padding: 0;
}

.footer-list li {
  margin-bottom: 0.6rem;
}

.footer-list a,
.contact-item a {
  color: #7a7a7a;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-list a:hover,
.contact-item a:hover {
  color: #fff;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
}

.contact-item i {
  font-size: 1rem;
  color: #9a9a9a;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.08);
}

.footer-link {
  color: #9a9a9a;
  text-decoration: none;
}

.footer-link:hover {
  color: #fff;
}

.footer-logo {
  width: 100%;   
  height: auto;
  max-width: 100%;
}


/* ============================= */
/* GLOBAL FADE SYSTEM */
/* ============================= */

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
  will-change: opacity, transform;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 420px) {
  .navbar-brand img.logo {
    height: 40px !important;      /* keep base size */
    width: auto !important;
    max-width: 140px;
    transform: scale(3.6) !important;  /*  MAKE IT BIGGER */
    transform-origin: left center;      /* scale from left */
  }
}