/* ===============================
   ROOT VARIABLES
================================ */
:root{
  --bg:#ffffff;
  --text:#111827;
  --muted:#6b7280;
  --card:#ffffffcc;
  --border:#e5e7eb;
  --shadow: 0 20px 50px rgba(0,0,0,.08);
  --shadow2: 0 12px 30px rgba(0,0,0,.12);
  --accent:#c1121f;
  --accent2:#ff2d2d;
}

/* Dark mode vars (future ready) */
html[data-theme="dark"]{
  --bg:#0b0f19;
  --text:#f3f4f6;
  --muted:#a1a1aa;
  --card:rgba(255,255,255,.06);
  --border:rgba(255,255,255,.12);
  --shadow: 0 22px 60px rgba(0,0,0,.55);
  --shadow2: 0 14px 34px rgba(0,0,0,.65);
  --accent:#ff3344;
  --accent2:#ff6b6b;
}
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}


/* ===============================
   GLOBAL
================================ */
*{ box-sizing:border-box }

body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background: var(--bg);
  color: var(--text);
  overflow-x:hidden;
}

a{ text-decoration:none; color:inherit }

.container{
  max-width:1200px;
  margin: auto;
  padding:0 20px;
}

body.menu-open{
  z-index: 9999;
    overflow: hidden;
  position: fixed;
  width: 100%;
}             


/* ===============================
   3D GLASS NAVBAR (MODERN)
================================ */

.nav {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  justify-content: center;
  z-index: 9999; 

}


.nav-inner{

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 14px 28px;
  /* GLASS EFFECT */
  background: rgba(10, 10, 15, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.12);

  /* 3D SHADOW */
box-shadow:
  0 10px 30px rgba(0,0,0,0.35),
  inset 0 1px 0 rgba(255,255,255,0.08);
}

/* DARK MODE GLASS */
html[data-theme="dark"] .nav-inner{
  background: rgba(15, 18, 30, 0.65);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 12px 40px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

/* LOGO */
.logo{
  height: 48px;
  width: auto;
  transition: .3s ease;
  margin-left: -160px;
}

.logo:hover{
  transform: translateY(-2px) scale(1.04);
}

/* ===============================
   MENU LINKS
================================ */

.menu{
  display: flex;
  gap: 18px;
}

.menu a{
  position: relative;
  padding: 10px 16px;
  border-radius: 14px;

  font-weight: 500;
  color: var(--muted);

  transition: all .25s ease;
}

/* HOVER → RED */
.menu a:hover{
  color: #ffffff;
  background: linear-gradient(135deg,#b10000,#ff2d2d);
  box-shadow: 0 8px 22px rgba(177,0,0,0.45);
  transform: translateY(-2px);
}

/* ACTIVE ITEM */
.menu a.active{
  color: #ffffff;
  background: linear-gradient(135deg,#b10000,#ff2d2d);
  box-shadow: 0 8px 22px rgba(177,0,0,0.45);
}

/* REMOVE OLD UNDERLINE */
.menu a.active::after{
  display: none;
}

/* ===============================
   RIGHT ACTIONS
================================ */

.nav-actions{
  display: flex;
  gap: 12px;
  align-items: center;
}


/* GET IN TOUCH BUTTON */
.nav-actions .primary{
  padding: 12px 22px;
  border-radius: 18px;

  font-weight: 700;
  color: #fff;

  background: linear-gradient(135deg,#b10000,#ff2d2d);
  box-shadow: 0 10px 30px rgba(177,0,0,.45);

  transition: .3s ease;
}

.nav-actions .primary:hover{
  transform: translateY(-3px) scale(1.04);
}
/* ===============================
   JOIN US POPUP
================================ */

.joinus-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: all 0.3s ease;
  z-index: 99999; /* VERY IMPORTANT */
}

.joinus-modal h2{
  color: #b10000;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.joinus-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  
}

.joinus-modal {
  background: #ffffff;
  color: #000000;
  width: 100%;
  max-width: 520px;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  position: relative;
  animation: scaleIn 0.35s ease;
  border: 10px solid #630000; /* RED BORDER */
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 28px;
  background: none;
  border: none;
  color: #440000;
  cursor: pointer;
}

.joinus-form input,
.joinus-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: #ffffff;
  color: #000000;
}

.joinus-form textarea {
  resize: none;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg,#b10000,#ff2d2d);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}


/* ===============================
   MOBILE
================================ */

.menu-toggle{
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span{
  width: 26px;
  height: 3px;
  background: #ffffff;
  border-radius: 3px;
  transition: 0.3s ease;
  padding-right: -20px;
}


/* MOBILE MENU */
@media (max-width: 900px){

  .menu-toggle{
    display: flex;
    z-index: 10002;
  }

  .menu{
    position: fixed;
    top: 0;
    left: -50px;

    width: 55vw;              /* 🔥 HALF SCREEN */
    max-width: 320px;
    height: 60vh;

    background: rgba(15, 15, 20, 0.85); /* transparent glass */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    display: flex;
    flex-direction: column;
    gap: 26px;
    padding: 120px 28px;

    /* slide animation */
    transform: translateX(-100%);
    transition: transform 0.35s ease;

    /* rounded right side */
    border-top-right-radius: 28px;
    border-bottom-right-radius: 28px;

    box-shadow:
      12px 0 40px rgba(0,0,0,0.55);

    z-index: 10001;
  }
  .menu.show{
    transform: translateX(0);
  }

  .menu a{
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    transition: 0.25s ease;
    text-align: center;
  }

  .menu a:hover{
    color: #ff2d2d;
    transform: translateX(0);

  }
  .menu::after{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:2px;
  height:100%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255,45,45,0.6),
    transparent
  );
}
}

@media (max-width: 900px) {
  .nav {
    left: 0;
    right: 0;
  }

  .nav-inner {
    width: calc(100% - 24px); /* 🔥 prevents overflow */
    max-width: 100%;
    margin: 0 auto;
    padding: 12px 16px;
  }

.logo{
  height: 40px;
  width: auto;
  transition: .3s ease;
  margin-left: -110px;
  margin-top: 10px;
}
}

@media (max-width: 768px){

  /* JOIN US BUTTON */
  .nav-actions .primary{
    padding: 12px 12px;
    font-size: 12px;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(177,0,0,0.35);
  }

  /* ===============================
     JOIN US POPUP
  ================================ */

  .joinus-overlay{
    padding: 20px; /* breathing room on small screens */
  }

  .joinus-modal{
    max-width: 100%;
    padding: 24px;
    border-radius: 16px;
    border-width: 6px; /* thinner border for mobile */
  }

  .joinus-modal h2{
    font-size: 22px;
    text-align: center;
  }

  .joinus-modal p{
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
  }

  .joinus-form input,
  .joinus-form textarea{
    padding: 12px 14px;
    font-size: 14px;
  }

  .submit-btn{
    padding: 13px;
    font-size: 14px;
    border-radius: 12px;
  }

  /* CLOSE BUTTON */
  .close-btn{
    font-size: 24px;
    top: 12px;
    right: 12px;
  }
}



/* ===============================
   HERO BANNER – FIXED & CLEAN
   1600x900 DARK STYLE
================================ */

.hero-banner{
  min-height: calc(115vh - 120px);
  display: flex;
  align-items: center;

  padding-left: 8%;
  padding-right: 8%;
  padding-top: 0px;
  

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.75) 0%,
      rgba(0,0,0,0.45) 45%,
      rgba(0,0,0,0.15) 70%,
      rgba(0,0,0,0.05) 100%
    ),
    url("../images/banner1.png") right center / cover no-repeat;
}

