/* Unified Header Visibility */
.header-mobile,
#header-mobile-include > header {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  visibility: visible !important;
  pointer-events: auto !important;
  height: auto !important;
}


/* General Styles */
    *
{
      box-sizing: border-box;
    }

body {
  background: linear-gradient(135deg, #ffffff, #eef2f7);
}


    a {
      text-decoration: none;
      color: inherit;
    }

    /* TOP BAR */
    .top-bar {
      background-color: #444444;
      color: #ffffff;
      font-size: 14px;
      padding: 6px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .top-bar-left,
    .top-bar-right {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .top-bar i {
      margin-right: 6px;
    }

    .top-bar-right a {
      color: #ffffff;
    }
	/* Global top bar polish */
.top-bar {
  background: linear-gradient(90deg, #3f3f3f, #222222);
  box-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

.top-bar i {
  font-size: 15px;
}

.top-bar-right a {
  color: #ffffff;
  font-size: 15px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Subtle hover glow on social icons */
.top-bar-right a:hover {
  transform: translateY(-1px) scale(1.05);
  opacity: 0.85;
}

/* Fine-tuning social icon centering */
.top-bar-right a i {
  position: relative;   /* allows manual positioning */
  left: 2px;            /* adjust horizontal alignment */
  top: 0px;             /* adjust vertical alignment */
}
.top-bar-right a {
  text-decoration: none !important;
}

/* ---------- MOBILE TOP BAR (CENTERED & STYLED) ---------- */
@media (max-width: 600px) {
  .top-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 18px;
    gap: 10px;
    border-radius: 0 0 14px 14px;        /* soft bottom curve */
  }

  .top-bar-left,
  .top-bar-right {
    width: 100%;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  /* Email + phone line */
  .top-bar-left {
    font-size: 13px;
    line-height: 1.4;
  }

  /* Social row with pill background */
  .top-bar-right {
    margin-top: 2px;
    padding: 6px 10px;
    border-radius: 999px;
    background-color: rgba(255,255,255,0.06);
  }

  /* Social icons as soft circles */
  .top-bar-right a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.22);
    font-size: 15px;
  }

  .top-bar-right a:hover {
    transform: translateY(-1px) scale(1.07);
    opacity: 0.9;
  }
}
    /* MAIN HEADER */
    .main-header {
      background-color: #ffffff;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
      padding: 10px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: sticky;
      top: 0;
      z-index: 10;
    }

    .logo-area {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-box {
      border: 2px solid #ff7a1a;
      width: 52px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: #555;
    }

    .logo-text {
      line-height: 1.1;
    }

    .logo-text .company-name {
      font-size: 20px;
      font-weight: 600;
      letter-spacing: 0.5px;
    }

    .logo-text .company-tagline {
      font-size: 12px;
      font-weight: 600;
      color: #ff7a1a;
      text-transform: uppercase;
    }
	
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 70vh;
  overflow: hidden;
  padding: 0;
  margin-bottom: -120px;
  position: relative;
  z-index: 1;
}

/* SLIDES */
#hero .carousel-item {
  width: 100%;
  height: 70vh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  /* Smooth transitions */
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease-in-out, transform 1.2s ease;
}

#hero .carousel-item.active {
  opacity: 1;
  transform: scale(1);
}

/* DARK OVERLAY (optional, currently empty) */
#hero .carousel-item::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
}

/* CONTAINER */
#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0; bottom: 0; left: 0; right: 0;
  padding-bottom: 120px;
}

#hero .carousel-content {
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.30) 0%, rgba(255, 255, 255, 0.20) 100%);
  padding: 40px 50px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  max-width: 90%;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* HEADLINE */
#hero h2 {
  color: #2e2e2e;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  opacity: 0;                    /* animation initial state */
  transform: translateY(-40px);  /* come from top */
  transition: all 0.9s ease;
}

#hero h2 span {
  color: #FF7722;
}

/* PARAGRAPH */
#hero p {
  width: 80%;
  margin: 0 auto 30px auto;
  color: #000000;
  opacity: 0;                    /* animation initial */
  transform: translateY(40px);   /* come from bottom */
  transition: all 1s ease;
  font-weight: 500;
}

/* ACTIVATE TEXT ANIMATION WHEN SLIDE ACTIVE */
#hero .active h2 {
  opacity: 1;
  transform: translateY(0);
}

#hero .active p {
  opacity: 1;
  transform: translateY(0);
}

/* BUTTON */
#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #FF7722;
  background: #FF7722;
  color: #fff;

  opacity: 0;                            /* initial */
  transform: translateY(20px);
  transition: all 1s ease 0.4s;          /* delay */
}

#hero .active .btn-get-started {
  opacity: 1;
  transform: translateY(0);
}

#hero .btn-get-started:hover {
  color: #FF7722;
  background: #fff;
  text-decoration: none;
}

/* SLIDE MOVEMENTS */
#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

/* PREV/NEXT CONTROLS */
#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  color: #545454;
  width: auto;
  height: auto;
  line-height: 1;
}

/* INDICATORS */
#hero .carousel-indicators li {
  cursor: pointer;
  background: #FF7722;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  margin-bottom: 180px;
}

/* RESPONSIVE */
@media (max-height: 768px), (max-width: 1200px) {
  #hero {
    margin-bottom: 60px;
  }
  #hero .carousel-container {
    padding-bottom: 0;
  }
  #hero .carousel-indicators li {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 90vh;
  }
  #hero .carousel-item {
    height: 90vh;
  }
}

@media (min-width: 1024px) {
  #hero p {
    width: 50%;
  }
  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
    top: 50%;
    transform: translateY(-50%);
  }
  #hero .carousel-content {
    padding: 50px 60px;
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  #hero .carousel-content {
    padding: 30px 25px;
    max-width: 95%;
  }
  #hero h2 {
    font-size: 32px;
  }
  #hero p {
    font-size: 14px;
  }
}
#hero .carousel-indicators li::before {
  content: "" !important;
}
#hero .carousel-indicators {
  counter-reset: none !important;
}

#hero .carousel-indicators li::marker {
  content: "" !important;  /* hide marker */
}

#hero .carousel-indicators {
  list-style: none !important;
}

#hero .carousel-indicators li {
  list-style-type: none !important;
}



/* base card style */
.service-card {
  border: 0.5px solid #ededed;
  padding: 55px 45px 55px;
  text-align: center;
  background-color: #ffffff;
  transition: background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

/* STATS SECTION */
.stats-section {
  padding: 30px 0;         /* space above & below */
}

/* CENTERED ONE-LINE STATS */
.stats-container {
  display: flex;
  justify-content: center;  /* centers horizontally */
  align-items: center;      /* vertical alignment */
  gap: 40px;                /* space between stat cards */
  flex-wrap: nowrap;        /* prevents breaking into multiple lines */
  width: 100%;
  max-width: 1200px;        /* total width */
  margin: 0 auto;           /* center the container */
  padding: 0 20px;          /* inner side padding */
}



/* STAT CARD */
.stat-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 40px 20px 32px;
  text-align: center;
  box-shadow: 0 15px 29px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #eeeeee;
}

/* ICONS */
.stat-card i {
  font-size: 30px;
  margin-bottom: 15px;
  color: #ff7a1a;
  transition: 0.3s ease;
}

/* TEXT */
.stat-card div {
  font-size: 19px;
  font-weight: 500;
  color: #333;
  transition: 0.3s ease;
}

/* HOVER EFFECT */
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.14);
  background: #ff7a1a;
}

.stat-card:hover i,
.stat-card:hover div {
  color: #ffffff;
}

/* ========================
   HOVER HIGHLIGHT EFFECT
   ======================== */
.service-card:hover {
  background-color: #ff7a1a;              /* full orange card */
  transform: translateY(-8px);            /* lift up */
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
  cursor: pointer;
}

.service-card:hover .service-title,
.service-card:hover .service-desc {
  color: #ffffff;                          /* white text */
}

.service-card:hover .service-icon {
  background-color: #ffffff;               /* white icon tile */
  color: #ff7a1a;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.service-card:hover .service-icon i {
  color: #ff7a1a;                          /* orange icon */
}

    /* NAV */
    nav > ul {
      list-style: none;
      display: flex;
      gap: 30px;
      font-size: 15px;
      margin: 0;
    }

    nav a {
      color: #555;
      font-weight: 400;
    }

    nav a.active,
    nav a:hover {
      color: #ff7a1a;
    }
	
	
	
	
