* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: rgb(0, 0, 0);
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    scroll-behavior: smooth;
}

section {
    padding: 40px 5%;
    overflow: hidden; 
}


.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    opacity: 0.95;
}

.logo {
    height: auto;
    width: auto;
    display: flex;
    align-items: center;
    min-height: 80px;
}

.logo img {
    height: 80px; /* Adjusted height */
    width: auto;
    display: block;
}

.loon {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.c { /* Top right small links */
    display: flex;
    gap: 15px;
    justify-content: right;
    margin-bottom: 5px;
}

.items { /* Main navigation links */
    display: flex;
    gap: 20px;
}

.item {
    text-decoration: none;
    color: #333;
    padding: 5px 10px;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    font-size: 16px;
    
    
}

.item:hover {
    color: #007bff; /* Primary Brand Blue */
    border-bottom: 2px solid #007bff;
}

#brandlogin {
    font-weight: bold;
    color: white;
    border: #292929 solid 2px;
    border-radius: 100px;
    background-color: #292929;
}

/* --- hero Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 6%;
  background: linear-gradient(
    135deg,
    #0D111C 0%,
    #0F172A 40%,
    #1E293B 100%
  );
  overflow: hidden;
}
video{
    width: 40%;
    height: 40%;
    top: 80%;
    border: #292929 solid 2px;
    border-radius: 70px;
}

.herocon {
  position: relative;
  z-index: 2;
  max-width: 620px;
  color: #ffffff;
}

.heroh {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 10px;
  color: white;
}

.heropara {
  margin-top: 18px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #CBD5E1;
  max-width: 560px;
}


.herotalk {
  margin-top: 30px;
  margin-right: 15px;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #E2B052;
  color: #0F172A;
  box-shadow: 0 10px 30px rgba(226, 176, 82, 0.4);
  transition: all 0.3s ease;
}

.herotalk:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(226, 176, 82, 0.6);
}

.heropartners {
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 999px;
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.heropartners:hover {
  background: rgba(255, 255, 255, 0.08);
}

.herofeatures {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.herosmallbox {
  padding: 22px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  text-align: left;
}

.herofea {
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFFFFF;
}

.herofeadetail {
  margin-top: 6px;
  font-size: 0.95rem;
  color: #CBD5E1;
}



.hero hero {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
    padding: 20px 40px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}
/* =========================
   EXPERIENCE SECTION
========================= */

.exp {
  background: #ffffff;
  padding: 100px 6%;
}

.exp-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* =========================
   LEFT CONTENT
========================= */

.exp-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #F59E0B;
  text-transform: uppercase;
}

.exp-title {
  margin-top: 14px;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.3;
  color: #0F172A;
}

.exp-text {
  margin-top: 16px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
}

.exp-buttons {
  margin-top: 26px;
  display: flex;
  gap: 14px;
}

.exp-btn-primary {
  padding: 14px 28px;
  background: #0F172A;
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.exp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.exp-btn-secondary {
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid #E2E8F0;
  color: #334155;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.exp-btn-secondary:hover {
  background: #F1F5F9;
}

/* =========================
   RIGHT CARDS
========================= */

.exp-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.exp-card {
  border-radius: 18px;
  padding: 24px;
}

/* Gold gradient card */
.exp-card-gold {
  background: linear-gradient(135deg, #FEF3C7, #ffffff);
  border: 1px solid #FDE68A;
}

.exp-card-gold .exp-metric {
  color: #D97706;
}

/* Dark card */
.exp-card-dark {
  background: linear-gradient(135deg, #0F172A, #1E293B);
  color: #ffffff;
}

/* Wide card */
.exp-card-wide {
  grid-column: span 2;
  background: #ffffff;
  border: 1px solid #E2E8F0;
}

/* =========================
   CARD TYPOGRAPHY
========================= */

.exp-metric {
  font-size: 2.4rem;
  font-weight: 700;
  color: white;
}

.exp-metric-label {
  margin-top: 6px;
  font-size: 0.95rem;
  color: #334155;
}

.exp-card-dark .exp-metric-label {
  color: #CBD5E1;
}

.exp-wide-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0F172A;
}

.exp-wide-text {
  margin-top: 10px;
  color: #475569;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .exp-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .exp-title {
    font-size: 1.8rem;
  }

  .exp-cards {
    grid-template-columns: 1fr;
  }

  .exp-card-wide {
    grid-column: span 1;
  }
}

/* =========================
   MAP POINTER SECTION
========================= */

.mapointer {
  background: #0F172A;
  padding: 100px 6%;
  color: #ffffff;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 60px;
  align-items: center;
}

/* =========================
   MAP BOX
========================= */

.map-box {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #1E293B;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

/* ==========================================================
 * MAP POINTER SECTION
 * ========================================================== */

.mapointer {
  background-color: #0f172a; /* slate-900 */
  color: #ffffff;
  padding: 80px 5%;
}

/* Layout */
.map-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 40px;
  align-items: center;
}

/* Map Box */
.map-box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background-color: #1e293b; /* slate-800 */
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

/* Location Marker */
.marker {
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: #fbbf24; /* amber-400 */
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.8);
  animation: pulse 1.5s infinite;
}

