

	 
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Barlow', sans-serif;
}

/* ================= STICKY HEADER ================= */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  
 
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 50px;
}

/* Mobile adjustment */
@media (max-width: 900px) {
  .header-inner {
    padding: 22px 0; /* horizontal padding becomes 0 on smaller screens */
  }
}





.contact-btn{
  background:#453D94;
  color:#fff;
  padding:12px 26px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
}
/* ================= MENU BUTTON ================= */
/* Make the menu button sticky with the header */
.menu-btn {
  position: fixed;       /* fixed instead of absolute */
  bottom: 40px;          /* distance from bottom of viewport */
  left: 50%;
  transform: translateX(-50%);
  z-index: 1002;         /* above everything */
  background: #453D94;
  color: #fff;
  padding: 14px 30px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size:24px;
}

.menu-btn span {
  background: #fff;
  color: #000;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}




/* ================= FULL SCREEN MENU ================= */
.full-menu{
  position:fixed;
  inset:0;
  background:#fff;
  z-index:2000;
  display:flex;
  opacity:0;
  pointer-events:none;
  transition:.4s ease;
}

.full-menu.active{
  opacity:1;
  pointer-events:auto;
}

/* Left Menu */
.menu-left{
  width:40%;
  padding:80px 60px;
}

.menu-left ul{
  list-style:none;
}

.menu-left li{
  font-size:53px;
  font-weight:600;
  margin-bottom:20px;
}

/* Right Image */
.menu-right{
  width:60%;
  padding:40px;
}

.menu-right img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:20px;
}

.menu-right{
  position: relative;
  width: 100%;
  height: 100%;
}

.menu-right img{
  width: 70%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
MARGIN-LEFT:180PX;
}

/* sliding text container */
.slide-text{
  position: absolute;
  top: 260px; /* change position as you want */
  left: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
}

/* text track */
.text-track{
  display: flex;
  width: max-content;
  animation: slide 35s linear infinite;
}

/* text style */
.text-track span{
  color: #fff;
  font-size: 6rem;     /* 🔥 big font */
  font-weight: 800;
  white-space: nowrap;
}

/* animation */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* Close Button */
.close-btn{
  position:absolute;
  bottom:40px;
  left:50%;
  transform:translateX(-50%);
  background:#403D97;
  color:#fff;
  padding:14px 28px;
  border-radius:40px;
  display:flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
}

.close-btn span{
  background:#fff;
  color:#000;
  width:28px;
  height:28px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
  .full-menu{
    flex-direction:column;
  }
  .menu-left,.menu-right{
    width:100%;
  }
  .menu-left li{
    font-size:32px;
  }
}




/* ================= HERO ================= */
/* Hero container */
  .hero-wrapper{
    position: relative;
    height: 200vh;
  }
.wrapper {
    position: sticky;
    width: 100%;
    height: 100svh;
    overflow: hidden;
     /* dark background for contrast */
    margin-top: -1px; /* if needed to adjust spacing */
}

/* Center hero text */
#us-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5; /* always in front */
    text-align: center;
    color: #fff;
    pointer-events: none;
}

#us-center hgroup h1 {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.2;
}

/* ================= HERO BOXES ================= */
.wrapper div[id^="us-box"] {
    position: absolute;
    width: 200px; /* default box size */
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    border-radius: 5px;
    transition: transform 1s ease, opacity 1s ease;
    z-index: 2; /* behind the center text */
}

/* Assign different positions to each box */
#us-box1 { top: 10%; left: 5%; transform: translate(-50px, -50px); }
#us-box2 { top: 20%; left: 25%; transform: translate(50px, -50px); }
#us-box3 { top: 30%; left: 45%; transform: translate(-50px, 50px); }
#us-box4 { top: 10%; left: 65%; transform: translate(50px, -50px); }
#us-box5 { top: 50%; left: 15%; transform: translate(-50px, 50px); }
#us-box6 { top: 60%; left: 35%; transform: translate(50px, 50px); }
#us-box7 { top: 40%; left: 65%; transform: translate(-50px, -50px); }
#us-box8 { top: 70%; left: 55%; transform: translate(50px, 50px); }