#services {
  width: 100% !important;  
  background: url("assets/img/background.png") no-repeat center center;
  background-size: cover !important;
  background-position: center;
  
}


/* HERO BACKGROUND SLIDES */
.hero-slide {
  min-height: 550px;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* center content */
.hero-content {
  width: 100%;
  height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* text styles */
.hero-title {
  font-size: 48px;
  font-weight: 600;
  color: #ff7a1a;
  margin-bottom: 40px;
}

.hero-btn {
  display: inline-block;
  padding: 12px 45px;
  border-radius: 999px;
  background: #ff7a1a;
  color: #fff;
  font-weight: 500;
}

/* FIX CAROUSEL DOTS */
.carousel-indicators [data-bs-target] {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background-color: #ffd4b0 !important;
  border: none !important;
  margin: 0 5px !important;
  opacity: 1 !important;
}

.carousel-indicators .active {
  background-color: #ff7a1a !important;
  width: 11px !important;
  height: 11px !important;
}

/* arrow icon color */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(70%);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }
  .hero-content {
    height: 350px;
  }
  .hero-slide {
    min-height: 350px;
  }
}

    /* HERO SLIDER */
    #hero-slider {
      min-height: 420px;
      position: relative;
      background: #ffffff;
    }

    #hero-slider .carousel-item {
      min-height: 420px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-custom-container {
      text-align: center;
      padding: 80px 20px 60px;
    }

    .hero-title {
      font-size: 48px;
      font-weight: 600;
      color: #ff7a1a;
      margin-bottom: 40px;
    }

    .hero-btn {
      display: inline-block;
      padding: 12px 45px;
      border-radius: 999px;
      background: #ff7a1a;
      color: #fff;
      font-weight: 500;
    }

    .hero-btn:hover {
      opacity: 0.9;
      color: #fff;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      filter: invert(70%);
    }

    .carousel-indicators [data-bs-target] {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: #ffd1a3;
    }

    .carousel-indicators .active {
      background-color: #ff7a1a;
    }

    /* base look for all three */
.stat-card {
  width: 100%;
  text-align: center;
  padding: 35px 20px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 600;
  border: 1px solid #e6e6e6;
  background: #ffffff;
  color: #444;
  transition: background 0.35s ease, color 0.35s ease,
              transform 0.35s ease, box-shadow 0.35s ease;
}

.stat-card i {
  font-size: 42px;
  margin-bottom: 12px;
  display: block;
  color: #ff7a1a;
  transition: color 0.35s ease;
}

/* hover animation – now same for all */
.stat-card:hover {
  background: #ff7a1a;
  color: #ffffff;
  transform: translateY(-10px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
  cursor: pointer;
}

.stat-card:hover i {
  color: #ffffff;
}


    /* ABOUT SECTION */
    .about-detail {
      padding: 40px 40px 60px;
    }

    .about-detail-inner {
      max-width: 100%;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.1fr 1.2fr;
      gap: 40px;
      align-items: center;
    }

    .about-image img {
      width: 90%;
      border-radius: 4px;
      display: block;
      object-fit: cover;
    }

    .about-text h2 {
      font-size: 26px;
      font-weight: 600;
      color: #444;
      margin-bottom: 18px;
    }

    .about-text p {
      font-size: 16px;
      line-height: 1.7;
      margin-bottom: 14px;
    }

    .about-services {
      margin-top: 18px;
    }

    .about-service-item {
      font-size: 16px;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .about-service-item i {
      color: #ff7a1a;
      font-size: 16px;
    }

    .about-note {
      max-width: 100%;
      margin: 25px auto 0;
      font-size: 16px;
      line-height: 1.7;
      font-style: italic;
      color: #666;
    }
	
	/* DESKTOP (default) stays the same */
.about-detail-inner {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

/* MOBILE / TABLET: stack items in grid format */
@media (max-width: 768px) {
  .about-detail-inner {
    grid-template-columns: 1fr;      /* one column */
    grid-template-rows: auto auto;   /* two rows */
    gap: 20px;                       /* smaller spacing */
  }

  /* Move image above text */
  .about-image {
    order: -1;                       /* image first */
  }

  /* Mobile-friendly image width */
  .about-image img {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    display: block;
  }
}


    /* SERVICES SECTION */
    .services-section {
      padding: 40px 40px 60px;
      max-width:100%;
      margin: 0 auto;
    }

    .services-section h2 {
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 25px;
      color: #444;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
    }

    .service-card {
      border: 1px solid #ededed;
      padding: 35px 25px 30px;
      text-align: center;
      background-color: #ffffff;
    }

    .service-icon {
      width: 60px;
      height: 60px;
      margin: 0 auto 20px;
      border-radius: 4px;
      background-color: #ff7a1a;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-size: 26px;
    }

    .service-title {
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 10px;
      color: #444;
    }

    .service-desc {
      font-size: 13px;
      line-height: 1.7;
      color: #666;
    }


/* WORK PLATFORMS – software logo carousel */
.work-platforms {
  max-width: 100%;
  margin: 40px auto 70px;
  text-align: center;
  padding: 0 60px;
  position: relative;
}

.work-platforms h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #444;
}

.work-platforms p {
  font-size: 16px;
  color: #777;
  margin-bottom: 25px;
}

/* grid of 10 logos (5 x 2) */
.software-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 10px 0 20px;
}

.software-card {
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 0 0 1px #e4e8ec;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 10px;
  min-height: 90px;
}

.software-card img {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
}

/* carousel indicators inside section */
#platformsCarousel .carousel-indicators {
  position: static;
  margin-top: 10px;
}

#platformsCarousel .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ffd1a3;
  margin: 0 4px;
}

#platformsCarousel .carousel-indicators .active {
  background-color: #ff7a1a;
}

/* Position arrows at edges and center vertically for Software Proficiency */
#platformsCarousel .carousel-control-prev,
#platformsCarousel .carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  opacity: 0.8;
  transition: opacity 0.3s ease, background 0.3s ease;
}

#platformsCarousel .carousel-control-prev {
  left: -25px;
}

#platformsCarousel .carousel-control-next {
  right: -25px;
}

#platformsCarousel .carousel-control-prev:hover,
#platformsCarousel .carousel-control-next:hover {
  opacity: 1;
  background: rgba(255, 122, 26, 0.9);
}

/* hide arrows on very small screens if you like */
#platformsCarousel .carousel-control-prev-icon,
#platformsCarousel .carousel-control-next-icon {
  filter: invert(70%);
  width: 24px;
  height: 24px;
}

#platformsCarousel .carousel-control-prev:hover .carousel-control-prev-icon,
#platformsCarousel .carousel-control-next:hover .carousel-control-next-icon {
  filter: brightness(0) invert(1);
}

@media (max-width: 992px) {
  .software-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .software-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #platformsCarousel .carousel-control-prev {
    left: -15px;
  }
  #platformsCarousel .carousel-control-next {
    right: -15px;
  }
}

/* CLIENTS SECTION */
.clients-section {
  max-width: 100%;
  margin: 40px auto 70px;
  text-align: center;
  padding: 0 60px;
  position: relative;
}

.clients-section h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #444;
}

.clients-section p {
  font-size: 16px;
  color: #777;
  margin-bottom: 25px;
}

/* grid of 10 client logos (5 x 2) */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 10px 0 20px;
}

.client-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  border: 1px solid #e4e8ec;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 15px;
  min-height: 110px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.client-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff7a1a, #ff9500);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.client-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(255, 122, 26, 0.15);
  border-color: #ff7a1a;
}

.client-card:hover::before {
  transform: scaleX(1);
}

.client-logo-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.client-card img.client-logo {
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.client-card:hover img.client-logo {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.client-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  padding: 10px;
}

.client-placeholder i {
  font-size: 32px;
  color: #ff7a1a;
  margin-bottom: 4px;
  transition: transform 0.3s ease;
}

.client-card:hover .client-placeholder i {
  transform: scale(1.1) rotate(5deg);
  color: #ff9500;
}

.client-placeholder span {
  font-size: 12px;
  font-weight: 600;
  color: #444;
  text-align: center;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.client-card:hover .client-placeholder span {
  color: #ff7a1a;
}

/* carousel indicators inside section */
#clientsCarousel .carousel-indicators {
  position: static;
  margin-top: 10px;
}

#clientsCarousel .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ffd1a3;
  margin: 0 4px;
}

