* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  color: #1f2937;
  background: #effbfb;
  line-height: 1.7;
}

a {
  text-decoration: none;
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 7%;
  background: transparent;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: transparent;
  box-shadow: none;
}

.site-header.scrolled .navbar a {
  color: #111;
}

.site-header.scrolled .navbar a.active {
  color: #00d4ff;
}

.navbar a.active {
  color: #00d4ff !important;
  font-weight: 600;
}

/* Default (dark background) */


.logo img {
  height: 40px;
  width: auto;
  display: block;
}

.navbar {
  display: flex;
  gap: 32px;
}

.navbar a {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.navbar a:hover {
  color: #38bdf8;
}

#menu-toggle,
.menu-icon {
  display: none;
}

/* Hero */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 7% 80px;
  overflow: hidden;
  color: #effbfb;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(2, 6, 23, 0.9),
      rgba(15, 23, 42, 0.6),
      rgba(15, 23, 42, 0.2));
  z-index: -1;
}

.hero-content {
  max-width: 100%;
  animation: fadeUp 1s ease both;
}

.hero-title_services_1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(38x, 6vw, 25px);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 18px;
}

.hero-title_services_2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(14px, 6vw, 45px);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 18px;
}

.hero-title_services_3 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(14px, 6vw, 45px);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 18px;
}


.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(38px, 6vw, 50px);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 18px;
}

.hero-title2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(38px, 6vw, 50px);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 18px;
}

.hero-title3 {
  font-size: clamp(38px, 6vw, 50px);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 18px;
}

.hero-title_services_2 span {

  color: #00d4ff;
}

.hero-title span {

  color: #00d4ff;
}

.hero-title2 span {
  color: #ffffff;
}

.hero-title3 span {
  color: #ff7b00;
}

.hero-title_services_3 span {
  color: #ff7b00;
}

.hero-text {
  max-width: 850px;
  font-size: 18px;
  color: #dbeafe;
}

/* Services */

.services-section {
  padding: 100px 7%;
  background: #ffffff;
}

.section-title {
  text-align: center;
  margin-bottom: 55px;
}

.section-title h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: #081046;
  line-height: 1.2;
}

.section-title p {
  color: #64748b;
  margin-top: 10px;
}

.services {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.tile {
  min-height: 550px;
  padding: 40px 30px;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
  background: #ffffff;
  border: 1px solid #e5e7eb;
}

.tile:nth-child(2),
.tile:nth-child(4),
.tile:nth-child(6),
.tile:nth-child(8) {
  background: linear-gradient(135deg, #5e6fdd, #0cecf7);
  color: #ffffff;
}

.tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.16);
  z-index: 2;
}

.icon {
  font-size: 46px;
  margin-bottom: 18px;
}

.tile h3 {
  font-size: 23px;
  margin-bottom: 14px;
  color: inherit;
}

.short-text {
  font-size: 15px;
  line-height: 1.7;
}

.full-content {
  position: absolute;
  inset: 0;
  background: rgba(219, 144, 4, 0.96);
  color: #ffffff;
  padding: 35px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  opacity: 0;
  transform: scale(0.9);
  transition: 0.4s ease;
  pointer-events: none;
}

.tile.active .full-content {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.full-content h3 {
  color: #ffffff;
  margin-bottom: 1px;
  text-align: left;
}

.full-content p {

  font-size: 15px;
  line-height: 1.3;
}

/* Footer */

footer {
  padding: 25px 7%;
  text-align: center;
  background: #020817;
  color: #94a3b8;
}

/* Animation */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet */

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

  .hero-title {
    font-size: 42px;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .menu-icon {
    display: block;
    color: #ffffff;
    font-size: 30px;
    cursor: pointer;
  }

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 18px 7%;
    background: rgba(9, 75, 219, 0.98);
  }

  .navbar a {
    padding: 14px 0;
  }

  #menu-toggle:checked~.navbar {
    display: flex;
  }

  .hero {
    padding-top: 140px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-text {
    font-size: 16px;
  }

  .services-section {
    padding: 70px 20px;
  }

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

  .tile {
    min-height: 260px;
  }

  .section {
    padding: 95px 7%;
  }
}


/* Section 2 About */



.bxd-container {
  width: min(1180px, 100%);
  margin: auto;
}

.bxd-grid-2 {
  display: grid;
  /* grid-template-columns: 1fr 1.4fr; */
  gap: 50px;
  align-items: center;
}

.bxd-section-label {
  color: #0284c7;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.bxd-about-section h2 {
  font-size: clamp(30px, 4vw, 46px);
  color: #081046;
  line-height: 1.2;
}

.bxd-about-section p {
  text-align: justify;
}