/* CONTENT */
.hero-content{
  max-width: 600px;
}

/* HEADING */
.hero-content h1{
  font-size: clamp(48px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: #ff2d2d;
}
#typeText {
  display: inline-block;
  border-right: 3px solid #ff2d2d;
  padding-right: 6px;
  white-space: nowrap;
  overflow: hidden;
  animation: blink 0.8s;
}

@keyframes blink {
  0%, 50%, 100% { border-color: transparent; }
  25%, 75% { border-color: #ff2d2d; }
}

/* TEXT */
.hero-content p{
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.75;
  color: #d1d5db;
}

/* BUTTON */
.hero-btn{
  display: inline-block;
  margin-top: 28px;
  padding: 14px 36px;

  background: linear-gradient(135deg,#b10000,#ff2d2d);
  color: #fff;
  font-weight: 700;
  border-radius: 40px;

  box-shadow: 0 14px 40px rgba(177,0,0,.45);
  transition: .3s ease;
}

.hero-btn:hover{
  transform: translateY(-3px) scale(1.04);
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 900px) {

  .hero-banner{
    min-height: 60vh;            /* FIX vh issues */
    padding-left: 20px;           /* SAFE padding */
    padding-right: 10px;
    padding-top: 120px;
    padding-bottom: 100px;          /* space for fixed navbar */
    margin-top: -10px;

    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.55) 50%,
        rgba(0,0,0,0.25) 100%
      ),
      url("../images/ChatGPT\ Image\ Jan\ 6\,\ 2026\,\ 07_01_35\ PM.png") center / cover no-repeat;

    text-align: center;

  }

  .hero-content{
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-content h1{
    font-size: 34px;              /* controlled size */
    line-height: 1.2;

  }

  .hero-content p{
    font-size: 14px;
    line-height: 1.65;

  }

  .hero-btn{
    padding: 14px 28px;
    font-size: 14px;
    margin-top: 80px;
    margin-bottom: -40px;
  }
}



/* ===============================
   COMPANY VISION SECTION
================================ */

.vision-section{
  position: relative;
  padding: 100px 0;
  background: #ffffff;
  overflow: hidden;
  padding-right: 440px;
  height: 750px;
}

.vision-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 180px;
}

/* LEFT CONTENT */
.vision-content h2{
  font-size: clamp(48px, 5.5vw, 64px);
  font-weight: 700;
  color: #b10000;
  line-height: 1.1;
  white-space: nowrap;
}

.vision-content p{
  margin-top: 22px;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.8;
  color: black;
}

.vision-btn{
  display: inline-block;
  margin-top: 26px;
  padding: 14px 34px;
  font-weight: 700;
  color: #fff;
  border-radius: 40px;
  background: linear-gradient(135deg,#b10000,#ff2d2d);
  box-shadow: 0 14px 36px rgba(177,0,0,.35);
  transition: .3s ease;
}

.vision-btn:hover{
  transform: translateY(-3px) scale(1.04);
}

/* ===============================
   DOTTED DIVIDER BETWEEN COLUMNS
================================ */

.vision-grid{
  position: relative;
}

/* Vertical dotted line */
.vision-grid::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 65%;
  transform: translate(-50%, -50%);

  height: 70%;
  width: 2px;

  background-image: repeating-linear-gradient(
    to bottom,
    #b10000 0px,
    #b10000 6px,
    transparent 6px,
    transparent 14px
  );

  opacity: 0.5;
}


/* ===============================
   STATS BLOCK
================================ */

.vision-stats{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-left: 160px;
  z-index: 100;
}

.stat-card{
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 24px 60px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
  border: 1px solid rgba(255,255,255,.4);
  transition: .3s ease;
}

html[data-theme="dark"] .stat-card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 50px rgba(0,0,0,.6);
}

.stat-card:hover{
  transform: translateY(-6px) scale(1.04);
}

.stat-card h3{
  font-size: 38px;
  font-weight: 700;
  color: #b10000;
}

.stat-card span{
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: rgb(124, 0, 0);
}


/* ===============================
   DECORATIVE SHAPES
================================ */

.vision-shape{
    overflow: hidden;
  position: absolute;
  right: -210px;
  width: 400px;
  height: 420px;
  transform: rotate(45deg);
}