/* Animate boxes on load */
.wrapper div[id^="us-box"].animate {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
    #us-center hgroup h1 {
        font-size: 2rem;
    }
    .wrapper div[id^="us-box"] {
        width: 120px;
        height: 120px;
    }
}

/* ================= OPTIONAL SCROLL ANIMATION ================= */
/* You can animate boxes on scroll with JS by adding 'animate' class */








.content-scroll {
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.center-text{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:70px 20px;
}

.center-text h1{
  font-size:clamp(34px, 5vw, 64px); /* size thoda bada */
  font-weight:400;                /* bold kam */
  line-height:1.25;
  color:#111;
  letter-spacing:-0.5px;
}

.center-text h1 span{
  color:#453D94;
  font-weight:500;                /* medium weight, heavy bold nahi */
}

.about-text{
  display:flex;
  justify-content:center;
  padding:80px 20px; /* mobile default */
}

.about-text p{
  max-width:1100px;       /* desktop center width */
  padding-left:200px;     /* left padding */
  padding-right:200px;    /* right padding */
  padding-top:0;
  padding-bottom:0;
  font-size:18px;
  line-height:1.7;
  color:#333;
  text-align:center;
  font-weight:500;        /* medium weight, slightly bolder */
  margin-top:-100px;
}

/* Responsive Adjust */
@media(max-width:1024px){
  .about-text p{
    padding-left:60px;
    padding-right:60px;
  }
}

@media(max-width:600px){
  .about-text p{
    padding-left:0;
    padding-right:0;
    font-size:16px;
  }
}

.about-text.grey-text p{
  max-width:1100px;       /* desktop width */
  padding-left:170px;     /* left spacing */
  padding-right:170px;    /* right spacing */
  padding-top:0;
  padding-bottom:0;
  font-size:18px;
  line-height:1.7;
  text-align:center;
  font-weight:400;        /* medium weight */
  color:#333;             /* default dark text */
  font-size:20px;
  margin-top:-130px;
}

/* Grey variant */
.about-text.grey-text p{
  color:#000;             /* grey color */
}

/* Tablet */
@media(max-width:1024px){
  .about-text.grey-text p{
    padding-left:60px;
    padding-right:60px;
    font-size:17px;
  }
}

/* Mobile */
@media(max-width:600px){
  .about-text.grey-text p{
    padding-left:0;
    padding-right:0;
    font-size:16px;
  }
}




/* 5 column grid */
.cards-section {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1500px;
  margin: auto;
  padding: 0 20px;
}

/* Card */
.card {
  position: relative;
  height: 490px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  cursor: pointer;
  background: #fff; /* placeholder before hover */
}

/* Image initially hidden */
.card-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Optional overlay on image */
.card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

/* Heading (always visible or can slide) */
.card-heading {
  position: absolute;
  bottom: 125px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #000;
  z-index: 3;
  transition: color 0.3s ease;
}

/* Content initially hidden below */
.card-content {
  position: absolute;
  bottom: 70px;
  width: 100%;
  text-align: center;
  color: #fff;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 3;
}

/* Icon always visible */
.card-icon {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 59px;
  color: #453D94;
  z-index: 4;
}

/* Hover effects */
.card:hover .card-image {
  opacity: 1; /* image becomes visible on hover */
}

.card:hover .card-heading {
  color: #ffffff;
}

.card:hover .card-content {
  opacity: 1;
  transform: translateY(0); /* slide content up */
}


/* Responsive */
@media (max-width: 480px) {
  .cards-section {
    grid-template-columns: 1fr;
  }

  /* ===== MOBILE: SHOW EVERYTHING & DISABLE ANIMATION ===== */
  .card-image {
    opacity: 1 !important;          /* show image */
    transform: none !important;     /* reset any transform */
    transition: none !important;    /* remove animation */
  }

  .card-image::after {
    background: rgba(0,0,0,0.35);  /* keep overlay if needed */
  }

  .card-heading {
    color: #ffffff !important;      /* heading visible */
    transition: none !important;    /* remove animation */
  }

  .card-content {
    opacity: 1 !important;          /* show content */
    transform: none !important;     /* reset transform */
    transition: none !important;    /* remove animation */
  }
}



/* ===== Layout ===== */
.section {
  display: flex;
  gap: 40px;
  padding: 32px;
  align-items: center;
  margin-top:50px;
}

.left {
  flex: 1;
}

.left h1 {
  font-size: 72px;
  margin-bottom: 12px;
  font-weight:400;
}

.left p {
  font-size: 18px;
  color: #000;
}

.right {
  flex: 1;
}

/* ===== Button Accordion ===== */
.item {
  background: #E5E5E5;
  border-radius: 14px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  transition: background 0.6s ease;
}

/* Button header */
.header {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  cursor: pointer; /* optional, indicate clickable */
}

/* Content → CENTER SPLIT OPEN */
.content {
  background: #453D94;
  color: white;
  text-align: center;

  transform: scaleY(0);
  transform-origin: center; /* opens from middle */
  max-height: 0;
  opacity: 0;

  transition: 
      transform 1.2s ease-in-out,  /* slower and smooth */
      opacity 1.2s ease-in-out, 
      max-height 1.2s ease-in-out, 
      padding 1.2s ease-in-out;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  line-height: 1.3;

  padding: 0 16px;          /* default collapsed padding */
  margin-bottom: 10px;
  margin-top: -60px;
}

/* Active state */
.item.active {
  background: #403D97;
}

.item.active .content {
  transform: scaleY(1);
  max-height: 70px;                 /* adjust for content */
  opacity: 1;
  padding: 40px 16px 40px 16px;     /* smooth expansion */
  margin-bottom: 10px;
}

/* Ensure multiple items open simultaneously */
.item + .item .content {
  transition-delay: 0s; /* no delay */
}


/* ===== Responsive ===== */
@media (max-width: 768px) {
  .section {
    flex-direction: column;
    padding: 30px;
  }
}
/* Base button */
.learn-more-btn {
  display: inline-block;
  padding: 12px 30px;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: #FF6A00;
  border-radius: 50px; /* fully rounded */
  box-shadow: 0 5px 15px rgba(255,106,0,0.4);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Hover effect */
.learn-more-btn:hover {
  background: oklach;
  transform: translateY(-3px); /* lift effect */
  box-shadow: 0 8px 20px rgba(255,106,0,0.5);
}

/* Optional: inner animated ripple on click */
.learn-more-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  background: oklach;
  border-radius: 50px;
  transform: scale(0);
  transition: transform 0.4s ease;
  pointer-events: none;
}

.learn-more-btn:active::after {
  transform: scale(1);
  transition: transform 0.2s ease;
}


.container {
    display: grid;
    grid-template-columns: 350px 1fr; /* wider left panel */
    gap: 40px; /* bigger gap between left and right */
    max-width: 1227px; /* wider max container */
    margin: auto;
	margin-top:128px;
  }

  .intro-box {
    background-color: #042722;
    color: white;
    padding: 60px 40px; /* more padding inside left box */
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .intro-box h2 {
    font-weight: 700;
    font-size: 2.2rem; /* bigger heading */
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }

  .intro-box h2 span {
    color: #453D94;
  }

  .learn-more-btn {
    width: fit-content;
    padding: 14px 35px; /* bigger button */
    background: white;
    border-radius: 50px;
    color: #453D94;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    text-align: center;
    margin-top: 2rem;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  

  .stats-grid {
    max-width: 860px; /* 400px * 2 + 40px gap */
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(2, 400px); /* wider cards */
    grid-template-rows: repeat(2, 260px); /* taller cards */
    gap: 40px;
  }

  .stat-card {
    background: white;
    border-radius: 16px;
    padding: 35px 30px; /* more padding */
    box-shadow: 0 6px 12px rgb(0 0 0 / 0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 400px;
    height: 260px;

    opacity: 0;
    transform: translateY(25px);
    animation: fadeUp 0.7s forwards;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .stat-card:hover {
    transform: translateY(0) scale(1.05);
    box-shadow: 0 12px 24px rgb(0 0 0 / 0.18);
    cursor: pointer;
  }

  .stat-card:nth-child(1) { animation-delay: 0.1s; }
  .stat-card:nth-child(2) { animation-delay: 0.35s; }
  .stat-card:nth-child(3) { animation-delay: 0.6s; }
  .stat-card:nth-child(4) { animation-delay: 0.85s; }

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

  .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    fill: #042722;
  }
  
  
	
  

  .stat-number {
    font-weight: 900;
    font-size: 2.8rem;
    margin-bottom: 12px;
  }

  .stat-text {
    font-size: 1.1rem;
    color: #444;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    body {
      margin: 30px 40px;
    }
    .container {
      max-width: 900px;
      grid-template-columns: 300px 1fr;
      gap: 30px;
    }
    .intro-box {
      padding: 45px 30px;
    }
    .intro-box h2 {
      font-size: 1.9rem;
    }
    .learn-more-btn {
      padding: 12px 30px;
      font-size: 1rem;
    }
    .stats-grid {
      max-width: 700px;
      grid-template-columns: repeat(2, 320px);
      grid-template-rows: repeat(2, 210px);
      gap: 30px;
    }
    .stat-card {
      width: 320px;
      height: 210px;
      padding: 28px 22px;
    }
    .icon {
      width: 44px;
      height: 44px;
      margin-bottom: 16px;
    }
    .stat-number {
      font-size: 2.3rem;
      margin-bottom: 10px;
    }
    .stat-text {
      font-size: 1rem;
    }
  }

  @media (max-width: 768px) {
    body {
      margin: 20px;
    }
    .container {
      grid-template-columns: 1fr;
      max-width: 100%;
      gap: 146px;
    }
    .intro-box {
      padding: 35px 20px;
      text-align: center;
    }
    .intro-box h2 {
      font-size: 1.7rem;
    }
    .learn-more-btn {
      margin: 0 auto;
      padding: 10px 25px;
      font-size: 0.95rem;
    }
    .stats-grid {
      max-width: 100%;
      margin: 0 auto;
      grid-template-columns: 1fr;
      grid-template-rows: none;
      gap: 25px;
    }
    .stat-card {
      width: 100% !important;
      height: auto !important;
      padding: 25px 20px;
    }
    .icon {
      width: 36px;
      height: 36px;
      margin-bottom: 12px;
    }
    .stat-number {
      font-size: 2rem;
      margin-bottom: 8px;
    }
    .stat-text {
      font-size: 0.95rem;
    }
  }
  
  
  
   /* Section */
    .cta-section {
      background-color: #AFB5E7;
      padding: 80px 15px;
	  margin-top:60px;
    }

    /* Container */
    .cta-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      gap: 60px;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    /* Left */
    .cta-left {
      flex: 1;
      min-width: 280px;
    }

    .cta-left h1 {
      font-size: 48px;
      line-height: 1.2;
      color: #ffffff;
      margin-bottom: 32px;
    }

    /* Animated Text */
    .fade-text {
      color: #453D94;
      display: inline-block;
      transition: opacity 0.6s ease-in-out;
    }

    .fade-out {
      opacity: 0;
    }

    /* Button */
    .btn-primary {
      display: inline-block;
      background-color: #453D94;
      color: #ffffff;
      padding: 14px 28px;
      border-radius: 999px;
      text-decoration: none;
      font-weight: 600;
      transition: background-color 0.3s ease;
    }

    .btn-primary:hover {
      background-color: #F54A00;
    }

    /* Right */
    .cta-right {
      flex: 1;
      min-width: 280px;
      max-width: 480px;
    }

    .cta-right h3 {
      color: #ffffff;
      font-size: 22px;
      margin-bottom: 12px;
    }

    .cta-right p {
      color: #d1e5df;
      font-size: 15px;
      margin-bottom: 20px;
      line-height: 1.6;
    }

    /* Newsletter Form */
    .newsletter-form {
      display: flex;
      gap: 12px;
    }

    .newsletter-form input {
      flex: 1;
      padding: 12px 16px;
      border-radius: 8px;
      border: 1px solid #b6d2cb;
      outline: none;
      font-size: 14px;
    }

    .newsletter-form button {
      background-color: #453D94;
      color: #ffffff;
      border: none;
      padding: 12px 20px;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 600;
      transition: background-color 0.3s ease;
    }

    .newsletter-form button:hover {
      background-color: #e66f00;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .cta-container {
        flex-direction: column;
        align-items: flex-start;
      }

      .cta-left h1 {
        font-size: 36px;
      }

      .newsletter-form {
        flex-direction: column;
      }

      .newsletter-form button {
        width: 100%;
      }
    }
	
	
	/* Footer */
.footer {
  background: #00003E;
  color: #ffffff;
  padding: 60px 24px 30px;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
}

/* Top Section – 5 Columns */
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 0.8fr;
  gap: 40px;
  margin-bottom: 50px;
}

/* Logo */
.footer-logo img {
  max-width: 150px;
}

/* Footer Columns */
.footer-col h4 {
  font-size: 16px;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #453D94;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ff7a00;
}

/* Follow Us */
.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  background: #364153;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.social-icons a:hover {
  background: #4A5565;
}