/* Pulse animation */
@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }
}

/* Right Side Cards */
.locards h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: white;
}

.loc-grid {
    color: white;
}

/* Location Button */
.loc {
color: #ffffff !important;
  font-weight: bold;
  padding: 14px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(
    135deg,
    #0d111c 0%,
    #0f172a 40%,
    #1e293b 100%
  );

  /* Interaction and Shadow */
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Added Hover State for better UX */
.loc:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  color: white;
}

.loc:active {
  transform: translateY(0);
}

/* Description Text */
.locnote {
  margin-top: 15px;
  font-size: 14px;
  color: #cbd5f5;
}

/* ==========================================================
 * RESPONSIVE
 * ========================================================== */

@media (max-width: 900px) {
  .map-container {
    grid-template-columns: 1fr;
  }

  .loc-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
   LOCATION CARDS
========================= */

/* =========================
   COMMON
========================= */

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 6%;
}

.section-head {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0F172A;
}

.section-subtitle {
  font-size: 0.9rem;
  color: #475569;
}

/* =========================
   CAROUSEL
========================= */

.carousel {
  background: linear-gradient(to right, #F8FAFC, #FFFFFF);
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  overflow: hidden;
}

.carousel.white {
  background: #ffffff;
}

.carousel-track {
  display: flex;
  gap: 50px;
  padding: 24px;
  animation: scroll 60s linear infinite;
}

.carousel-track img {
  height: 40px;
  object-fit: contain;
}

.customers-track img {
  height: 32px;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================
   SECTIONS
========================= */

.brands,
.contact {
  background: #ffffff;
  padding: 80px 0;
}

.customers {
  background: #F8FAFC;
  padding: 80px 0;
}

/* =========================
   CONTACT
========================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
}

.eyebrow {
  color: #F59E0B;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.contact-desc {
  color: #475569;
}

.contact-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 24px;
}

.contact-card h3 {
  margin-bottom: 10px;
}

.contact-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

/* =========================
   FORM
========================= */

.contact-form {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  border: 1px solid #E2E8F0;
}

.contact-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  font-size: 0.9rem;
}

/* =========================
   BUTTONS
========================= */

.btn-dark {
  background: #0F172A;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
}

.btn-outline {
  border: 1px solid #E2E8F0;
  padding: 10px 18px;
  border-radius: 999px;
  color: #334155;
}

.btn-amber {
  background: #FBBF24;
  color: #0F172A;
  padding: 14px;
  border-radius: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #0F172A;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

/* =========================
   FOOTER
========================= */

.footer {
  background: #0F172A;
  color: #CBD5E1;
  padding: 24px 0;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-glass {
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 14px;
  border-radius: 999px;
}

.btn-light {
  background: #ffffff;
  color: #0F172A;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
 * MAP POINTER SECTION
 * ========================================================== */

.mapointer {
  background-color: #0f172a; /* slate-900 */
  color: #ffffff;
  padding: 80px 5%;
}

/* Layout */
.map-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 40px;
  align-items: center;
}

/* Map Box */
.map-box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background-color: #1e293b; /* slate-800 */
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

/* Location Marker */
.marker {
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: #fbbf24; /* amber-400 */
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.8);
  animation: pulse 1.5s infinite;
}

/* Pulse animation */
@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }
}

/* Right Side Cards */
.locards h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.loc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

/* Location Button */
.loc {
  background-color: #ffffff;
  color: #0f172a;
  border: none;
  padding: 14px;
  border-radius: 14px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s, box-shadow 0.3s;
}

.loc:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

/* Description Text */
.locnote {
  margin-top: 15px;
  font-size: 14px;
  color: #cbd5f5;
}

/* ==========================================================
 * RESPONSIVE
 * ========================================================== */

@media (max-width: 900px) {
  .map-container {
    grid-template-columns: 1fr;
  }

  .loc-grid {
    grid-template-columns: 1fr;
  }
}

.loc{
  width: 400px;
  margin: 20px; 
}