.vision-shape.red{
  overflow: hidden;
  bottom: 220px;
  background: linear-gradient(135deg,#b10000,#ff2d2d);
}

.vision-shape.dark{
    overflow: hidden;
  bottom: -180px;
  right: -200px;
  background: #111827;
  z-index: -1;
}



/* ===============================
   MOBILE
================================ */

/* ===============================
   COMPANY VISION – MOBILE
================================ */
@media (max-width: 900px){

  .vision-section{
    padding: 10px;
    height: auto;              /* 🔥 remove fixed height */
    padding-right: 0;          /* 🔥 remove right overflow */
  }

  .vision-grid{
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  /* REMOVE DOTTED DIVIDER */
  .vision-grid::after{
    display: none;
  }

  /* LEFT CONTENT */
  .vision-content h2{
    font-size: 36px;
    white-space: normal;       /* 🔥 allow wrap */
  }

  .vision-content p{
    max-width: 100%;
    font-size: 13px;
    line-height: 1.7;
    margin: 18px auto 0;
  }

  .vision-btn{
    margin-top: 22px;
    padding: 12px 30px;
  }

  /* STATS */
  .vision-stats{
    margin-left: 0;            /* 🔥 critical fix */
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .stat-card{
    padding: 22px 20px;
  }

  .stat-card h3{
    font-size: 30px;
  }

  .stat-card span{
    font-size: 13px;
  }

  /* HIDE DECORATIVE SHAPES */
  .vision-shape{
    display: none;
  }
}



/* ===============================
   PREMIUM SERVICES SECTION
================================ */

.premium-services{
  font-size:24px;
  padding: 10px 0;
  background: white;
  text-align: center;
}

/* Title */
.section-title{
  font-size: 56px;
  font-weight: 700;
  color: #b10000;
  margin-bottom: 10px;
}
.section-paragraph{
  color: black;
  margin-top: 0px;
  font-size: 13px;
}

/* ===============================
   SERVICE TABS
================================ */

.service-tabs{
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 50px;
  margin-top: 40px;
}

.tab{
  padding: 12px 28px;
  border-radius: 30px;
  background: transparent;
  border: 1px solid #ff2d2d;
  color: #000000;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease;
}

.tab:hover{
  background: rgba(255,45,45,0.15);
}

.tab.active{
  background: linear-gradient(135deg,#b10000,#ff2d2d);
  box-shadow: 0 12px 30px rgba(255,45,45,.45);
  color: white;
}

/* ===============================
   SERVICE BANNER
================================ */

.service-banner{
  position: relative;
  max-width: 1900px;
  height: 900px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.7);
}

/* Banner Images */
.service-image{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 900px;
  object-fit: fit;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity .6s ease, transform .6s ease;
}

.service-image.active{
  opacity: 1;
  transform: scale(1);
}

/* Dark Overlay */
.banner-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.05)
  );
}

/* ===============================
   PREMIUM SERVICES – MOBILE
================================ */
@media (max-width: 900px){

  .premium-services{
    padding: 60px 5%;
    font-size: 18px;
  }

  /* TITLE */
  .section-title{
    font-size: 34px;
    line-height: 1.2;
  }

  .section-paragraph{
    font-size: 13px;
    margin-top: 10px;
  }

  /* ===============================
     SERVICE TABS – MOBILE
  ================================ */

  .service-tabs{
    flex-wrap: wrap;               /* 🔥 allow wrap */
    gap: 12px;
    margin-top: 30px;
    margin-bottom: 35px;
  }

  .tab{
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 24px;
    white-space: nowrap;
  }

  /* ===============================
     SERVICE BANNER – MOBILE
  ================================ */

  .service-banner{
    height: 420px;                 /* 🔥 reduce height */
    border-radius: 18px;
  }

  .service-image{
    height: 420px;
    object-fit: cover;             /* 🔥 IMPORTANT */
  }

  .banner-overlay{
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.75),
      rgba(0,0,0,0.35),
      rgba(0,0,0,0.05)
    );
  }
}

/* SECTION */
.brands-section {
  padding: 20px 2%;
  background: #fff;
  overflow: hidden;
}
/* Center container */
.trusted-container {
  max-width: 1600px;
  margin: auto;
  text-align: left; /* 🔥 centers heading & subtitle */
}
/* TITLE */
.brands-title {
  font-size: 36px;
  font-weight: 700;
  color: #b30000;
  margin-bottom: 14px;
  text-align: center;
}

/* SUBTITLE */
.brands-subtitle {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 60px;
  text-align: center;
}

/* MOVING TRACK */
.brands-grid{
  display: flex;
  gap: 60px;
  width: max-content;
  animation: none;
}

/* BRAND ITEM */
.brand-logo{
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 160px;
  opacity: 0.85;
  transition: opacity .3s ease, transform .3s ease;
}

.brand-logo img{
  height: 100px;
  object-fit: contain;
  margin-bottom: 10px;
}

.brand-logo span{
  font-size: 14px;
  color: #111827;
}

/* HOVER POLISH */
.brand-logo:hover{
  opacity: 1;
  transform: scale(1.05);
}

/* ===============================
   TRUSTED BRANDS – MOBILE
================================ */
@media (max-width: 900px){

  .brands-section{
    padding: 40px 4%;
  }

  /* TITLE */
  .brands-title{
    font-size: 28px;
    margin-bottom: 10px;
  }

  /* SUBTITLE */
  .brands-subtitle{
    font-size: 13px;
    margin-bottom: 35px;
    padding: 0 10px;
  }

  /* SLIDER TRACK */
  .brands-grid{
    gap: 40px;                  /* tighter spacing */
  }

  /* BRAND ITEM */
  .brand-logo{
    min-width: 120px;           /* 🔥 smaller logos */
  }

  .brand-logo img{
    height: 70px;
  }

  .brand-logo span{
    font-size: 12px;
  }
}


/* SECTION */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-us-section {
  padding: 60px 5%;
  background: #ffffff;
}

/* HEADER */
.why-us-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
}

.why-us-header h2 {
  font-size: 56px;
  font-weight: 700;
  color: #b10000;
}

/* CARDS */
.why-us-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* INDIVIDUAL CARD */
.why-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px;
  min-height: 420px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  /* reveal start state */
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;

  border: 2px solid #e10600; 
}

.why-card small {
  font-size: 14px;
  color: #777;
}

.why-card h3 {
  font-size: 22px;
  color: #111;
  margin: 10px 0;
}

.why-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.why-card img {
  max-width: 320px;
  align-self: flex-start;
}

/* revealed */
.why-card.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   WHY US – MOBILE
================================ */
@media (max-width: 900px){

  .why-us-section{
    padding: 50px 6%;
  }

  /* HEADER */
  .why-us-header{
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
  }

  .why-us-header h2{
    font-size: 34px;
    line-height: 1.2;
  }

  /* CARDS STACK */
  .why-us-cards{
    grid-template-columns: 1fr;    /* 🔥 stack cards */
    gap: 28px;
  }

  /* CARD */
  .why-card{
    min-height: auto;
    padding: 26px;
    border-radius: 20px;
    transform: translateY(40px);
  }

  .why-card small{
    font-size: 13px;
  }

  .why-card h3{
    font-size: 20px;
  }

  .why-card p{
    font-size: 15px;
  }

  /* IMAGE */
  .why-card img{
    max-width: 100%;
    margin-top: 18px;
    align-self: center;            /* 🔥 center image */
  }
}