#clientsCarousel .carousel-indicators .active {
  background-color: #ff7a1a;
}

/* Position arrows at edges and center vertically */
#clientsCarousel .carousel-control-prev,
#clientsCarousel .carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  opacity: 0.8;
  transition: opacity 0.3s ease, background 0.3s ease;
}

#clientsCarousel .carousel-control-prev {
  left: -25px;
}

#clientsCarousel .carousel-control-next {
  right: -25px;
}

#clientsCarousel .carousel-control-prev:hover,
#clientsCarousel .carousel-control-next:hover {
  opacity: 1;
  background: rgba(255, 122, 26, 0.9);
}

/* hide arrows on very small screens if you like */
#clientsCarousel .carousel-control-prev-icon,
#clientsCarousel .carousel-control-next-icon {
  filter: invert(70%);
  width: 24px;
  height: 24px;
}

#clientsCarousel .carousel-control-prev:hover .carousel-control-prev-icon,
#clientsCarousel .carousel-control-next:hover .carousel-control-next-icon {
  filter: brightness(0) invert(1);
}

@media (max-width: 992px) {
  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
  
  .client-card {
    min-height: 100px;
    padding: 18px 12px;
  }
  
  .client-placeholder i {
    font-size: 28px;
  }
  
  .client-placeholder span {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .client-card {
    min-height: 95px;
    padding: 15px 10px;
  }
  
  .client-placeholder i {
    font-size: 24px;
  }
  
  .client-placeholder span {
    font-size: 10px;
  }
  
  .clients-section {
    padding: 0 20px;
  }
  
  #clientsCarousel .carousel-control-prev {
    left: -15px;
  }
  
  #clientsCarousel .carousel-control-next {
    right: -15px;
  }
}

@media (max-width: 480px) {
  .clients-grid {
    gap: 10px;
  }
  
  .client-card {
    min-height: 85px;
    padding: 12px 8px;
  }
  
  .client-placeholder i {
    font-size: 20px;
  }
  
  .client-placeholder span {
    font-size: 9px;
  }
}

    /* CONTACT SECTION */
    .contact-section {
      max-width: 100%;
      margin: 0 auto 40px;
      padding: 0 40px;
    }

    .contact-section h2 {
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .contact-section p {
      font-size: 14px;
      margin-bottom: 10px;
    }

    /* FOOTER */
footer.site-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
  color: #ffffff;
  padding: 60px 40px 25px;
  font-size: 16px;
  position: relative;
  overflow: hidden;
}

footer.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff7a1a, #008ecf, #ff7a1a, transparent);
  opacity: 0.6;
}

.footer-main {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

/* Left brand block */
.footer-brand {
  max-width: 280px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.footer-brand-logo:hover {
  transform: translateX(5px);
}

.footer-brand-text {
  font-size: 15px;
  line-height: 1.7;
  color: #cccccc;
  opacity: 0.9;
}

/* reuse header logo styles but on dark bg */
footer.site-footer .logo-box {
  border-color: #ff7a1a;
  color: #ffffff;
  transition: all 0.3s ease;
}

footer.site-footer .logo-box:hover {
  border-color: #ff9a3a;
  box-shadow: 0 0 15px rgba(255, 122, 26, 0.3);
}

footer.site-footer .logo-text .company-name {
  color: #ffffff;
}

footer.site-footer .logo-text .company-tagline {
  color: #ff7a1a;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Middle columns */
.footer-columns {
  display: flex;
  gap: 70px;
  flex: 1;
  justify-content: flex-start;
}

.footer-column-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 22px;
  color: #ffffff;
  position: relative;
  padding-bottom: 10px;
}

.footer-column-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #ff7a1a, #008ecf);
  border-radius: 2px;
}

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

.footer-list li {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 142, 207, 0.3);
  width: 300px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-list li:hover {
  border-bottom-color: #008ecf;
  padding-left: 5px;
}

.footer-list li::before {
  content: '→';
  position: absolute;
  left: -15px;
  opacity: 0;
  color: #ff7a1a;
  transition: all 0.3s ease;
}

.footer-list li:hover::before {
  opacity: 1;
  left: -10px;
}

.footer-list a {
  color: #e0e0e0;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-list a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

/* Right side: reach + social */
.footer-right {
  min-width: 200px;
  text-align: right;
  padding-right: 40px;
}

.footer-mail-fab {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f39a1f 0%, #ff7a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: fixed;
  right: 30px;
  bottom: 100px;
  z-index: 999;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(243, 154, 31, 0.3);
  margin: 0;
  text-decoration: none;
  color: inherit;
}

.footer-mail-fab:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 6px 20px rgba(243, 154, 31, 0.5);
  background: linear-gradient(135deg, #ff7a1a 0%, #f39a1f 100%);
}

.footer-mail-fab i {
  color: #ffffff;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.footer-mail-fab:hover i {
  transform: scale(1.1);
}

.footer-reach-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  color: #000000;
  padding: 12px 36px;
  border-radius: 6px;
  font-weight: 600;
  margin-bottom: 30px;
  border: 2px solid transparent;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
  letter-spacing: 0.5px;
}

.footer-reach-btn:hover {
  background: linear-gradient(135deg, #ff7a1a 0%, #f39a1f 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 122, 26, 0.4);
  border-color: #ff7a1a;
}

.footer-socials {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  margin-right: -20px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.footer-socials a:hover {
  transform: translateY(-5px) scale(1.1);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 122, 26, 0.5);
  box-shadow: 0 5px 15px rgba(255, 122, 26, 0.3);
}

.footer-socials a:nth-child(1):hover { /* LinkedIn */
  background: #0077b5;
  border-color: #0077b5;
}

.footer-socials a:nth-child(2):hover { /* Twitter/X */
  background: #000000;
  border-color: #000000;
}

.footer-socials a:nth-child(3):hover { /* Facebook */
  background: #1877f2;
  border-color: #1877f2;
}

.footer-socials a:nth-child(4):hover { /* Instagram */
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
}

.footer-socials a:nth-child(5):hover { /* YouTube */
  background: #ff0000;
  border-color: #ff0000;
}

.footer-socials a:nth-child(6):hover { /* WhatsApp */
  background: #25d366;
  border-color: #25d366;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 14px;
  color: #999;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-main {
    flex-direction: column;
    gap: 30px;
  }

  .footer-columns {
    flex-wrap: wrap;
    gap: 30px;
  }

  .footer-right {
    text-align: left;
  }

  .footer-socials {
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  footer.site-footer {
    padding: 35px 20px 20px;
  }

  .footer-list li {
    width: 100%;
  }
}


/* -------- Quantity Estimation Section -------- */
.estimation-section {
    padding: 60px 40px;
    text-align: center;
    max-width: 1100px;
    margin: auto;
}

.estimation-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.estimation-text {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    max-width: 90%;
    margin: 0 auto 40px;
    text-align: left;   /* ← fixed */
}


/* ---- GRID OF BUTTONS ---- */
.estimation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 0 auto;
}

/* ---- BUTTON STYLE ---- */
.estimation-btn {
    background: #f4f4f4;
    padding: 16px 10px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #000;
    border: 1px solid #e5e5e5;
}

/* ---- ACTIVE (Black Button Like Screenshot) ---- */
.estimation-btn.active {
    background: #000;
    color: #fff;
}

/* ---- HOVER EFFECT ---- */
.estimation-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .estimation-grid {
        grid-template-columns: 1fr;
    }
}

    /* Why Choose us  SECTION */
    .services-section {
      padding: 40px 40px 60px;
      max-width:100%;
      margin: 0 auto;
    }

    .services-section h2 {
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 25px;
      color: #444;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
    }

    .service-card {
      border: 1px solid #ededed;
      padding: 35px 25px 30px;
      text-align: center;
      background-color: #ffffff;
    }

    .service-icon {
      width: 60px;
      height: 60px;
      margin: 0 auto 20px;
      border-radius: 4px;
      background-color: #ff7a1a;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-size: 26px;
    }

    .service-title {
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 10px;
      color: #444;
    }

    .service-desc {
      font-size: 13px;
      line-height: 1.7;
      color: #666;
    }