/* Section 2 Services */

.bxd-services-section {
  padding: 0px 7%;
  background: #effbfb;
}

.bxd-center {
  text-align: center;
}

.bxd-cards {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.bxd-card {
  background: #ffffff;
  padding: 35px 28px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
  transition: 0.3s ease;
}

.bxd-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.15);
}

.bxd-icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  background: linear-gradient(135deg, #094bdb, #00d4ff);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 20px;
}

.bxd-card h3 {
  color: #081046;
  font-size: 22px;
  margin-bottom: 12px;
}

.bxd-card p {
  color: #64748b;
  font-size: 15px;
}

/* Responsive */

@media (max-width: 900px) {

  .bxd-grid-2,
  .bxd-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .bxd-about-section,
  .bxd-services-section {
    padding: 0px 20px;
  }
}

.content-title {
  margin: 0 0 3px 0;
  /* smaller gap below heading */
  font-size: 18px;
  font-weight: 600;
}

.service-list {
  margin: 0 0 0px 0;
  /* reduced gap after list */
  padding-left: 20px;
}

.service-list li {
  margin-bottom: 3px;
  /* tighter list spacing */
  line-height: 1.3;
}

.outcome-title {
  margin: 6px 0 4px 0;
  /* smaller gap above and below Outcome */
}

.service-note {
  margin: 0;
  line-height: 1.4;
}

.contact {
  height: 100vh;
  background: #0f172a;
  color: #cbd5e1;
}

.contact h2 {
  color: #ffffff;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  outline: none;
  border-radius: 14px;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #94a3b8;
}

.contact-form button {
  border: none;
  border-radius: 14px;
  padding: 15px 22px;
  background: #38bdf8;
  color: #082f49;
  font-weight: 700;
  cursor: pointer;
}

.container {
  width: min(1180px, 100%);
  margin: auto;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-label {
  color: #0284c7;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  margin-bottom: 10px;
}



.contact {
  background: #effbfb;
  padding: 80px 0 70px;
}

.contact .grid-2 {
  align-items: center;
  gap: 70px;
}

.section-label {
  margin-bottom: 20px;
}

.contact-info h2 {
  color: #000000;
  font-size: 34px;
  margin-bottom: 22px;
  display: block;
}

.contact-info p {
  color: #000000;
  line-height: 1.8;
}

.contact-details {
  margin-top: 28px;
}

.contact-form {
  margin-top: 0;
}

.contact-form input,
.contact-form textarea {
  background: #20293a;
  color: #c97171;
}

.hero-title3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
}

.hero-title3 span {
  display: block;
  font-size: 5rem;
  font-weight: 900;
  color: #ff7b00;
  letter-spacing: 1px;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .hero-title3 {
    font-size: 1.8rem;
  }

  .hero-title3 span {
    font-size: 2.8rem;
  }
}

.hero-title3 {
  letter-spacing: 0px;
}

.hero-title3 span {
  display: block;
  font-size: 5rem;
  font-weight: 800;
}


.what-we-do-section h2 {
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 20px;
}


.section-highlight h3 {
  font-size: 48px;
  line-height: 1.05;
  color: #071d63;
}

.section-highlight .bold {
  font-weight: 800;
}

.bxd-slider-track:hover {
  animation-play-state: paused;
}


.bxd-benefits-section h2 {
  font-size: 34px;
  font-weight: 800;
  color: #202020;
  margin-bottom: 22px;
}


.benefit-card_test {
  width: 250px;
  height: 330px;
  padding: 155px 22px 25px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.benefit-card_test h3 {
  font-size: 17px;
  font-weight: 800;
  color: #111;
  line-height: 1.15;
  margin-bottom: 18px;
}


.benefit-card_test p {
  font-size: 13px;
  color: #777;
  line-height: 1.35;
}

.image-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 145px;
  object-fit: cover;
  opacity: 0.85;
}

.bxd-benefits-section {
  padding: 0px 7%;
  background: #effbfb;
}

.benefit-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  object-fit: cover;
}


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


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

.bxd-about-section,
.bxd-services-section,
.bxd-benefits-section {
  background: #effbfb;
  padding: 60px 7%;
}

.what-we-do-section h2,
.bxd-benefits-section h2 {
  font-size: 34px;
  font-weight: 800;
  color: #222;
  margin-bottom: 18px;
}

.section-description {
  max-width: 900px;
  text-align: justify;
  line-height: 1.6;
  color: #555;
}

.section-highlight {
  margin-top: 45px;
}

.essence {
  font-size: 13px;
  letter-spacing: 5px;
  color: #555;
  margin-bottom: 15px;
}