.build-together-section {
  position: relative;
  height: 650px;
  background: #ffffff;
  overflow: hidden;

}

/* FULL-WIDTH BACKGROUND CANVAS */
#networkCanvas {
  position: absolute;
  top: 0;
  left: 0;

  width: 100vw;       /* FULL viewport width */
  height: 100%;

  z-index: 0;
  pointer-events: none;
}

/* Center content */
.build-container {
  position: relative;
  z-index: 2;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

/* Logo */
.build-logo {
  max-width: 800px;
}

/* Button */
.build-btn {
  padding: 16px 44px;
  background: #e10600;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
}

.build-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(225,6,0,0.35);
}

/* ===============================
   BUILD TOGETHER – MOBILE
================================ */
@media (max-width: 768px){

  .build-together-section{
    height: 420px;              /* ↓ shorter for mobile */
    padding: 20px 0;
  }

#networkCanvas {
  width: 100%;
  left: 0;
  transform: none;
}


  .build-container{
    padding: 0 20px;
    gap: 22px;
    text-align: center;
  }

  .build-logo{
    max-width: 260px;           /* ↓ responsive logo */
  }

  .build-btn{
    padding: 14px 36px;
    font-size: 15px;
    border-radius: 40px;
  }
}

.site-footer {
  background: linear-gradient(90deg, #000000 0%, #5b0000 100%);
  color: #ffffff;
  padding: 80px 5% 30px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 6% 40px;
}

/* LEFT */
.footer-left {
  max-width: 520px;
}

.footer-logo {
  max-width: 260px;
  margin-bottom: 60px;
}

.footer-about {
  font-size: 15px;
  line-height: 1.6;
  color: #dddddd;
  margin-bottom: 25px;
  
}

.footer-disclaimer-title {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin: 15px 0 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-disclaimer {
  font-size: 15px;
  line-height: 1.6;
  color: #dddddd;
  margin-bottom: 25px;
}


/* SOCIAL ICONS */
.footer-social {
  display: flex;
  gap: 15px;
  padding-bottom: 25px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: #e10600;
  transform: translateY(-3px);
}

/* RIGHT */
/* RIGHT SIDE */
.footer-right {
  text-align: left;
  margin-top: 120px;
}

.footer-right h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-right p {
  font-size: 15px;
  color: #dddddd;
  margin-bottom: 10px;
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 6%;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.9rem;
  color: #ddd;
}

/* Left text */
.footer-bottom-left {
  color: #ddd;
}

/* Right links */
.footer-bottom-right a {
  color: #ddd;
  text-decoration: none;
  margin: 0 6px;
  transition: color 0.3s ease;
}

.footer-bottom-right a:hover {
  color: #ff3b3b;
}

.footer-bottom-right span {
  color: #777;
}

/* ===============================
   FOOTER – MOBILE
================================ */
@media (max-width: 768px){

  .site-footer{
    padding: 60px 5% 20px;
  }

  .footer-container{
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    text-align: center;
    gap: 40px;
  }

  /* LEFT */
  .footer-left{
    max-width: 100%;
  }

  .footer-logo{
    max-width: 200px;
    margin: 0 auto 30px;
  }

  .footer-about,
  .footer-disclaimer{
    font-size: 14px;
  }

  .footer-disclaimer-title{
    margin-top: 25px;
  }

  /* SOCIAL ICONS */
  .footer-social{
    justify-content: center;
    padding-bottom: 10px;
  }

  /* RIGHT */
  .footer-right{
    margin-top: 0;
    text-align: center;
  }

  .footer-right h4{
    font-size: 18px;
  }

  .footer-right p{
    font-size: 14px;
  }

  /* BOTTOM BAR */
  .footer-bottom{
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 15px 0;
  }

  .footer-bottom-right{
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }
}


.testimonials-section {
  padding: 120px 5%;
  background: #ffffff;
}

.testimonials-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 10px;
}
.title-black {
  color: #000; /* black */
}

.title-red {
  font-size: 68px;
  color: #b30000; /* your red */
  font-family:'Courier New', Courier, monospace;
}
.testimonials-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 60px;
}

/* Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card */
.testimonial-card {
  background: #fff;
  border-radius: 22px;
  padding: 35px;
  border: 2px solid rgba(225,6,0,0.35);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);

  opacity: 0;
  transform: translateY(50px);
  transition: all 0.7s ease;
}

/* Reveal animation */
.testimonial-card.active {
  opacity: 1;
  transform: translateY(0);
}

/* Hover */
.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: #e10600;
  box-shadow: 0 30px 60px rgba(225,6,0,0.18);
}

/* Text */
.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 25px;
}

/* User */
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user h4 {
  font-size: 15px;
  margin: 0;
}

.testimonial-user span {
  font-size: 13px;
  color: #777;
}

.trustpilot-badge {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}

.trustpilot-badge img {
  height: 56px;
  object-fit: contain;
}

/* Rating */
.testimonial-rating {
  font-size: 16px;
  color: #00b67a; /* Trustpilot green */
  letter-spacing: 2px;
  font-size: larger;
}
.rating-number {
  font-weight: 600;
  color: #272727;
}
.testimonial-rating .stars {
  color: #00b67a; /* Trustpilot green */
  letter-spacing: 2px;
}
.trustpilot-rating span {
  font-size: 14px;
  color: #555;
}

@media (max-width: 600px) {
  .trustpilot-badge {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* Row layout */
.testimonial-row {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}
/* LEFT SIDE (Avatar + Name) */
.testimonial-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}
/* Profile image */
.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: contain;
  border: 2px solid #e10600;
  margin-bottom: 15px;
}


/* Speech bubble */
.testimonial-content {
  background: #ffffff;
  padding: 22px 26px;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  flex: 1;
}

/* Speech arrow */
.testimonial-content::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 28px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #ffffff;
}