/* ----------------------------
   RESPONSIVE SERVICES CARDS
   ---------------------------- */

/* Tablet – 2 columns */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .service-card {
    padding: 30px 20px;
  }

  .service-title {
    font-size: 20px;
  }
}

/* Mobile – 1 column (like FAQ cards) */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card {
    padding: 25px 18px;
    text-align: left;          /* optional: looks more premium */
    border-radius: 10px;       /* stylish like FAQ */
  }

  .service-icon {
    margin: 0 0 15px 0;        /* align to left */
  }

  .service-title {
    font-size: 18px;
    line-height: 1.4;
  }

  .service-desc {
    font-size: 13px;
  }
}
/* Tablet – 2 columns */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .service-card {
    padding: 30px 22px;
  }

  .service-title {
    font-size: 20px;
  }
}

/* Mobile – still 2 columns */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }

  .service-card {
    padding: 22px 16px;
    border-radius: 8px;
  }

  .service-icon {
    width: 52px;
    height: 52px;
    font-size: 22px;
    margin-bottom: 14px;
  }

  .service-title {
    font-size: 16px;
    line-height: 1.3;
  }

  .service-desc {
    font-size: 12px;
    line-height: 1.5;
  }
}


/* WORK PLATFORMS – software logo carousel */
.work-platforms {
  max-width: 100%;
  margin: 40px auto 70px;
  text-align: center;
  padding: 0 40px;
}

.work-platforms h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #444;
}

.work-platforms p {
  font-size: 16px;
  color: #777;
  margin-bottom: 25px;
}

/* grid of 10 logos (5 x 2) */
.software-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 10px 0 20px;
}

.software-card {
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 0 0 1px #e4e8ec;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 10px;
  min-height: 90px;
}

.software-card img {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
}

/* carousel indicators inside section */
#platformsCarousel .carousel-indicators {
  position: static;
  margin-top: 10px;
}

#platformsCarousel .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ffd1a3;
  margin: 0 4px;
}

#platformsCarousel .carousel-indicators .active {
  background-color: #ff7a1a;
}

/* hide arrows on very small screens if you like */
#platformsCarousel .carousel-control-prev-icon,
#platformsCarousel .carousel-control-next-icon {
  filter: invert(70%);
  
}

@media (max-width: 992px) {
  .software-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .software-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

    /* CONTACT SECTION */
    .contact-section {
      max-width: 100%;
      margin: 0 auto 40px;
      padding: 0 40px;
    }

    .contact-section h2 {
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .contact-section p {
      font-size: 14px;
      margin-bottom: 10px;
    }

    /* FOOTER */
footer.site-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
  color: #ffffff;
  padding: 60px 40px 25px;
  font-size: 16px;
  position: relative;
  overflow: hidden;
}

footer.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff7a1a, #008ecf, #ff7a1a, transparent);
  opacity: 0.6;
}

.footer-main {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

/* Left brand block */
.footer-brand {
  max-width: 280px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.footer-brand-logo:hover {
  transform: translateX(5px);
}

.footer-brand-text {
  font-size: 15px;
  line-height: 1.7;
  color: #cccccc;
  opacity: 0.9;
}

/* reuse header logo styles but on dark bg */
footer.site-footer .logo-box {
  border-color: #ff7a1a;
  color: #ffffff;
  transition: all 0.3s ease;
}

footer.site-footer .logo-box:hover {
  border-color: #ff9a3a;
  box-shadow: 0 0 15px rgba(255, 122, 26, 0.3);
}

footer.site-footer .logo-text .company-name {
  color: #ffffff;
}

footer.site-footer .logo-text .company-tagline {
  color: #ff7a1a;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Middle columns */
.footer-columns {
  display: flex;
  gap: 70px;
  flex: 1;
  justify-content: flex-start;
}

.footer-column-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 22px;
  color: #ffffff;
  position: relative;
  padding-bottom: 10px;
}

.footer-column-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #ff7a1a, #008ecf);
  border-radius: 2px;
}

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

.footer-list li {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 142, 207, 0.3);
  width: 300px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-list li:hover {
  border-bottom-color: #008ecf;
  padding-left: 5px;
}

.footer-list li::before {
  content: '→';
  position: absolute;
  left: -15px;
  opacity: 0;
  color: #ff7a1a;
  transition: all 0.3s ease;
}

.footer-list li:hover::before {
  opacity: 1;
  left: -10px;
}

.footer-list a {
  color: #e0e0e0;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-list a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

/* Right side: reach + social */
.footer-right {
  min-width: 200px;
  text-align: right;
  padding-right: 40px;
}

.footer-mail-fab {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f39a1f 0%, #ff7a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: fixed;
  right: 30px;
  bottom: 100px;
  z-index: 999;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(243, 154, 31, 0.3);
  margin: 0;
  text-decoration: none;
  color: inherit;
}

.footer-mail-fab:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 6px 20px rgba(243, 154, 31, 0.5);
  background: linear-gradient(135deg, #ff7a1a 0%, #f39a1f 100%);
}

.footer-mail-fab i {
  color: #ffffff;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.footer-mail-fab:hover i {
  transform: scale(1.1);
}

.footer-reach-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  color: #000000;
  padding: 12px 36px;
  border-radius: 6px;
  font-weight: 600;
  margin-bottom: 30px;
  border: 2px solid transparent;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
  letter-spacing: 0.5px;
}

.footer-reach-btn:hover {
  background: linear-gradient(135deg, #ff7a1a 0%, #f39a1f 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 122, 26, 0.4);
  border-color: #ff7a1a;
}

.footer-socials {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  margin-right: -20px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.footer-socials a:hover {
  transform: translateY(-5px) scale(1.1);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 122, 26, 0.5);
  box-shadow: 0 5px 15px rgba(255, 122, 26, 0.3);
}

.footer-socials a:nth-child(1):hover { /* LinkedIn */
  background: #0077b5;
  border-color: #0077b5;
}

.footer-socials a:nth-child(2):hover { /* Twitter/X */
  background: #000000;
  border-color: #000000;
}

.footer-socials a:nth-child(3):hover { /* Facebook */
  background: #1877f2;
  border-color: #1877f2;
}

.footer-socials a:nth-child(4):hover { /* Instagram */
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
}

.footer-socials a:nth-child(5):hover { /* YouTube */
  background: #ff0000;
  border-color: #ff0000;
}

.footer-socials a:nth-child(6):hover { /* WhatsApp */
  background: #25d366;
  border-color: #25d366;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 14px;
  color: #999;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-main {
    flex-direction: column;
    gap: 30px;
  }

  .footer-columns {
    flex-wrap: wrap;
    gap: 30px;
  }

  .footer-right {
    text-align: left;
  }

  .footer-socials {
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  footer.site-footer {
    padding: 35px 20px 20px;
  }

  .footer-list li {
    width: 100%;
  }
}

/* -------- Project Documentaion Section -------- */
.documentaion-section {
    padding: 60px 40px;
    text-align: center;
    max-width: 1100px;
    margin: auto;
}

.documentaion-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.documentaion-text {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    max-width: 90%;
    margin: 0 auto 40px;
    text-align: left;   /* ← fixed */
}


/* ---- GRID OF BUTTONS ---- */
.documentaion-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 0 auto;
}

/* ---- BUTTON STYLE ---- */
.documentaion-btn {
    background: #f4f4f4;
    padding: 16px 10px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #000;
    border: 1px solid #e5e5e5;
}

/* ---- ACTIVE (Black Button Like Screenshot) ---- */
.documentaion-btn.active {
    background: #000;
    color: #fff;
}

/* ---- HOVER EFFECT ---- */
.documentaion-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .documentaion-grid {
        grid-template-columns: 1fr;
    }
}
/* Document Controller Hero - compact, responsive block */
.doc-hero {
  background: linear-gradient(180deg, #fbfcfd 0%, #f3f6f8 100%);
  padding: 48px 20px;
  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: #1f2937;
}

.doc-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

/* image area */
.doc-hero__media {
  flex: 0 0 480px;
  max-width: 48%;
}
.doc-hero__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(18, 38, 63, 0.08);
}
/* content area */
.doc-hero__content {
  flex: 1 1 52%;
  max-width: 52%;
  text-align: left;
}