/* Bottom Section */
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  border-top: 1px solid #1e5b4c;
  padding-top: 20px;
}

/* Copyright */
.footer-bottom p {
  font-size: 13px;
  color: #d3e6df;
}



/* Links */
.footer-links {
  justify-self: end;
}

.footer-links a {
  color: #ffffff;
  font-size: 13px;
  text-decoration: none;
  margin-left: 12px;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-self: center;
  }
}

@layer demo {

  :root {
    --scroll-height: 150svh;
    --gap-base: 10px;
    --size-base: 400px;
  }

  body1 {
    min-height: var(--scroll-height);
    margin: 0;
  }

  @property --gap { syntax: "<length>"; inherits: true; initial-value: 0; }
  @property --scale { syntax: "<number>"; inherits: true; initial-value: 1; }
  @property --x { syntax: "<percent>"; inherits: true; initial-value: 0; }
  @property --y { syntax: "<percent>"; inherits: true; initial-value: 0; }
  @property --text-opacity { syntax: "<number>"; inherits: true; initial-value: 1; }
  @property --mouse-rotate { syntax: "<angle>"; inherits: true; initial-value: 0deg; }
  @property --mouse-w { syntax: "<length>"; inherits: true; initial-value: 600px; }

  .wrapper1 {
    --gap: 1rem;
    --x: 0;
    --scale: 1;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100svh;

    display: grid;
    grid-template-columns: 1fr 2fr var(--size-base) 2fr 1fr;
    grid-template-rows: 1fr var(--size-base) 1fr;
    grid-template-areas:
      "one two two three four"
      "one six center three eight"
      "five six seven seven eight";
    gap: var(--gap);
    background-color: #ffffff;
    z-index: 1;
  }

  /* Hero boxes */
  #us-box1 { grid-area: one; --x: -500%; --y: -200%; }
  #us-box2 { grid-area: two; --x: -75%; --y: -200%; }
  #us-box3 { grid-area: three; --x: 200%; --y: 0; }
  #us-box4 { grid-area: four; --x: 500%; --y: -200%; }
  #us-box5 { grid-area: five; --x: -500%; --y: 100%; }
  #us-box6 { grid-area: six; --x: -200%; --y: 0; }
  #us-box7 { grid-area: seven; --x: 75%; --y: 200%; }
  #us-box8 { grid-area: eight; --x: 500%; --y: 200%; }

  .wrapper1 div {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    animation-name: animate-boxes;
    animation-timing-function: linear;
    animation-fill-mode: both;
    animation-timeline: scroll();
    animation-duration: 1ms;
  }

  /* Center text */
  #us-center {
    grid-area: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    place-content: center;
    width: 100vw;
    height: 100svh;

    animation-name: animate-center;
    animation-timing-function: linear;
    animation-fill-mode: both;
    animation-timeline: scroll();
    animation-duration: 1ms;
	
  }

  #us-center > hgroup {
    font-weight: 300;
    opacity: var(--text-opacity, 1);
    display: var(--text-display, block);
    position: absolute;
    bottom: 50px;
    left: 20px;
    text-align: left;
    color: white;
  }

  @keyframes animate-center {
    25%, 65% {
      
      --text-opacity: 0;
      width: var(--mouse-w);
      height: var(--mouse-w);
    }
    70% { --text-display: none; }
    95% { --mouse-rotate: 0deg; }
    100% {
      --mouse-w: calc(var(--size-base));
      --text-display: none;
      --mouse-rotate: 180deg;
      width: var(--mouse-w);
      height: var(--mouse-w);
    }
  }

  @keyframes animate-boxes {
    0%, 30% { translate: var(--x) var(--y); }
    100% { translate: 0; }
  }

}