/* Review text */
.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}
/* Name */
.testimonial-name {
  font-size: 16px;
  margin: 0;
  color: #111;
}
/* Role */
.testimonial-role {
  font-size: 13px;
  color: #777;
  display: block;
  margin-bottom: 20px;
}
.testimonial-name span {
  font-size: 13px;
  color: #777;
}

.testimonial-user span {
  font-size: 13px;
  color: #777;
}

@media (max-width: 768px) {
  .testimonial-row {
    flex-direction: column;
  }

  .testimonial-left {
    min-width: auto;
  }

  .testimonial-content::before {
    display: none;
  }
}
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  position: relative;
}

.testimonial-quote {
  position: absolute;
  top: 18px;          /* move to top */
  right: 22px;        /* move to right */
  font-size: 90px;
  font-weight: 800;
  color: rgba(225, 7, 0, 0.644);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover .testimonial-quote {
  color: rgba(223, 16, 9, 0.692);
}

.testimonials-section {
  padding: 100px 6%;
  background: #fff;
}

.testimonials-wrapper {
  background: rgba(225, 6, 0, 0.05); /* light red */
  border-radius: 50px;
  padding: 70px 60px 80px;
  position: relative;
}

/* Keep content centered */
.testimonials-wrapper > * {
  position: relative;
  z-index: 2;
}
/* ===============================
   TESTIMONIALS – MOBILE FIX
================================ */
@media (max-width: 768px) {

  .testimonials-section {
    padding: 60px 5%;
  }

  .testimonials-wrapper {
    padding: 40px 20px 50px;
    border-radius: 30px;
  }

  .testimonials-title {
    font-size: 32px;
    text-align: center;
    line-height: 1.2;
  }

  .title-red {
    font-size: 38px;
    display: block;        /* forces clean line break */
    margin-top: 6px;
  }

  .testimonials-subtitle {
    font-size: 14px;
    margin-bottom: 40px;
    text-align: center;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .testimonial-card {
    padding: 26px 22px;
  }

  .testimonial-quote {
    font-size: 56px;
    top: 12px;
    right: 14px;
  }
}

/*CAREER STYLING*/
/* ============================= */
/* CAREER FORM SECTION */
/* ============================= */

.career-form-section {
  padding: 100px;
  background: #ffffff;
}

.career-form-wrapper {
  max-width: 1500px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* FORM CARD */
.career-form {
  background: #0b0b0b;
  padding: 50px;
  border-radius: 18px;
  color: #fff;
  transform: translateX(-60px) scale(0.95);
  opacity: 0;
  transition: all 1s ease;
}

.career-form.active {
  transform: translateX(0) scale(1);
  opacity: 1;
}

.career-form h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.career-form p {
  color: #ccc;
  margin-bottom: 30px;
}

.career-form form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: none;
  outline: none;
  font-size: 0.95rem;
}
.career-form form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: none;
  outline: none;
  font-size: 0.95rem;
}
.career-form input:focus {
  box-shadow: 0 0 0 2px #d10000;
}

/* BUTTON */
.career-form button {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #d10000, #ff3b3b);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(209,0,0,0.4);
}

/* IMAGE */
.career-image {
  overflow: hidden;
  border-radius: 20px;
  transform: translateX(60px) scale(0.95);
  opacity: 0;
  transition: all 1s ease;

}
.career-image img {
  transition: transform 0.6s ease;
}

.career-image:hover img {
  transform: scale(1.05);
}

.career-image.active {
  transform: translateX(0) scale(1);
  opacity: 1;
}

.career-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.file-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #ffffff;
}
.career-form {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(209,0,0,0.25);
}
.floating-field {
  position: relative;
  margin-bottom: 20px;
}

.floating-field input,
.floating-field textarea {
  width: 100%;
  padding: 18px 16px;
  border-radius: 10px;
  border: none;
}

.floating-field label {
  position: absolute;
  top: 50%;
  left: 16px;
  color: #aaa;
  transform: translateY(-50%);
  pointer-events: none;
  transition: 0.3s ease;
}

.floating-field input:focus + label,
.floating-field input:valid + label {
  top: 6px;
  font-size: 0.75rem;
  color: #ff3b3b;
}

.form-progress {
  height: 6px;
  background: #222;
  border-radius: 10px;
  margin-bottom: 20px;
}

.form-progress .bar {
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, #d10000, #ff4d4d);
  border-radius: 10px;
}
.career-form button {
  position: relative;
  overflow: hidden;
}

.career-form button::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 100%;
  top: 0;
  left: -200%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: 0.6s;
}

.career-form button:hover::after {
  left: 200%;
}
/* =============================
   CAREER FORM — MOBILE
============================= */
@media (max-width: 900px) {

  .career-form-section {
    padding: 60px 20px;
  }

  .career-form-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* FORM */
  .career-form {
    padding: 30px 24px;
    transform: translateY(40px) scale(0.95);
  }

  .career-form.active {
    transform: translateY(0) scale(1);
  }

  .career-form h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  .career-form p {
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 25px;
  }

  /* INPUTS */
  .floating-field input,
  .floating-field textarea {
    padding: 16px 14px;
    font-size: 0.9rem;
  }

  .floating-field label {
    font-size: 0.85rem;
  }

  /* BUTTON */
  .career-form button {
    padding: 14px;
    font-size: 0.95rem;
    border-radius: 10px;
  }

  /* IMAGE */
  .career-image {
    transform: translateY(40px) scale(0.95);
    border-radius: 16px;
  }

  .career-image.active {
    transform: translateY(0) scale(1);
  }

  .career-image img {
    height: 260px;
    object-fit: cover;
  }
  .career-image{
    margin-top: 60px;
  }
}
@media (max-width: 480px) {

  .career-form h2 {
    font-size: 1.6rem;
  }

  .career-form p {
    font-size: 0.9rem;
  }

  .career-image img {
    height: 220px;
  }
}

/* ============================= */
/* JOIN OUR TEAM SECTION */
/* ============================= */

.join-team-section {
  padding: 60px 4%;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f8f8f8 100%
  );
}

.join-team-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.join-title {
  font-size: 3rem;
  font-weight: 700;
  color: #111;
}

.join-subtitle {
  max-width: 650px;
  margin: 20px auto 60px;
  color: #555;
  font-size: 1.1rem;
}