.doc-hero__title {
  font-size: 36px;
  line-height: 1.05;
  margin: 0 0 16px;
  font-weight: 700;
  color: #0b1320;
}

.doc-hero__title .highlight {
  color: #00b36b; /* green highlight */
  display: inline-block;
  margin-left: 6px;
}

/* lead paragraph */
.doc-hero__lead {
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
  margin: 0 0 18px;
  max-width: 100%;
}

/* features list */
.doc-hero__features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  color: #334155;
}
.doc-hero__features li {
  background: #ffffff;
  border: 1px solid #e6edf3;
  padding: 12px 14px;
  border-radius: 6px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(12, 34, 56, 0.04);
}

/* CTA */
.doc-hero__cta {
  display: inline-block;
  background: #0b1320;
  color: #ffffff;
  padding: 11px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.doc-hero__cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(11,19,32,0.18);
}

/* responsive */
@media (max-width: 980px) {
  .doc-hero__inner { flex-direction: column-reverse; gap: 22px; padding: 0 10px; }
  .doc-hero__media, .doc-hero__content { max-width: 100%; flex: none; text-align: center; }
  .doc-hero__title { font-size: 30px; text-align: center; }
  .doc-hero__lead { text-align: center; }
  .doc-hero__features { grid-template-columns: 1fr; }
  .doc-hero__cta { margin: 0 auto; }
}

@media (max-width: 420px) {
  .doc-hero { padding: 28px 14px; }
  .doc-hero__title { font-size: 24px; }
  .doc-hero__lead { font-size: 15px; }
  .doc-hero__cta { padding: 10px 16px; font-size: 14px; }
}
/* ========================
     HOVER EFFECT (GLOBAL)
   ======================== */
.stat-card:hover {
  background: #ff7a1a;
  color: #ffffff;
  transform: translateY(-10px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
  cursor: pointer;
}

.stat-card:hover i {
  color: #ffffff;
}


/* Dedicated Teams Section: Text left, image right */
.team-hero {
  background: linear-gradient(180deg,#ffffff 0%, #f7fafc 100%);
  padding: 56px 20px;
  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  color: #0f1724;
}
.team-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

/* LEFT: content */
.team-hero__content {
  flex: 1 1 58%;
  max-width: 58%;
  text-align: left;
}
.team-hero__title {
  font-size: 30px;
  line-height: 1.08;
  margin: 0 0 14px;
  font-weight: 700;
  color: #0b1320;
}
.team-hero__lead {
  font-size: 16px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 18px;
  max-width: 100%;
}

/* features list */
.team-hero__features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.team-hero__features li {
  background: #fff;
  border: 1px solid #e6eef6;
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 600;
  color: #10203a;
  box-shadow: 0 6px 18px rgba(16,32,58,0.04);
}

/* CTAs */
.team-hero__ctas {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}
.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform .16s ease, box-shadow .16s ease;
}
.btn-primary {
  background: #0b1320;
  color: #fff;
  border: 1px solid #0b1320;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(11,19,32,.16); }
.btn-outline {
  background: transparent;
  color: #0b1320;
  border: 1px solid #cfe3f2;
}
.btn-outline:hover { background: #f3fbff; transform: translateY(-3px); }

/* RIGHT: media */
.team-hero__media {
  flex: 0 0 420px;
  max-width: 42%;
  text-align: center;
}
.team-hero__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(12,34,56,0.08);
  object-fit: cover;
}

/* responsive: keep image on right for larger screens; stack on small screens */
@media (max-width: 980px) {
  .team-hero__inner {
    flex-direction: column-reverse; /* text first, image below on smaller screens */
    gap: 18px;
  }
  .team-hero__content, .team-hero__media { max-width: 100%; flex: none; text-align: center; }
  .team-hero__title { font-size: 26px; }
  .team-hero__features li { font-size: 15px; }
}
@media (max-width: 420px) {
  .team-hero { padding: 28px 12px; }
  .team-hero__title { font-size: 22px; }
  .team-hero__lead { font-size: 15px; }
  .team-hero__ctas { flex-direction: column; gap: 10px; }
  .team-hero__media { width: 95%; }
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
  padding: 56px 20px;
  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  color: #0f1724;
  margin: 40px auto;
  width: 100%;
  box-sizing: border-box;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  box-sizing: border-box;
}

.pricing-header {
  text-align: center;
  margin-bottom: 40px;
  width: 100%;
}

.pricing-title {
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 700;
  color: #0b1320;
  word-wrap: break-word;
}

.pricing-highlight {
  color: #ff7a1a;
  display: inline-block;
  white-space: nowrap;
}

.pricing-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: #334155;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
}

.pricing-content {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
  width: 100%;
}

.pricing-main {
  text-align: center;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(16, 32, 58, 0.08);
  border: 1px solid #e6eef6;
  width: 100%;
  max-width: 500px;
  box-sizing: border-box;
}

.pricing-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  position: relative;
}

.pricing-original {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  opacity: 0.6;
}

.pricing-amount-original {
  font-size: 36px;
  font-weight: 600;
  color: #94a3b8;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: #cbd5e1;
  position: relative;
}

.pricing-unit-original {
  font-size: 20px;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #cbd5e1;
}

.pricing-current {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.pricing-amount {
  font-size: 64px;
  font-weight: 700;
  color: #0b1320;
  line-height: 1;
}

.pricing-unit {
  font-size: 28px;
  font-weight: 600;
  color: #64748b;
}

.pricing-discount-badge {
  margin-top: 8px;
  margin-bottom: 4px;
}

.discount-text {
  display: inline-block;
  background: linear-gradient(135deg, #ff7a1a 0%, #ff9500 100%);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(255, 122, 26, 0.3);
}

.pricing-description {
  font-size: 16px;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
  word-wrap: break-word;
}

.pricing-professionals {
  width: 100%;
  box-sizing: border-box;
}

.professionals-title {
  font-size: 22px;
  font-weight: 600;
  color: #0b1320;
  margin-bottom: 24px;
  text-align: center;
  padding: 0 10px;
}

.professionals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 32px;
  width: 100%;
}

.professional-item {
  background: #ffffff;
  border: 1px solid #e6eef6;
  padding: 16px 18px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #10203a;
  box-shadow: 0 4px 12px rgba(16, 32, 58, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  min-height: 60px;
}

.professional-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 32, 58, 0.08);
}

.professional-item i {
  font-size: 20px;
  color: #ff7a1a;
  min-width: 24px;
  flex-shrink: 0;
}

.professional-item span {
  font-size: 15px;
  word-wrap: break-word;
  flex: 1;
}

.pricing-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 600px;
  box-sizing: border-box;
}

.pricing-cta .btn {
  min-width: 180px;
  box-sizing: border-box;
}

/* Tablet and Medium Screens */
@media (max-width: 1024px) {
  .pricing-section {
    padding: 48px 20px;
  }

  .pricing-title {
    font-size: 28px;
  }

  .pricing-subtitle {
    font-size: 16px;
    padding: 0 20px;
  }

  .professionals-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
  }

  .pricing-cta {
    max-width: 500px;
  }

  .pricing-amount-original {
    font-size: 32px;
  }

  .pricing-unit-original {
    font-size: 18px;
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  .pricing-section {
    padding: 40px 16px;
    margin: 30px auto;
  }

  .pricing-container {
    padding: 0 12px;
  }

  .pricing-header {
    margin-bottom: 32px;
  }

  .pricing-title {
    font-size: 26px;
    padding: 0 10px;
  }

  .pricing-highlight {
    display: block;
    margin-top: 4px;
  }

  .pricing-subtitle {
    font-size: 15px;
    padding: 0 15px;
  }

  .pricing-content {
    gap: 28px;
  }

  .pricing-main {
    padding: 32px 24px;
    max-width: 100%;
  }

  .pricing-amount-original {
    font-size: 28px;
  }

  .pricing-unit-original {
    font-size: 16px;
  }

  .pricing-amount {
    font-size: 48px;
  }

  .pricing-unit {
    font-size: 22px;
  }

  .discount-text {
    font-size: 12px;
    padding: 5px 14px;
  }

  .pricing-description {
    font-size: 15px;
  }

  .professionals-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .professionals-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 28px;
  }

  .professional-item {
    padding: 14px 16px;
    min-height: 56px;
  }

  .professional-item span {
    font-size: 14px;
  }

  .professional-item i {
    font-size: 18px;
    min-width: 22px;
  }

  .pricing-cta {
    flex-direction: row;
    gap: 10px;
    max-width: 100%;
    padding: 0 10px;
  }

  .pricing-cta .btn {
    flex: 1;
    min-width: 0;
    padding: 12px 20px;
  }
}