@layer base {
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { background: #fff; font-family: 'Barlow', sans-serif; margin: 0; }

  .msg-supports {
    
    top: 50px;
    width: 100%;
    display: block;
    z-index: 9999;
    color: white;
    background: red;
    margin: 0;
    padding: 1rem;
    text-align: center;
    border-block-end: 1px solid rgba(255 255 255 / .5);
  }

  @supports (animation-timeline: auto) {
    .msg-supports { display: none; }
  }
}
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 10px 0;
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
}

.footer-col ul li i {
  margin-right: 10px;
  color: #453D94; /* icon color */
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.contact-section {
  padding: 60px 40px;
  background-color: #f9f9f9;
  font-family: 'Barlow', sans-serif;
  color: #222;
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* FORM SIDE */
.contact-form {
  flex: 1 1 45%;
  min-width: 280px;
}

.contact-form h2 {
  margin-bottom: 25px;
  font-size: 28px;
  font-weight: 700;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  resize: vertical;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff5722;
  outline: none;
}

.contact-form button {
  margin-top: 15px;
  background-color: #403D95;
  border: none;
  padding: 14px;
  color: white;
  font-weight: 700;
  font-size: 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

/* INFO SIDE */
.contact-info {
  flex: 1 1 45%;
  min-width: 280px;
}

.contact-info h2 {
  margin-bottom: 25px;
  font-size: 28px;
  font-weight: 700;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #444;
}

.info-item .icon {
  font-size: 24px;
  color: #ff5722;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
  .contact-form,
  .contact-info {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .contact-form h2,
  .contact-info h2 {
    text-align: center;
  }
  .info-item {
    justify-content: center;
  }
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Barlow', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

/* STICKY */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
}

/* TOP BAR */
.topbar {
  background: #453D94;
  font-size: 14px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
}

/* ===== HIDE TOPBAR ON MOBILE ===== */
@media (max-width: 768px) {
  .topbar {
    display: none;
  }
}

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

body {
  margin: 0;
  font-family:'Barlow', sans-serif;
}
/* ---------- DROPDOWN ---------- */

/* Wrap Services link in a dropdown */
.col-menu .dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown button (your Services link) */
.col-menu .dropdown .dropbtn {
  cursor: pointer;
}

/* Dropdown content hidden by default */
.col-menu .dropdown .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff; /* same as menu background */
  min-width: 160px;
  flex-direction: column;
  border: 1px solid #eee;
  z-index: 1000;
}

/* Dropdown links */
.col-menu .dropdown .dropdown-content a {
  padding: 10px 20px;
  display: block;
  color: #222; /* same as menu links */
  text-decoration: none;
}

.col-menu .dropdown .dropdown-content a:hover {
  background-color: #f4b41a; /* highlight on hover */
  color: #fff;
}

/* Show dropdown on hover (desktop) */
.col-menu .dropdown:hover .dropdown-content {
  display: flex;
}

/* ---------- MOBILE DROPDOWN ---------- */
@media (max-width: 768px) {
  /* Prevent hover on mobile */
  .col-menu .dropdown:hover .dropdown-content {
    display: none;
  }

  /* Make dropdown content relative inside mobile menu */
  .col-menu .dropdown .dropdown-content {
    position: relative;
    border: none;
    box-shadow: none;
  }

  /* Active class to show dropdown on mobile */
  .col-menu .dropdown .dropdown-content.active {
    display: flex;
    flex-direction: column;
  }
}

/* HEADER */
.header {
  width: 100%;
  border-bottom: 1px solid #eee;
}

.header-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 10px 20px; /* controlled padding */
}

/* LOGO */
.col-logo {
  justify-self: start;
}

.col-logo img {
  max-height: 60px;
  display: block;
}

/* MENU */
.col-menu {
  display: flex;
  justify-content: center;
  gap: 27px;
}

.col-menu a {
  text-decoration: none;
  font-weight: 600;
  color: #222;
  font-size:17px;
  font-family: 'Barlow', sans-serif;
}

.col-menu a:hover {
  color: #f4b41a;
}

/* BUTTON */
.col-bttn {
  justify-self: end;
}



.btn-second {
  text-decoration: none;
  background: #453D94;
  color: #fff;
  padding: 13px 21px;
  border-radius: 24px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .col-bttn {
    display: none;
  }
}


/* MOBILE MENU ICON */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .header-inner {
    grid-template-columns: 1fr auto;
    padding: 10px 15px;
  }

  .col-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 15px 0;
    border-top: 1px solid #eee;
  }

  .col-menu.active {
    display: flex;
  }

  .col-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }
}