/* Cards */
.join-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.join-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.join-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: rgb(0, 0, 61);
  text-align: left;
}

.join-card p {
  color: #666;
  font-size: 0.95rem;
  text-align: left;
}

/* Hover effect */
.join-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(209,0,0,0.25);
}
/* =============================
   JOIN TEAM — MOBILE
============================= */
@media (max-width: 900px) {

  .join-team-section {
    padding: 20px 6%;
  }

  .join-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .join-subtitle {
    font-size: 1rem;
    margin: 16px auto 40px;
  }

  /* Cards grid */
  .join-cards {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }

  /* Individual card */
  .join-card {
    padding: 28px 22px;
    border-radius: 16px;
  }

  .join-card h3 {
    font-size: 1.15rem;
  }

  .join-card p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  /* Disable hover lift on touch */
  .join-card:hover {
    transform: none;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  }
}

/*ABOUT US SECTION*/


/* ============================= */
/* ABOUT PAGE IMAGE BANNER */
/* ============================= */

.about-banner {
  position: relative;
  height: 900px;
  width: 100%;
  overflow: hidden;
}

/* Banner image */
.about-banner img {
  width: 100%;
  height: 1600px;
}

/* Dark overlay for readability */
.about-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Text content */
.about-banner-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  text-align: left;
  padding: 0 6%;
}

.about-banner-content h1 {
  font-size: clamp(48px, 5.5vw, 64px);
  font-weight: 700;
  color: #ff2d2d;
  margin-bottom: 20px;
}

.about-banner-content p {
  max-width: 700px;
  font-size: 1.2rem;
  color: #ddd;
  line-height: 1.6;
}

.about-banners {
  position: relative;
  height: 700px;
  width: 100%;
  overflow: hidden;
}

/* Banner image */
.about-banners img {
  width: 100%;
  height: 1600px;
}

/* Dark overlay for readability */
.about-banners-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Text content */
.about-banners-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  text-align: left;
  padding: 0 6%;
  padding-bottom: 100px;
}

.about-banners-content h1 {
  font-size: clamp(48px, 5.5vw, 64px);
  font-weight: 700;
  color: #ff2d2d;
  margin-top: 160px;
}

.about-banners-content p {
  max-width: 700px;
  font-size: 1.2rem;
  color: #ddd;
  line-height: 1.6;
}
/* Responsive */
/* =============================
   ABOUT BANNER — MOBILE
============================= */
@media (max-width: 768px) {

  /* MAIN ABOUT BANNER */
  .about-banner,
  .about-banners {
    height: 600px;
  }

  .about-banner img,
  .about-banners img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 🔥 fixes image stretch */
  }

  /* CONTENT */
  .about-banner-content,
  .about-banners-content {
    padding: 0 5%;
    padding-bottom: 20px;
  }

  .about-banner-content h1,
  .about-banners-content h1 {
    font-weight: 700;
    line-height: 1.0;
  }

  .about-banner-content p,
  .about-banners-content p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 100%;
  }
}


/* ============================= */
/* ABOUT MEDIA (VIDEO) SECTION */
/* ============================= */

.about-media-section {
  padding: 120px 4%;
  background: linear-gradient(180deg, #ffffff, #ffffff);
}

.about-media-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: top;
}

/* VIDEO */
.about-video {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  height: 700px;
}

.about-video video {
  width: 100%;
  height: 750px;
  object-fit: cover;
  display: block;
}

/* subtle red glow */
.about-video::after {
  content: "";
  position: absolute;
  inset: 0;
}

/* CONTENT */
.about-media-content {
  color: #c92f2f;
}

.about-label {
  display: inline-block;
  margin-bottom: 12px;
  color: #ff3b3b;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.about-label{
  color: #ff3b3b;
}

.about-media-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.about-media-content p {
  color: #2b2b2b;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1rem;
}