/* Mobile Landscape and Small Tablets */
@media (max-width: 640px) {
  .pricing-section {
    padding: 36px 12px;
  }

  .pricing-title {
    font-size: 24px;
  }

  .pricing-amount-original {
    font-size: 24px;
  }

  .pricing-unit-original {
    font-size: 14px;
  }

  .pricing-amount {
    font-size: 44px;
  }

  .pricing-unit {
    font-size: 20px;
  }

  .discount-text {
    font-size: 11px;
    padding: 4px 12px;
  }

  .professionals-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .professional-item {
    padding: 12px 14px;
    min-height: 52px;
  }

  .professional-item span {
    font-size: 13px;
  }

  .pricing-cta {
    flex-direction: column;
    gap: 10px;
  }

  .pricing-cta .btn {
    width: 100%;
    max-width: 100%;
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
  .pricing-section {
    padding: 32px 10px;
    margin: 20px auto;
  }

  .pricing-container {
    padding: 0 8px;
  }

  .pricing-header {
    margin-bottom: 24px;
  }

  .pricing-title {
    font-size: 22px;
    line-height: 1.3;
    padding: 0 5px;
  }

  .pricing-highlight {
    display: block;
    margin-top: 6px;
    font-size: 20px;
  }

  .pricing-subtitle {
    font-size: 14px;
    padding: 0 10px;
    line-height: 1.6;
  }

  .pricing-content {
    gap: 24px;
  }

  .pricing-main {
    padding: 28px 20px;
    border-radius: 12px;
  }

  .pricing-badge {
    gap: 6px;
    margin-bottom: 14px;
  }

  .pricing-amount-original {
    font-size: 22px;
  }

  .pricing-unit-original {
    font-size: 13px;
  }

  .pricing-amount {
    font-size: 40px;
  }

  .pricing-unit {
    font-size: 18px;
  }

  .discount-text {
    font-size: 11px;
    padding: 4px 10px;
  }

  .pricing-description {
    font-size: 14px;
    line-height: 1.5;
  }

  .professionals-title {
    font-size: 18px;
    margin-bottom: 16px;
    padding: 0 5px;
  }

  .professionals-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 24px;
  }

  .professional-item {
    padding: 14px 16px;
    min-height: 50px;
    border-radius: 8px;
  }

  .professional-item span {
    font-size: 14px;
  }

  .professional-item i {
    font-size: 18px;
    min-width: 20px;
  }

  .pricing-cta {
    flex-direction: column;
    gap: 10px;
    padding: 0 5px;
  }

  .pricing-cta .btn {
    width: 100%;
    padding: 12px 18px;
    font-size: 15px;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .pricing-section {
    padding: 28px 8px;
  }

  .pricing-title {
    font-size: 20px;
  }

  .pricing-highlight {
    font-size: 18px;
  }

  .pricing-amount-original {
    font-size: 20px;
  }

  .pricing-unit-original {
    font-size: 12px;
  }

  .pricing-amount {
    font-size: 36px;
  }

  .pricing-unit {
    font-size: 16px;
  }

  .discount-text {
    font-size: 10px;
    padding: 3px 10px;
  }

  .pricing-main {
    padding: 24px 16px;
  }

  .professional-item {
    padding: 12px 14px;
  }

  .professional-item span {
    font-size: 13px;
  }
}

/* ===== File: contacts.css ===== */

    /* small local overrides for the contact block to integrate cleanly */
    .contact-wrapper { max-width: 1100px; margin: 32px auto; padding: 18px; }
    .contact-grid { display: grid; grid-template-columns: 1fr 420px; gap: 26px; align-items: start; }
    @media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; } }

    .contact-card {
      background: #fff;
      border: 1px solid #ececec;
      padding: 18px;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(12,34,56,0.04);
      display: flex;
      gap: 12px;
      align-items: center;
    }
    .contact-card i { font-size: 22px; color: #ff7a1a; width:36px; text-align:center; }

    /* Form visuals */
    .pm-form { background:#fff;padding:20px;border-radius:10px;border:1px solid #eee; box-shadow:0 10px 30px rgba(12,34,56,0.04); }
    .pm-form .row { display:flex; gap:12px; }
    .pm-form .col { flex:1; display:flex; flex-direction:column; gap:8px; }
    .form-control { padding:10px 12px; border:1px solid #d7d7d7; border-radius:6px; font-size:15px; }
    .form-control:focus { outline: none; border-color: #ff7a1a; box-shadow: 0 6px 18px rgba(255,122,26,0.08); }
    .form-label { font-size:13px; color:#334155; font-weight:600; }
    .small-note { font-size:13px; color:#777; margin-top:8px; }

    .error { color:#cf2a2a; font-size:13px; margin-top:6px; display:none; }
    .btn-send { background:#ff7a1a; color:#fff; padding:10px 18px; border-radius:8px; border:none; cursor:pointer; font-weight:600; }
    .btn-send[disabled] { opacity:0.6; cursor:not-allowed; }

    /* Map placeholder */
    .map-box { border-radius:8px; overflow:hidden; border:1px solid #eee; height:100%; min-height:240px; }

    /* success popup */
    .pm-success {
      position: fixed;
      left: 50%; top: 10%;
      transform: translateX(-50%);
      background: #0b1320; color: #fff;
      padding: 14px 20px; border-radius: 8px; box-shadow: 0 12px 30px rgba(11,19,32,0.28);
      display: none; z-index:1200;
    }
	
	
	
	/* header-nav.css
   Responsive, accessible, desktop + mobile optimized navbar for ASISA
   Replace or append to your current nav/header CSS.
*/

/* ----------------------
   Theme variables
   Edit these at top if you want new colors/sizes
   ---------------------- */
:root{
  --brand: #ff7a1a;        /* ASISA accent */
  --nav-bg: #ffffff;
  --nav-text: #333333;
  --muted: #6b6b6b;
  --accent-bg: rgba(255,122,26,0.08);
  --header-padding-desktop: 16px 40px;
  --header-padding-mobile: 12px 16px;
  --nav-width-mobile: 280px;
  --transition-fast: 220ms;
}

/* ---------- Base header ---------- */
.main-header{
  width:100%;
  background:var(--nav-bg);
  padding:var(--header-padding-desktop);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  position:sticky;
  top:0;
  z-index:1200;
  box-shadow:0 2px 6px rgba(8,10,20,0.04);
  transition:padding var(--transition-fast) ease, box-shadow var(--transition-fast) ease, background var(--transition-fast) ease;
  -webkit-backdrop-filter: blur(2px);
}

/* Logo */
.logo-area{ display:flex; align-items:center; gap:14px; flex-shrink:0; }
.logo-box{
  width:46px; height:46px; display:flex; align-items:center; justify-content:center; flex-shrink:0;
  border-radius:8px; border:2px solid var(--brand); font-weight:800; color:#222;
  background:transparent; font-size:22px; line-height:1;
}
.logo-text .company-name{ font-weight:700; font-size:16px; color:var(--nav-text); }
.logo-text .company-tagline{ font-size:12px; color:var(--muted); margin-top:2px; }

/* ---------- Desktop nav ---------- */
.main-nav{ display:block; flex:1; margin-left:28px; }
.main-nav > ul{
  list-style:none;
  display:flex;
  gap:30px;
  align-items:center;
  margin:0;
  padding:0;
  font-size:15px;
  white-space:nowrap;
}
.main-nav a{
  color:var(--nav-text);
  font-weight:500;
  display:inline-block;
  padding:8px 6px;
  transition: color 180ms ease, transform 180ms ease;
  text-decoration:none;
  border-radius:6px;
}

/* hover / active */
.main-nav a:hover,
.main-nav a:focus,
.main-nav a.active{
  color:var(--brand);
  background:var(--accent-bg);
  transform:translateY(-2px);
  outline:none;
}

/* animated underline */
.main-nav a::after{
  content:"";
  display:block;
  height:2px; width:0%;
  background:var(--brand);
  transition: width var(--transition-fast) ease;
  margin-top:6px;
  border-radius:2px;
}
.main-nav a:hover::after,
.main-nav a.active::after{ width:60%; }

/* clickable area / touch target */
.main-nav a{ min-height:40px; line-height:40px; }

/* --- Desktop Dropdown Styles --- */
@media (min-width: 901px) {
  .nav-item-has-submenu {
    position: relative;
  }
  .nav-submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    z-index: 100;
    list-style: none;
    padding: 10px 0;
    margin-top: 5px;
    min-width: 230px;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }
  .nav-item-has-submenu:hover > .nav-submenu {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-submenu li {
    width: 100%;
  }
  .nav-submenu a {
    color: var(--nav-text);
    padding: 10px 20px;
    display: block;
    width: 100%;
    text-align: left;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
  }
  .nav-submenu a:hover {
    background-color: var(--accent-bg);
    color: var(--brand);
    transform: none; /* Reset transform for submenu items */
  }
  .nav-submenu a::after {
    display: none; /* No underline for submenu items */
  }

  /* Hide close button on desktop */
  .menu-close {
    display: none;
  }
}

/* ---------- Mobile: hamburger + off-canvas menu ---------- */
.menu-toggle{
  display:none;
  width:42px; height:38px;
  border-radius:8px;
  background:transparent;
  border:0;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  padding:6px;
}
.menu-toggle .bar{
  display:block;
  width:22px; height:2.6px;
  background:var(--nav-text);
  margin:4px 0;
  border-radius:2px;
  transition: transform 220ms ease, opacity 220ms ease, background 220ms ease;
}

/* Hide default mobile overlay since we control menu via nav.show */
.nav-overlay{
  display:none;
}

/* mobile rules */
@media (max-width:899px){
  .main-header{ padding:var(--header-padding-mobile); align-items:center; }

  /* show toggle */
  .menu-toggle{ display:flex; }

  /* position off-canvas nav to the right */
  .main-nav{
    position:fixed;
    top:0;
    right: calc(-1 * var(--nav-width-mobile));
    width:var(--nav-width-mobile);
    height:100vh;
    max-height:100vh;
    background:var(--nav-bg);
    box-shadow:-8px 20px 40px rgba(6,20,40,0.12);
    padding:72px 18px 24px; /* account for header */
    transition: right 320ms cubic-bezier(.22,.9,.32,1);
    z-index:1199;
    overflow-y:auto;
    overflow-x:hidden;
    -webkit-overflow-scrolling:touch;
    border-left:1px solid rgba(0,0,0,0.02);
  }

  /* Close button inside mobile menu - only visible on mobile */
  .menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 122, 26, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--brand);
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 1200;
  }

  .menu-close:hover {
    background: rgba(255, 122, 26, 0.2);
    transform: scale(1.1);
  }

  .menu-close:active {
    transform: scale(0.95);
  }

  /* show when active */
  .main-nav.show{ right:0; }

  /* nav list becomes column */
  .main-nav ul{
    display:flex;
    flex-direction:column;
    gap:6px;
    margin:0;
    padding:0;
    list-style:none;
    min-height:auto;
  }
  .main-nav li{ 
    width:100%;
    margin:0;
  }
  .main-nav a{
    display:block;
    padding:12px 14px;
    font-size:17px;
    color:var(--nav-text);
    border-radius:8px;
    width:100%;
    background:transparent;
    border-bottom:1px solid rgba(0,0,0,0.03);
    box-sizing:border-box;
  }
  .main-nav a:hover, .main-nav a:focus, .main-nav a.active{
    background:rgba(255,122,26,0.06);
    color:var(--brand);
    transform:none;
  }

  /* Mobile submenu styles */
  .main-nav .nav-item-has-submenu {
    position: relative;
  }

  .main-nav .nav-submenu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 20px;
    margin-top: 4px;
  }

  .main-nav .nav-item-has-submenu.active .nav-submenu {
    display: block;
  }

  .main-nav .nav-submenu li {
    width: 100%;
  }

  .main-nav .nav-submenu a {
    padding: 10px 14px;
    font-size: 15px;
    color: var(--nav-text);
    border-bottom: 1px solid rgba(0,0,0,0.02);
  }

  .main-nav .nav-submenu a:hover {
    background: rgba(255,122,26,0.04);
    color: var(--brand);
  }

  .main-nav .nav-main-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .main-nav .nav-main-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
  }

  .main-nav .nav-item-has-submenu.active .nav-main-link i {
    transform: rotate(180deg);
  }

  /* overlay to dim the rest of the page (we will toggle .nav-backdrop.show via JS) */
  .nav-backdrop{
    position:fixed; inset:0; background:rgba(0,0,0,0.36); z-index:1198;
    opacity:0; pointer-events:none; transition:opacity 220ms ease;
  }
  .nav-backdrop.show{ opacity:1; pointer-events:auto; }

  /* animate hamburger into X when active */
  .menu-toggle.active .bar:nth-child(1){ transform: translateY(6px) rotate(45deg); }
  .menu-toggle.active .bar:nth-child(2){ opacity:0; transform: scaleX(0.2); }
  .menu-toggle.active .bar:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

  /* shrink logo area slightly to fit */
  .logo-box{ width:40px; height:40px; font-size:18px; }
  .logo-text .company-name{ font-size:15px; }
}

/* very small screens: ensure tap targets remain large */
@media (max-width:420px){
  .main-nav{ width:92vw; right: calc(-1 * 92vw); }
  .main-nav.show{ right:0; }
  .main-nav a{ font-size:16px; padding:12px 12px; }
}

/* Accessibility focus */
.main-nav a:focus{ box-shadow: 0 0 0 4px rgba(255,122,26,0.08); outline:none; border-radius:8px; }

/* Optional: when using reduced motion */
@media (prefers-reduced-motion: reduce){
  .main-nav, .main-nav a, .menu-toggle .bar{ transition:none !important; }
}
/* HAMBURGER ICON */
.menu-toggle {
  display: none;        /* hide on desktop */
  width: 34px;
  height: 26px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.menu-toggle span {
  width: 100%;
  height: 3px;          /* line thickness */
  background: #333;
  border-radius: 3px;
  transition: 0.3s ease;
}

/* SHOW HAMBURGER ONLY ON MOBILE */
@media (max-width: 899px) {
  .menu-toggle {
    display: flex;
  }

  /* convert nav to mobile slide menu */
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    background: #fff;
    width: 260px;
    height: 100vh;
    padding-top: 70px;
    transition: 0.3s ease;
    box-shadow: -4px 0 12px rgba(0,0,0,0.1);
  }

  nav.show {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 20px;
    padding-left: 20px;
  }
}

/* HAMBURGER ANIMATION */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}


/* Remove ONLY the link underline — KEEP blue horizontal lines */
footer.site-footer a {
  text-decoration: none !important;
}

/* Ensure hover does NOT bring underline back */
footer.site-footer a:hover {
  text-decoration: none !important;
}

/* ============================================
   INDEX PAGE ENHANCED STYLES
   ============================================ */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Enhanced Stats Section */
.stats-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 60px 0;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.stats-container {
  position: relative;
  z-index: 1;
}

.stat-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-card i {
  font-size: 48px;
  background: linear-gradient(135deg, #ff7a1a, #ff9500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Enhanced About Section */
.about-detail {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4ff 100%);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.about-detail::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.about-detail::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.about-detail-inner {
  position: relative;
  z-index: 1;
}

.about-image {
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 12px;
  z-index: -1;
  opacity: 0.1;
  transition: all 0.3s ease;
}

.about-image:hover::before {
  opacity: 0.2;
  transform: translate(10px, 10px);
}

.about-image img {
  border-radius: 12px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-image:hover img {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.2);
}

.about-text {
  position: relative;
}

.about-text h2 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #ff7a1a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 36px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 20px;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #ff7a1a, #ff9500);
  border-radius: 2px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
  text-align: justify;
}

.about-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.about-service-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 20px 25px;
  border-radius: 12px;
  transition: all 0.3s ease;
  margin-bottom: 0;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  overflow: hidden;
}

.about-service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
  transition: left 0.5s ease;
}

.about-service-item:hover::before {
  left: 100%;
}

.about-service-item:hover {
  background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
  transform: translateY(-5px);
  border-color: #667eea;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.about-service-item i {
  font-size: 24px;
  color: #ff7a1a;
  background: linear-gradient(135deg, #ff7a1a, #ff9500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.about-service-item:hover i {
  transform: scale(1.2) rotate(5deg);
}

.about-service-item span {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.about-note {
  max-width: 900px;
  margin: 50px auto 0;
  font-size: 18px;
  line-height: 1.8;
  font-style: italic;
  color: #666;
  text-align: center;
  padding: 30px 40px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(255, 122, 26, 0.05) 100%);
  border-radius: 12px;
  border-left: 4px solid #ff7a1a;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.about-note::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 80px;
  color: #ff7a1a;
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

/* Responsive Design for About Section */
@media (max-width: 992px) {
  .about-detail {
    padding: 60px 30px;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-text p {
    font-size: 16px;
  }

  .about-services {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-detail {
    padding: 50px 20px;
  }

  .about-text h2 {
    font-size: 24px;
    line-height: 1.4;
  }

  .about-text p {
    font-size: 15px;
    text-align: left;
  }

  .about-service-item {
    padding: 18px 20px;
  }

  .about-service-item span {
    font-size: 14px;
  }

  .about-note {
    padding: 25px 20px;
    font-size: 16px;
    margin-top: 40px;
  }

  .about-image::before {
    display: none;
  }
}

@media (max-width: 576px) {
  .about-text h2 {
    font-size: 22px;
  }

  .about-note {
    font-size: 15px;
    padding: 20px 15px;
  }
}

/* Enhanced Services Section */
.services-section {
  background: #ffffff;
  padding: 80px 40px;
  position: relative;
}

.services-section h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.services-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #ff7a1a, #ff9500);
  border-radius: 2px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-icon {
  position: relative;
  z-index: 1;
}

.service-icon i {
  font-size: 56px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
  transform: scale(1.2) rotate(5deg);
}

/* Enhanced Work Platforms Section */
.work-platforms {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 80px 40px;
  text-align: center;
}

.work-platforms h3 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.work-platforms p {
  font-size: 18px;
  color: #666;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.software-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
}

.software-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.software-card img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.software-card:hover img {
  filter: grayscale(0%);
}

/* Carousel Enhancements */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(255, 122, 26, 0.9);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: brightness(0) invert(1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .stats-section {
    padding: 40px 0;
  }

  .about-detail,
  .services-section,
  .work-platforms {
    padding: 40px 20px;
  }

  .services-section h2,
  .work-platforms h3 {
    font-size: 32px;
  }
}

/* Fade-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Detailed Services Section */
.detailed-services-section {
  background: #ffffff;
  padding: 80px 40px;
}

.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #ff7a1a, #ff9500);
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

.detailed-services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.detailed-service-item {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 30px;
  border-left: 4px solid #ff7a1a;
  transition: all 0.3s ease;
}

.detailed-service-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-detail-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.service-detail-header i {
  font-size: 48px;
  color: #ff7a1a;
}

.service-detail-header h3 {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.service-detail-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

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

.service-features li {
  padding: 12px 0;
  font-size: 16px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-features li i {
  color: #ff7a1a;
  font-size: 18px;
}

/* Why Choose Us Section */
.why-choose-us-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 40px;
  color: #ffffff;
}

.why-choose-us-section .section-title {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.why-choose-us-section .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  color: #333;
}

.why-choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.why-choose-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #ff7a1a, #ff9500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
  transform: scale(1.1) rotate(5deg);
}

.why-choose-icon i {
  font-size: 36px;
  color: #ffffff;
}

.why-choose-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.why-choose-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
}

/* Our Process Section */
.our-process-section {
  background: #ffffff;
  padding: 80px 40px;
}

.process-timeline {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #ff7a1a, #ff9500);
}

.process-step {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
  position: relative;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.process-number {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #ff7a1a, #ff9500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(255, 122, 26, 0.3);
  position: relative;
  z-index: 1;
}

.process-content {
  flex: 1;
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.process-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.process-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
  .detailed-services-section,
  .why-choose-us-section,
  .our-process-section {
    padding: 40px 20px;
  }

  .detailed-service-item {
    padding: 25px;
  }

  .service-detail-header {
    flex-direction: column;
    text-align: center;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline::before {
    left: 30px;
  }

  .process-step {
    flex-direction: column !important;
    gap: 20px;
  }

  .process-number {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

/* =========================
   CAREERS PAGE STYLES
   ========================= */

/* Careers Hero Section */
.careers-hero {
  background: linear-gradient(135deg, #ff7a1a 0%, #f39a1f 100%);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.careers-hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.careers-hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.careers-hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.95;
}

/* Careers Section */
.careers-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: #0b1320;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Jobs Grid */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.job-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e6edf3;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.job-title {
  font-size: 22px;
  font-weight: 600;
  color: #0b1320;
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.job-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.job-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.job-badge.job-type {
  background: #e3f2fd;
  color: #1976d2;
}

.job-badge.job-location {
  background: #f3e5f5;
  color: #7b1fa2;
}

.job-department {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}

.job-department i {
  color: #ff7a1a;
}

.job-description {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 15px;
}

.job-apply-btn {
  background: linear-gradient(135deg, #ff7a1a 0%, #f39a1f 100%);
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  width: 100%;
  justify-content: center;
}

.job-apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 122, 26, 0.4);
}

.job-apply-btn i {
  transition: transform 0.3s ease;
}

.job-apply-btn:hover i {
  transform: translateX(4px);
}

/* Careers Form Section */
.careers-form-section {
  padding: 80px 20px;
  background: #ffffff;
}

.careers-form-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #f8f9fa;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.careers-form {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: #0b1320;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group label .required {
  color: #ff7a1a;
}

.form-group .form-control {
  padding: 12px 16px;
  border: 1px solid #d7d7d7;
  border-radius: 6px;
  font-size: 15px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group .form-control:focus {
  outline: none;
  border-color: #ff7a1a;
  box-shadow: 0 0 0 3px rgba(255, 122, 26, 0.1);
}

.form-group textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-group .form-text {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}

.form-group .error {
  color: #dc3545;
  font-size: 13px;
  margin-top: 4px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-submit {
  margin-top: 30px;
  text-align: center;
}

.btn-submit {
  background: linear-gradient(135deg, #ff7a1a 0%, #f39a1f 100%);
  color: #ffffff;
  border: none;
  padding: 14px 40px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 122, 26, 0.4);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  font-size: 13px;
  color: #666;
  margin-top: 12px;
}

.alert {
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.alert-danger {
  background: #fee;
  border: 1px solid #faa;
  color: #c00;
}

.alert-success {
  background: #efe;
  border: 1px solid #afa;
  color: #060;
}

/* Why Join Section */
.why-join-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e6edf3;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff7a1a 0%, #f39a1f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #ffffff;
  font-size: 28px;
}

.benefit-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0b1320;
  margin-bottom: 12px;
}

.benefit-card p {
  color: #666;
  line-height: 1.6;
  font-size: 15px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .careers-hero-title {
    font-size: 36px;
  }

  .careers-hero-subtitle {
    font-size: 18px;
  }

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

  .jobs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .careers-form-wrapper {
    padding: 20px;
  }

  .careers-form {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .careers-hero {
    padding: 60px 15px;
  }

  .careers-hero-title {
    font-size: 28px;
  }

  .careers-section,
  .careers-form-section,
  .why-join-section {
    padding: 50px 15px;
  }

  .job-card-header {
    flex-direction: column;
  }
}

/* Keep floating mail button safely inside viewport on home/mobile. */
.footer-mail-fab {
  right: max(12px, env(safe-area-inset-right));
  left: auto;
}

@media (max-width: 768px) {
  .footer-mail-fab {
    width: 52px;
    height: 52px;
    bottom: 85px;
    right: max(10px, env(safe-area-inset-right));
  }

  .footer-mail-fab i {
    font-size: 20px;
  }
}