.people-section {
  padding: 70px 20px;
  background: #F6F6F6;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

/* ===== Images ===== */
.image-area {
  flex: 1;
  display: flex;
  gap: 20px;
  position: relative;
}

.img-small {
  width: 180px;
  border-radius: 6px;
  object-fit: cover;
}

.img-wrapper {
  position: relative;
}

.img-large {
  width: 330px;
  border-radius: 6px;
  object-fit: cover;
}

/* Hover Animation */
.img-small,
.img-large {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.img-small:hover,
.img-large:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* ===== Badge ===== */
.badge {
  position: absolute;
  bottom: 20px;
  right: -30px;
  background: #0b1c2d;
  color: #fff;
  padding: 20px 25px;
  text-align: center;
  border-radius: 10px;
  animation: pulse 2.5s infinite;
}

.badge span {
  font-size: 14px;
}

.badge strong {
  display: block;
  font-size: 32px;
  margin: 5px 0;
}

.badge small {
  font-size: 13px;
}

/* Pulse Animation */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* ===== Content ===== */
.content-area {
  flex: 1;
}

.content-area h6 {
  color: #453D94;
  font-size: 13px;
  letter-spacing: 1px;
}

.content-area h2 {
  font-size: 38px;
  margin: 10px 0 15px;
}

.content-area p {
  color: #000;
  line-height: 1.6;
}

.content-area h4 {
  margin-top: 20px;
}

.content-area ul {
  margin-top: 10px;
  padding-left: 18px;
}

.content-area li {
  margin-bottom: 10px;
}

/* ===== Scroll Animations ===== */
.fade-left,
.fade-right,
.fade-up {
  opacity: 0;
  transition: all 0.9s ease;
}

.fade-left {
  transform: translateX(-50px);
}

.fade-right {
  transform: translateX(50px);
}

.fade-up {
  transform: translateY(40px);
}

.show {
  opacity: 1;
  transform: translate(0);
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .container {
    flex-direction: column;
	margin-top:38px;
  }

  .image-area {
    justify-content: center;
  }

  .badge {
    right: 10px;
  }

  .content-area h2 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .image-area {
    flex-direction: column;
    align-items: center;
  }

  .img-small,
  .img-large {
    width: 100%;
    max-width: 320px;
  }

  .badge {
    position: static;
    margin-top: 15px;
  }
}



/* ===== Section ===== */
.progress-section {
  background: linear-gradient(135deg, #453D94, #8b1d23);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

/* ===== Content ===== */
.progress-section h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.progress-section p {
  max-width: 800px;
  margin: auto;
  line-height: 1.6;
  font-size: 15px;
  opacity: 0.95;
}

/* ===== Stats Grid ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 60px auto 30px;
}

.stat-box {
  text-align: center;
}

/* Icon Circle */
.icon-circle {
  width: 90px;
  height: 90px;
  border: 2px dashed rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto auto 20px;
}

.icon-circle svg {
  width: 36px;
  height: 36px;
  fill: #fff;
}

/* Numbers */
.stat-number {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 5px;
}

.stat-text {
  font-size: 14px;
  opacity: 0.9;
}

/* Bottom Text */
.bottom-text {
  margin-top: 30px;
  font-size: 14px;
  opacity: 0.9;
}

/* ===== Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

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

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .progress-section h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .stats {
    grid-template-columns: 1fr;
  }

  .progress-section h2 {
    font-size: 26px;
  }
}

/* MARQUEE WRAPPER */
.services-marquee {
  width: 100%;
  overflow: hidden;
  background: #111;
  padding: 3px 0;
}

/* TRACK */
.marquee-track {
  display: flex;
  gap: 50px;
  width: max-content;
  animation: scroll 20s linear infinite;
}

/* SERVICE ITEM */
.marquee-track span {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  white-space: nowrap;
}

/* ANIMATION */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .marquee-track {
    animation-duration: 15s;
    gap: 30px;
  }

  .marquee-track span {
    font-size: 25px;
  }
}



/* SECTION */
.info-section {
  padding: 60px 20px;
  background: #F6F6F6;
}

/* CONTAINER */
.info-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT CONTENT */
.info-content h2 {
  font-size: 47px;
  margin-bottom: 25px;
  color: #222;
}

.info-point {
  margin-bottom: 20px;
}

.info-point h4 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #000;
}

.info-point p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* RIGHT IMAGE */
.info-image img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

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

  .info-content h2 {
    font-size: 26px;
  }
}
.info-point {
  display: flex;
  gap: 15px;
  margin-bottom: 22px;
}

.info-icon {
  min-width: 42px;
  height: 42px;
  background: #453D94;
  color: #000;
  font-size: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-text h4 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #000;
}

.info-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #000;
}