/* Pillars */
.about-pillars {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.pillar {
  padding: 10px 18px;
  border-radius: 30px;
  background: #a8000014;
  border: 1px solid rgba(116, 2, 2, 0.836);
  font-size: 0.85rem;
}
.values-heading {
  margin-top: 40px;
  margin-bottom: 18px;
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c92f2f; /* your red accent */
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .about-media-section {
  padding-bottom: 40px;
  background: linear-gradient(180deg, #ffffff, #ffffff);
}
  .about-media-grid {
    grid-template-columns: 1fr;
  }

  .about-media-content h2 {
    font-size: 2.3rem;
  }
}

/* ============================= */
/* FAQ SECTION */
/* ============================= */

.faq-section {
  padding: 20px 6%;
  background: #ffffff;
  color: #000000;
}

.faq-section{
  padding: 80px 0;
  background: linear-gradient(
    180deg,
    #fff5f5 0%,
    #ffffff 100%
  );
}
/* ===============================
   FAQ TOP BUTTON
================================ */

.faq-top-btn{
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.faq-top-btn span{
  padding: 10px 22px;
  border-radius: 30px;
  background: rgba(193,18,31,0.12); /* light red */
  color: #c1121f;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.faq-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.faq-subtitle {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 70px;
  color: #414141;
  font-size: 1.05rem;
}

/* FAQ LIST */
.faq-list {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

/* QUESTION */
.faq-question {
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  outline: none;
  color: #303030;
  font-size: 1.15rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question:hover {
  color: #ff3b3b;
}

/* ICON */
.faq-icon {
  font-size: 1.6rem;
  color: #ff3b3b;
  transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding-bottom: 25px;
  color: #000000;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/*terms*/

.terms-section {
  padding: 100px 6%;
  background: #ffffff;
}

.terms-container {
  max-width: 1200px;
  margin: auto;
}

.terms-container h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.terms-container h2 {
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 1.4rem;
  color: #111;
}

.terms-container p {
  color: #000000;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 15px;
}

.terms-container ul {
  margin-left: 20px;
  color: #555;
}

.terms-container ul li {
  margin-bottom: 8px;
}
/* =============================
   TERMS SECTION — MOBILE
============================= */
@media (max-width: 900px) {

  .terms-section {
    padding-top: 0px;
  }

  .terms-container {
    max-width: 100%;
  }

  .terms-container h1 {
    font-size: 2.rem;
    line-height: 1.2;
    margin-bottom: 24px;
    text-align: fit-content;
  }

  .terms-container h2 {
    font-size: 1.2rem;
    margin-top: 30px;
    margin-bottom: 12px;
  }

  .terms-container p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 14px;
  }

  .terms-container ul {
    margin-left: 18px;
  }

  .terms-container ul li {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }
}

.policy-section{
  padding: 70px 0 80px;
  background: var(--bg);
}

.policy-container{
  max-width: 1200px;
}

.policy-section h1{
  font-size: 42px;
  margin-bottom: 20px;
}

.policy-section h2{
  margin-top: 40px;
  margin-bottom: 12px;
  font-size: 24px;
}

.policy-section p{
  line-height: 1.8;
}

.policy-section ul{
  margin: 15px 0 0 20px;
}

.policy-section li{
  margin-bottom: 10px;
  color: var(--muted);
}

.policy-intro{
  font-size: 18px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {

  .policy-section{
    padding: 0; /* 🔥 reduced top & side padding */
  }

  .policy-container{
    max-width: 100%;
  }

  .policy-section h1{
    font-size: 28px;        /* 🔥 smaller heading */
    margin-bottom: 16px;
    line-height: 1.3;
  }

  .policy-intro{
    font-size: 15px;
    margin-bottom: 28px;
    line-height: 1.6;
  }

  .policy-section h2{
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 10px;
  }

  .policy-section p{
    font-size: 14.5px;
    line-height: 1.7;
    
  }

  .policy-section ul{
    margin-left: 16px;
  }

  .policy-section li{
    font-size: 14.5px;
    margin-bottom: 8px;
  }
}

/*contact*/
.contact-section{
  padding: 100px 0;
  background: #ffff;
}

.contact-grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: stretch;
}

/* LEFT FORM */
.contact-form-box{
  background: #1d1d1d;
  padding: 50px;
  border-radius: 22px;
  transform: translateX(-60px) scale(0.95);
}

.contact-form-box h2{
  font-size: 36px;
  margin-bottom: 10px;
  color: #fff;
}

.contact-form-box p{
  color: var(--muted);
  margin-bottom: 30px;
  color: #ccc;
}

.contact-form{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea{
  padding: 14px 18px;
  border-radius: 14px;
  border: none;
  background: rgb(255, 255, 255);
  color: #000000;
  font-size: 15px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color: #aaa;
}

.contact-form input:focus,
.contact-form textarea:focus{
  outline: 2px solid var(--accent);
  background: rgb(255, 255, 255);
}

.contact-form button{
  margin-top: 10px;
  padding: 14px;
  border-radius: 18px;
  border: none;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg,#b10000,#ff2d2d);
  box-shadow: 0 10px 30px rgba(177,0,0,.45);
  transition: .3s ease;
}

.contact-form button:hover{
  transform: translateY(-3px);
}

/* RIGHT INFO */
.contact-info-box{
  background: #ffff;
  padding: 50px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.contact-info-box h3{
  font-size: 28px;
  margin-bottom: 30px;
  color:#000
}

.info-item{
  margin-bottom: 22px;
}

.info-item span{
  font-size: 13px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-item p{
  margin-top: 4px;
  font-size: 16px;
  color: #000;
}

.info-map{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 28px rgba(0,0,0,0.4);
}

.info-map iframe{
  width: 100%;
  height: 180px;
  border: 0;
}
/* =============================
   CONTACT SECTION — MOBILE
============================= */
@media (max-width: 900px) {

  .contact-section {
    padding: 60px 6%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* LEFT FORM */
  .contact-form-box {
    padding: 32px 24px;
    border-radius: 18px;
    transform: none; /* remove slide effect on mobile */
  }

  .contact-form-box h2 {
    font-size: 26px;
  }

  .contact-form-box p {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
    padding: 12px 14px;
    border-radius: 12px;
  }

  .contact-form textarea {
    min-height: 120px;
  }

  .contact-form button {
    padding: 14px;
    font-size: 14px;
    border-radius: 14px;
  }

  /* RIGHT INFO */
  .contact-info-box {
    padding: 32px 24px;
    border-radius: 18px;
  }

  .contact-info-box h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .info-item span {
    font-size: 12px;
  }

  .info-item p {
    font-size: 14px;
  }

  .info-map iframe {
    height: 200px;
  }
}

/* ===============================
   SERVICES HERO
================================ */
.services-hero {
  min-height: 100vh;

  background:
    linear-gradient(
      to right,
      rgba(0,0,0,0.95) 0%,
      rgba(88,0,0,0.85) 45%,
      rgba(88,0,0,0.3) 65%,
      rgba(0,0,0,0) 100%
    ),
    url("/assets/images/serviceglobebanner.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;

  padding-left: 8%;   /* ⬅ START FROM LEFT */
  color: #fff;

  text-align: left;   /* ⬅ FORCE LEFT ALIGN */
}

/* TEXT CONTAINER */
.hero-content {
  max-width: 620px;
}

/* HEADING */
.services-hero h1 {
  font-size: clamp(48px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

/* SECOND LINE */
.services-hero h1 span {
  display: block;
  color: #d32f2f; /* red matching globe */
}

/* PARAGRAPH */
.services-hero p {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.95;
}
/* ===============================
   SERVICES HERO — MOBILE
================================ */
@media (max-width: 768px) {

  .services-hero {
    min-height: 75vh;

    background:
      linear-gradient(
        to bottom,
        rgba(0,0,0,0.95) 0%,
        rgba(88,0,0,0.75) 40%,
        rgba(88,0,0,0.35) 65%,
        rgba(0,0,0,0.95) 100%
      ),
      url("/assets/images/servicemobilebanner.png"); /* ⬅ MOBILE IMAGE */

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 7%;
    text-align: center;
  }

  /* TEXT CONTAINER */
  .hero-content {
    max-width: 100%;
  }

  /* HEADING */
  .services-hero h1 {
    font-size: clamp(34px, 9vw, 44px);
    line-height: 1.2;
    margin-bottom: 16px;
    text-align: left;
  }

  /* SECOND LINE */
  .services-hero h1 span {
    color: #ff3b3b;
  }

  /* PARAGRAPH */
  .services-hero p {
    font-size: 1rem;
    line-height: 1.65;
    opacity: 0.95;
    text-align: left;
  }
}



/* ===============================
   SERVICES GRID
================================ */
/* SECTION */
.services-reel-section {
  background: #ffffff;
  padding: 80px 8%;
}
/* HEADING */
.services-heading {
  text-align: left;
  max-width: 1000px;;
}

.services-heading h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.services-heading p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 50px;
}

/* GRID */
.services-reel {
  display: grid;
   grid-template-columns: repeat(3, 1fr); /* 🔥 3 per row */
  gap: 20px;
  margin-top: 3rem;
}

/* CARD BASE */
.service-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 18px;
  min-height: 500px;
  max-width: 460px;
  align-items: center; 
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* NEON BORDER */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 2px;

  background: linear-gradient(
    to bottom,
    currentColor 0%,
    transparent 20%,
    transparent 80%,
    currentColor 100%
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
          mask-composite: exclude;
}
.service-icon {
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
  display: inline-block;
}

/* Color match with cards */
.service-card.red .service-icon {
  color: #ff2e2e;
}

.service-card.maroon .service-icon {
  color: #800000;
}

.service-card.black .service-icon {
  color: #111;
}

/* Hover animation */
.service-card:hover .service-icon {
  transform: translateY(-5px) scale(1.1);
  transition: 0.4s ease;
}


/* TEXT */
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 600;
  color: #111;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* HOVER */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* COLOR VARIANTS */
.service-card.red::before {
  background: linear-gradient(135deg, #ff1a1a, #ff6b6b);
}

.service-card.maroon::before {
  background: linear-gradient(135deg, #6d0f0f, #a4161a);
}

.service-card.black::before {
  background: linear-gradient(135deg, #000000, #444444);
}
/* Bottom icon container */
.service-icons-bottom {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 3.6rem;
}

/* Icon circle */
.icon-slot {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.8px solid rgba(0, 0, 0, 0.2);
  background: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.3s ease;
}

/* Icon image */
.icon-slot img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

/* Maroon card border color */
.service-card.maroon .icon-slot {
  border-color: #800000;
}

.icon-slot:hover img {
  filter: brightness(0) invert(1); /* white icon on hover */
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   SERVICES GRID — MOBILE
================================ */
@media (max-width: 768px) {

  /* SECTION */
  .services-reel-section {
    padding: 20px 6%;
  }

  /* HEADING */
  .services-heading {
    text-align: left;
    max-width: 100%;
  }

  .services-heading h2 {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .services-heading p {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  /* GRID */
  .services-reel {
    grid-template-columns: 1fr;   /* ✅ ONE CARD PER ROW */
    gap: 28px;
    margin-top: 2.5rem;
  }

  /* CARD */
  .service-card {
    max-width: 100%;
    min-height: auto;             /* 🔥 remove tall cards */
    padding: 1.8rem;
  }

  /* ICON TOP */
  .service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  /* TEXT */
  .service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* BOTTOM ICONS */
  .service-icons-bottom {
    gap: 14px;
    margin-top: 2.2rem;
  }

  .icon-slot {
    width: 56px;
    height: 56px;
  }

  .icon-slot img {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 1024px) {
  .services-reel {
    grid-template-columns: repeat(1, 1fr);
  }
}


/* ===============================
   PROCESS SECTION
================================ */

.process-section {
  background: #ffffff;
  padding: 4rem 5%;
}

.process-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 5rem;
  color: #000;
}

/* GRID */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  text-align: center;
}

/* STEP */
.process-step {
  position: relative;
  padding: 0 10px;
}

/* BIG FADED NUMBER */
.process-step span {
  display: block;
  font-size: 5.5rem;
  font-weight: 700;
  color: rgba(161, 0, 0, 0.541);
  margin-bottom: 1rem;
}

/* TITLE */
.process-step h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.6rem;
}

/* DESCRIPTION */
.process-step p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-step span {
    font-size: 4.5rem;
  }
}


/* ===============================
   SERVICES BENEFITS SECTION
================================ */
.benefits-section {
  background: #ffffff;
  padding: 4rem 5%;
}

.benefits-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 4rem;
  color: #000;
}

/* Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card */
.benefit-card {
  background: #fff;
  padding: 2.2rem;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

/* Hover */
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

/* Heading */
.benefit-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #000;
}

/* Text */
.benefit-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
}

/* Responsive */
@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefits-title {
    font-size: 2.2rem;
  }
}

/*====PORTFOLIO=====*/
.portfolio-section {
  background: #ffffff;
  padding: 1.2rem 2%;
}

/* Heading */
.portfolio-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.portfolio-title {
  position: relative;
  font-size: 5.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: #0f0f0f;
  display: inline-block;
  margin-bottom: 10px;
}

/* OUR TEXT ON TOP */
.portfolio-our {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -80%) rotate(-6deg);
  font-size: 4.2rem;
  font-weight: 700;
  color: #ec0000; /* maroon */
  font-family: 'Pacifico', 'Brush Script MT', cursive;
  pointer-events: none;
}


/* Filters */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.portfolio-filters button {
  padding: 8px 18px;
  border-radius: 10px;
  border: none;
  background: #f1f5f9;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.3s;
}

.portfolio-filters button.active,
.portfolio-filters button:hover {
  background: #0f172a;
  color: #fff;
}

/* Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.portfolio-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.4s;
}

.portfolio-card:hover {
  transform: translateY(-8px);
}

/* Image */
.portfolio-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Content */
.portfolio-content {
  padding: 1.5rem;
}

.portfolio-category {
  display: inline-block;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
  background: #f1f5f9;
  margin-bottom: 0.8rem;
}

.portfolio-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.portfolio-content p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

/* Tags */
.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1rem;
}

.portfolio-tags span {
  font-size: 0.7rem;
  padding: 4px 10px;
  background: #f1f5f9;
  border-radius: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-heading h2 {
    font-size: 3.2rem;
  }
  /* OUR TEXT ON TOP */
.portfolio-our {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -80%) rotate(-6deg);
  font-size: 2.8rem;
  font-weight: 700;
  color: #ec0000; /* maroon */
  font-family: 'Pacifico', 'Brush Script MT', cursive;
  pointer-events: none;
}
}

.success-msg {
    color: #0a0;
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
}

.error-msg {
    color: #a00;
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
}
.form-message p {
  margin-bottom: 15px;
  font-weight: 600;
}
.info-msg { color: #2563eb; }