.section-highlight h3 {
  font-size: 44px;
  line-height: 1.05;
  color: #071d63;
}

.section-highlight h3 span {
  font-weight: 800;
}

.bxd-slider-wrapper {
  width: 100%;
  overflow: hidden;
}

.bxd-slider-track {
  display: flex;
  gap: 35px;
  animation: scrollSlider 25s linear infinite;
}

.bxd-card {
  width: 250px;
  min-height: 260px;
  flex: 0 0 250px;
  background: #fff;
  padding: 35px 28px;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.bxd-benefits-text {
  max-width: 100%;
  font-size: 14px;
  color: #777;
  margin-bottom: 50px;
}

.bxd-benefit-cards {
  display: flex;
  gap: 65px;
  flex-wrap: wrap;
}

.benefit-card {
  width: 250px;
  min-height: 330px;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;

  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.card-image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.card-image_small {
  width: 50%;
  height: 100px;
  object-fit: cover;
  display: block;
}

.card-image-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.card-image_small_1 {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.benefit-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: #111;
  line-height: 1.15;
  margin: 20px 22px 15px;
  text-align: left;
}

.benefit-card p {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
  margin: 0 22px 20px;
  text-align: justify;
  text-justify: inter-word;
}

@keyframes scrollSlider {
  from {
    transform: translateX(0);
  }

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

@media (max-width: 768px) {

  .bxd-about-section,
  .bxd-services-section,
  .bxd-benefits-section {
    padding: 45px 20px;
  }

  .section-highlight h3 {
    font-size: 30px;
  }
}


.contact-bg {
  background: linear-gradient(135deg,
      #020b3f 0%,
      #041c5c 50%,
      #0a3c9e 100%);
  color: #fff;
  padding: 120px 7%;
}

.contact-bg .section-label,
.contact-bg h2,
.contact-bg p,
.contact-bg strong {
  color: #fff;
}

.contact-form {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  padding: 35px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 15px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  font-family: 'Poppins', sans-serif;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  background: #00d4ff;
  color: #041c5c;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #ffffff;
}

.contact-bg {
  background: linear-gradient(135deg,
      #0F172A 0%,
      #111C35 50%,
      #16223F 100%);
}



/* ===== SERVICE HERO SECTION ===== */

.service-hero-content {
  width: 100%;
  max-width: 1200px;
  margin: 0;
  padding: 0 10px;
}

.service-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3vw, 3.2rem);
  /* White text size */
  font-weight: 200;
  line-height: 1.1;
  /* White text line height */
  color: #ffffff;
  margin-bottom: 20px;

  word-wrap: break-word;
  overflow-wrap: break-word;
}

.service-hero-title span {
  display: block;
  font-size: clamp(1.7rem, 3.1vw, 4rem);
  /* Orange text size */
  font-weight: 600;
  /* Orange text weight */
  line-height: 1.25;
  /* Orange text line height */
  color: #ff7a00;
  margin-top: 8px;
}

.service-hero-text {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  line-height: 1.8;
  color: #ffffff;
  text-align: justify;
  max-width: 900px;
}

/* Tablet */
@media (max-width: 768px) {
  .service-hero-content {
    padding: 0 18px;
  }

  .service-hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .service-hero-text {
    font-size: 1rem;
    line-height: 1.7;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .service-hero-content {
    padding: 0 15px;
  }

  .service-hero-title {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .service-hero-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}


.service-hero-title_4 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;

  letter-spacing: 3px;
  /* Horizontal spacing between letters */
}

.section-description {
  max-width: 1100px;
  margin-bottom: 25px;
  line-height: 1.9;
  text-align: left;
  font-size: 18px;
}


.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  padding: 0 40px;
}

/* Left Side */
.contact-left {
  flex: 1;
  color: #fff;
}

.contact-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 31px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 25px;
}

.contact-title span {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 40px;
  font-weight: 700;
  display: block;
  color: #ff8c00;
}

.contact-text {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.contact-details p {
  margin: 10px 0;
  font-size: 17px;
}

/* Right Side */
.contact-right {
  flex: 0 0 500px;
}

.contact-form {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 15px;
  border: none;
  border-radius: 8px;
  outline: none;
}

.contact-form button {
  width: 100%;
  padding: 15px;
  background: #ff8c00;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.contact-form button:hover {
  background: #e67600;
}

/* Mobile */
@media (max-width: 992px) {
  .contact-hero-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .contact-right {
    width: 100%;
    max-width: 600px;
    flex: none;
  }
}

.strategy-card-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
  margin: 0 auto 20px;
}

.strategy-title {
  text-align: center;
}

.strategy-short-text {
  text-align: center;
}

.strategy-full-content {
  display: none;
}