/* Mobile */
@media (max-width: 768px) {
  .info-point {
    gap: 12px;
  }

  .info-icon {
    min-width: 38px;
    height: 38px;
    font-size: 18px;
  }
}


.map-wrapper {
  width: 100%;
  position: relative;
  padding-bottom: 28.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
}

.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Optional: mobile spacing */
@media (max-width: 768px) {
  .map-wrapper {
    padding-bottom: 65%;
  }
}



.network-map-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Responsive image */
.network-map-image {
  width: 100%;        /* full width */
  height: auto;       /* no cut, maintain ratio */
  display: block;     /* remove unwanted gaps */
}

/* Overlay */
.network-map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2rem;
  pointer-events: none;
}

/* Responsive text */
@media (max-width: 768px) {
  .network-map-overlay {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .network-map-overlay {
    font-size: 1.2rem;
  }
}

.freight-section {
  padding: 60px 20px;
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #0b2c6d;
}

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

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

.freight-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

.freight-card h3 {
  font-size: 30px;
  margin-bottom: 12px;
  font-weight: 700;
}

.freight-card p {
  font-size: 18px;
  line-height: 1.7;
  color: #000000;
}

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

/* Mobile */
@media (max-width: 600px) {
  .freight-grid {
    grid-template-columns: 1fr;
  }

  .freight-card img {
    height: 200px;
  }
}


.values {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.values-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 700;
}

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

.value-card {
  background: #ffffff;
  padding: 40px 25px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-card img {
  width: 116px;
  margin-bottom: 20px;
}

.value-card h3 {
  color: #000000;
  font-size: 29px;
  margin-bottom: 15px;
}

.value-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

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

/* Mobile */
@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .values-title {
    font-size: 2rem;
  }
}




