body{
    overflow-x:hidden;
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
}


/*HEADING*/
.fancy-heading {
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase;   /* 👈 THIS MAKES ALL CAPS */
  letter-spacing: 1.5px;       /* 👈 adds premium spacing */
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

/* UNDERLINE */
.fancy-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #BC2623;
  transform: translateX(-50%);
  transition: width 0.4s ease;
}

/* ANIMATION */
.section-title[data-aos].aos-animate .fancy-heading::after {
  width: 60%;
}

.section-title1[data-aos].aos-animate .fancy-heading::after {
  width: 60%;
}

/* HEADER */
.header {
    width: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;

    display: flex;
    justify-content: center;
}

/* Container added */
.header .container {
    width: 90%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ===== LOGO SIZE FIX ===== */
.logo img {
    height: 65px; /* Increased size */
    width: auto;
}

/* ===== NAVBAR ALIGNMENT ===== */
.navbar ul {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.navbar ul li {
    list-style: none;
}

.navbar ul li a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
}

.navbar ul li a:hover {
    color: #ff3b3b;
}

/* ===== MOBILE ===== */
.menu-toggle {
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100%;
        background: #0f2052;
        transition: 0.3s;
        padding-top: 60px;
    }

    .navbar.active {
        right: 0;
    }

    .navbar ul {
        flex-direction: column;
        gap: 20px;
    }
}


/* HERO */
/* HERO BASE */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* BACKGROUND */
.slide {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;

  /* 🔥 ZOOM ANIMATION */
  animation: zoomBg 8s ease-in-out infinite alternate;
}

/* 🔥 BACKGROUND ZOOM */
@keyframes zoomBg {
  0% { background-size: 100%; }
  100% { background-size: 110%; }
}

/* REMOVE OLD OVERLAY */
.overlay {
  display: none;
}

/* LEFT CONTENT BOX */
.hero-content {
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  padding: 50px;
  max-width: 520px;
  margin-left: 80px;
  border-radius: 8px;
  color: #fff;

  /* 🔥 ENTRY ANIMATION */
  animation: slideFade 1s ease forwards;
}

/* TEXT ANIMATION */
.hero-content h4 {
  color: #BC2623;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

.hero-content h1 {
  font-size: 55px;
  margin: 10px 0;
}

.hero-content h1 span {
  color: #BC2623;
}

/* 🔥 TEXT REVEAL */
.hero-content h1,
.hero-content p {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.hero-content p {
  animation-delay: 0.4s;
}

/* BUTTONS */
.hero-btns {
  margin-top: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.6s;
}

/* BUTTON STYLE */
.btn {
  padding: 12px 28px;
  border-radius: 30px;
  margin-right: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* PRIMARY */
.btn.primary {
  background: #BC2623;
  color: #fff;
}

/* 🔥 BUTTON HOVER ANIMATION */
.btn.primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(188,38,35,0.4);
}

/* SECONDARY */
.btn.secondary {
  border: 1px solid #fff;
  color: #fff;
}

.btn.secondary:hover {
  background: #fff;
  color: #111;
  transform: translateY(-3px);
}

/* 🔥 FADE UP ANIMATION */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 🔥 SLIDE ENTRY */
@keyframes slideFade {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* LEFT DARK GRADIENT */
.slide::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  left: 0;
  top: 0;

  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75),
    transparent
  );
}

/* MOBILE */
@media(max-width:768px){
  .hero-content {
    margin: 20px;
    padding: 25px;
  }

  .hero-content h1 {
    font-size: 30px;
  }
}
.menu-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
    opacity:0;
    visibility:hidden;
    transition:0.3s;
}

.menu-overlay.active{
    opacity:1;
    visibility:visible;
}

.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:768px){
    .hero h1{font-size:28px;}
    .header{padding:15px;}
}

@media(max-width:768px){

    .menu-toggle{
        display:block;
        color:#fff;
        z-index:100;
    }

    .navbar{
        position:fixed;
        top:0;
        right:-100%;
        width:75%;
        height:100vh;
        background:#111;
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        transition:0.4s ease;
    }

    .navbar ul{
        flex-direction:column;
        gap:25px;
        text-align:center;
    }

    .navbar a{
        font-size:18px;
    }

    .navbar.active{
        right:0;
    }
}


/* ABOUT SECTION */

/* SECTION */

.section-title1 {
 
  margin-bottom: 60px;
}

.about-vm {
  padding: 80px 20px;
}

/* CONTAINER */
.avm-container {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.avm-left {
  flex: 1;
  min-width: 300px;
}

.avm-left h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.avm-left p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.avm-highlight {
  color: #BC2623;
  font-weight: 600;
}

/* RIGHT SIDE */
.avm-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
  min-width: 300px;
}

/* CARD */
.avm-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

/* LEFT BORDER ACCENT */
.avm-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: #BC2623;
}

/* HOVER */
.avm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(188,38,35,0.25);
}

/* HEADINGS */
.avm-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

/* TEXT */
.avm-card p {
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .avm-container {
    flex-direction: column;
    text-align: center;
  }

  .avm-left h2 {
    font-size: 28px;
  }

  .avm-card {
    text-align: left;
  }
}

/*GROWTH SECTION*/

/* SECTION */
.growth-section {
  padding: 80px 20px;
  background: #f9fafb;
}

/* CONTAINER */
.growth-container {
  display: flex;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
  align-items: center;
  flex-wrap: wrap;
}

/* LEFT */
.growth-left {
  flex: 1;
  min-width: 300px;
}

.growth-left h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

.growth-left p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* MAP */
.growth-map {
  flex: 1;
  position: relative;
  min-width: 300px;
}

.growth-map img {
  width: 100%;
  filter: grayscale(100%);
  opacity: 0.6;
}

/* DOTS */
.dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #BC2623;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(188,38,35,0.7);
}

/* LOCATIONS (adjust if needed) */
.india { top: 45%; left: 52%; }
.malaysia { top: 50%; left: 60%; }
.malawi { top: 65%; left: 48%; }

/* LINES */
.map-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.map-lines line {
  stroke: #BC2623;
  stroke-width: 1.5;
  stroke-dasharray: 5;
  animation: dash 4s linear infinite;
}

@keyframes dash {
  to {
    stroke-dashoffset: -20;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .growth-container {
    flex-direction: column;
  }

  .growth-left h2 {
    font-size: 26px;
  }
}


/*LEADERSHIP SECTION*/

/* SECTION */
.leader-section {
  padding: 80px 20px;
  background: #f9fafb;
}

/* TITLE */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 34px;
}

.section-title p {
  color: #666;
}

/* BLOCK */
.leader-block {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

/* REVERSE */
.leader-block.reverse {
  flex-direction: row-reverse;
}

/* IMAGE */
.leader-img {
  flex: 1;
}

.leader-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* CONTENT */
.leader-content {
  flex: 1;
}

.leader-content h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

/* HIGHLIGHT TEXT */
.leader-highlight {
  color: #BC2623;
  font-weight: 500;
  margin-bottom: 15px;
}

/* TEXT */
.leader-content p {
  color: #555;
  line-height: 1.8;
}

/* FOUNDER BOX */
.leader-highlight-box {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(188,38,35,0.2);
}

.leader-highlight-box h3 {
  margin-bottom: 15px;
}

.leader-highlight-box p {
  color: #444;
  font-style: italic;
  line-height: 1.8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .leader-block {
    flex-direction: column;
    text-align: center;
  }

  .leader-block.reverse {
    flex-direction: column;
  }

  .leader-content h3 {
    font-size: 22px;
  }
}

/* ROLE */
.leader-role {
  display: block;
  color: #BC2623;
  font-weight: 600;
  margin-bottom: 15px;
}

/* NAME */
.leader-content h3 {
  font-size: 28px;
  margin-bottom: 5px;
}

/* IMAGE IMPROVEMENT */
.leader-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  transition: 0.4s;
}

/* HOVER EFFECT */
.leader-img img:hover {
  transform: scale(1.03);
}

/* TEXT SPACING */
.leader-content p {
  margin-bottom: 12px;
}

/* BOX */
.leader-highlight-box {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 25px 70px rgba(0,0,0,0.08);
  max-width: 900px;
  margin: auto;
  position: relative;
}

/* TITLE */
.leader-highlight-box h3 {
  font-size: 28px;
  margin-bottom: 25px;
}

/* MAIN QUOTE */
.quote-main {
  font-size: 20px;
  font-weight: 600;
  color: #BC2623;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* SUB QUOTE */
.quote-sub {
  font-size: 16px;
  font-style: italic;
  margin-top: 15px;
  color: #444;
}

/* TEXT */
.leader-highlight-box p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* SIGNATURE */
.founder-sign {
  margin-top: 25px;
}

.founder-sign strong {
  display: block;
  font-size: 16px;
}

.founder-sign span {
  color: #BC2623;
  font-size: 14px;
}

/* OPTIONAL QUOTE ICON */
.leader-highlight-box::before {
  content: "“";
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 60px;
  color: rgba(188,38,35,0.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .leader-highlight-box {
    padding: 30px 20px;
  }

  .quote-main {
    font-size: 18px;
  }
}


/*NEXT SECTION*/

/* SECTION TITLE */
.section-title{
  text-align:center;
  margin-bottom:50px;
}
.section-title h2{
  font-size:34px;
}
.section-title p{
  color:#666;
}

/* SCROLL ANIMATION */
.reveal{
  opacity:1;
  /*transform:translateY(40px);*/
  transition:all 0.8s ease;
}
.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* ================= CORE VALUES ================= */
.core-values{
  padding:80px 20px;
}

.values-grid{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  justify-content:center;
}

.value-card{
  background:#fff;
  padding:25px;
  border-radius:16px;
  width:280px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  position:relative;
  overflow:hidden;
  transition:0.4s;
}

/* top line animation */
.value-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:0%;
  height:3px;
  background:#BC2623;
  transition:0.4s;
}

.value-card:hover::before{
  width:100%;
}

.value-card:hover{
  transform:translateY(-6px);
   box-shadow: 0 25px 60px rgba(188,38,35,0.25);
}

/* ================= PROCESS ================= */
.process-section{
  padding:80px 20px;
  background:#fff;
}

.process-flow{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
}

.step{
  background:#f9fafb;
  padding:15px 20px;
  margin:10px;
  border-radius:12px;
  text-align:center;
  box-shadow:0 8px 25px rgba(0,0,0,0.05);
  transition:0.3s;
  animation:float 6s ease-in-out infinite;
}

.step:hover{
  transform:translateY(-5px);
}

.step span{
  display:block;
  font-size:13px;
}

@keyframes float{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-6px);}
}

/* animated flow line */
.flow-line{
  width:100%;
  height:40px;
}

.flow-line path{
  stroke:#BC2623;
  stroke-width:2;
  fill:none;
  stroke-dasharray:8;
  animation:flowMove 6s linear infinite;
}

@keyframes flowMove{
  to{stroke-dashoffset:-100;}
}

.future-box{
  text-align:center;
  color:#BC2623;
  font-weight:600;
  margin:20px 0;
}

/* ================= MODEL ================= */
.model-section{
  padding:80px 20px;
}

.model-grid{
  display:flex;
  gap:25px;
  justify-content:center;
  flex-wrap:wrap;
}

.model-card{
  background:#fff;
  padding:25px;
  border-radius:16px;
  width:300px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  position:relative;
  transition:0.4s;
}

.model-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: #BC2623;
    transition: 0.4s;
}

.model-card:hover::after{
  opacity:1;
}

.model-card:hover::before {
    width: 100%;
}

.model-card:hover{
  transform:translateY(-8px);
   box-shadow: 0 25px 60px rgba(188,38,35,0.25);
}

/* RESPONSIVE */
@media(max-width:768px){
  .values-grid,.model-grid{
    flex-direction:column;
    align-items:center;
  }
}

/* PROCESS FLOW CONTAINER */
.process-flow {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 40px auto;
}

/* CENTER LINE (INSIDE DIV) */
.process-flow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 3px;
  width: 0%;
  background: #BC2623;
  transform: translateY(-50%);
  z-index: 0;

  /* animation */
  animation: lineGrow 3s ease forwards;
}

/* LINE ANIMATION */
@keyframes lineGrow {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.step {
  position: relative;
  z-index: 1; /* above line */

  opacity: 1;
  transform: translateY(20px);
  animation: stepFade 0.5s ease forwards;
}

/* DELAYS (SYNC WITH LINE) */
.process-flow .step:nth-child(1) { animation-delay: 0.5s; }
.process-flow .step:nth-child(2) { animation-delay: 1s; }
.process-flow .step:nth-child(3) { animation-delay: 1.5s; }
.process-flow .step:nth-child(4) { animation-delay: 2s; }

/* SECOND ROW */
.process-flow:nth-of-type(2) .step:nth-child(1) { animation-delay: 2.8s; }
.process-flow:nth-of-type(2) .step:nth-child(2) { animation-delay: 3.3s; }
.process-flow:nth-of-type(2) .step:nth-child(3) { animation-delay: 3.8s; }
.process-flow:nth-of-type(2) .step:nth-child(4) { animation-delay: 4.3s; }
.process-flow:nth-of-type(2) .step:nth-child(5) { animation-delay: 4.8s; }
.process-flow:nth-of-type(2) .step:nth-child(6) { animation-delay: 5.3s; }
.process-flow:nth-of-type(2) .step:nth-child(7) { animation-delay: 5.8s; }
.process-flow:nth-of-type(2) .step:nth-child(8) { animation-delay: 6.3s; }

@keyframes stepFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*.step::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #BC2623;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px rgba(188,38,35,0.6);
}*/


/* PRODUCT PREVIEW SECTIONS */

/* SECTION */
.product-section{
    padding:100px 50px;
    background:#fff;
    text-align:center;
}

/* TITLE */
.section-title h5{
    color:#ff3b3b;
    letter-spacing:2px;
}
.section-title h2{
    margin:10px 0 50px;
}

/* GRID */
.product-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    max-width:1200px;
    margin:auto;
}

/* CARD */
.product-card{
    position:relative;
    overflow:hidden;
    border-radius:12px;
    cursor:pointer;
    transform:translateY(40px);
    opacity:0;
    transition:0.8s;
}

/* IMAGE */
.product-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:0.5s;
}

/* OVERLAY */
.product-overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:20px;
       background: linear-gradient(to top, rgba(255, 59, 59, 0.9), transparent);
    color:#fff;
    text-align:left;
    transform:translateY(100%);
    transition:0.4s;
}

/* HOVER EFFECT */
.product-card:hover img{
    transform:scale(1.1);
}

.product-card:hover .product-overlay{
    transform:translateY(0);
}

/* SHOW ANIMATION */
.product-card.show{
    opacity:1;
    transform:translateY(0);
}

/* RESPONSIVE */
@media(max-width:768px){
    .product-section{
        padding:70px 20px;
    }
}

/* WHY CHOOSE US SECTION */

.why-grid-section{
    padding:100px 50px;
    background:#f9f9f9;
}

.why-grid-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    max-width:1200px;
    margin:auto;
    flex-wrap:wrap;
}

/* LEFT TEXT */
.why-text{
    flex:1;
}

.why-text h5{
    color:#ff3b3b;
    letter-spacing:2px;
}

.why-text h2{
    font-size:34px;
    margin:15px 0;
}

.why-text p{
    color:#555;
    margin-bottom:20px;
}

.why-text ul li{
    margin:10px 0;
}

/* BUTTON */
.why-text button{
    margin-top:15px;
    padding:12px 25px;
    border:none;
    background:#ff3b3b;
    color:#fff;
    cursor:pointer;
    transition:0.3s;
}

.why-text button:hover{
    background:#000;
}

/* IMAGE GRID */
.why-images{
    flex:1;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

/* IMAGE BOX */
.img-box{
    overflow:hidden;
    border-radius:10px;
    opacity:1;
    transform:translateY(0);
}

.img-box img{
    width:100%;
    height:200px;
    object-fit:cover;
    transition:0.5s;
}

/* HOVER EFFECT */
.img-box:hover img{
    transform:scale(1.1);
}

/* ANIMATION ACTIVE */
.img-box.show{
    transform:translateY(0);
    opacity:1;
}

/* RESPONSIVE */
@media(max-width:768px){

    .why-grid-container{
        flex-direction:column;
        text-align:center;
    }

    .why-text h2{
        font-size:26px;
    }

    .why-images{
        grid-template-columns:1fr 1fr;
    }

    .img-box img{
        height:150px;
    }
}

@media(max-width:480px){

    .why-images{
        grid-template-columns:1fr;
    }
}


/*CONTACT US SECTION*/

.contact-section {
  padding: 80px 20px;
  background: #f8f9fc;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 34px;
  color: #222;
}

.section-title .sub-text {
  color: #666;
  font-size: 14px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}

.contact-info {
  display: grid;
  gap: 20px;
}

.info-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card h3 {
  color: #BC2623;
  margin-bottom: 10px;
}

.whatsapp a {
  display: inline-block;
  margin-top: 10px;
  background: #25D366;
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.map iframe {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 10px;
}

.contact-form {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.contact-form button {
  width: 100%;
  background: #BC2623;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.social-links {
  text-align: center;
}

.icons a {
  font-size: 20px;
  margin: 6px;
  display: inline-block;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

/* FOOTER SECTION */

.footer{
    background:#0f172a;
    color:#fff;
    padding-top:70px;
}

/* CONTAINER */
.footer-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
    max-width:1200px;
    margin:auto;
    padding:0 40px;
}

.footer-logo img{
    width: 150px;       /* adjust size */
    height: auto;
    display: block;
}

/* LOGO */
.footer-logo{
    color:#ff3b3b;
}

/* TEXT */
.footer-col p{
    color:#cbd5e1;
    margin-top:10px;
}

/* LINKS */
.footer-col ul{
    list-style:none;
    margin-top:10px;
}
.footer-col ul li{
    margin:8px 0;
}
.footer-col ul li a{
    text-decoration:none;
    color:#cbd5e1;
    transition:0.3s;
}
.footer-col ul li a:hover{
    color:#ff3b3b;
    padding-left:5px;
}

/* SOCIAL */
.socials{
    margin-top:15px;
}
.socials span{
    display:inline-block;
    margin-right:10px;
    font-size:18px;
    cursor:pointer;
    transition:0.3s;
}
.socials span:hover{
    color:#ff3b3b;
}

/* BOTTOM */
.footer-bottom{
    text-align:center;
    padding:20px;
    border-top:1px solid rgba(255,255,255,0.1);
    margin-top:40px;
    font-size:14px;
}

/* ANIMATION */
.footer-col{
    opacity:0;
    transform:translateY(40px);
    transition:0.8s;
}
.footer-col.show{
    opacity:1;
    transform:translateY(0);
}

/* RESPONSIVE */
@media(max-width:768px){
    .footer-container{
        padding:0 20px;
        text-align:center;
    }
}



/*ABOUT US PAGE */

/*WHO WE ARE */

/* SECTION */
.who-section{
    padding:100px 50px;
    background:#f9f9f9;
}

.who-container{
    display:flex;
    align-items:center;
    gap:50px;
    max-width:1200px;
    margin:auto;
    flex-wrap:wrap;
}

/* LEFT CONTENT */
.who-content{
    flex:1;
}

.who-content h5{
    color:#ff3b3b;
    letter-spacing:2px;
}

.who-content h2{
    font-size:34px;
    margin:15px 0;
}

.who-content p{
    color:#555;
    margin-bottom:15px;
}

/* BUTTON */
.who-content button{
    margin-top:10px;
    padding:12px 25px;
    border:none;
    background:#ff3b3b;
    color:#fff;
    cursor:pointer;
    transition:0.3s;
}

.who-content button:hover{
    background:#000;
}

/* RIGHT VISUAL */
.who-visual{
    flex:1;
    position:relative;
}

.who-visual img{
    width:100%;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

/* STATS GRID */
.who-stats{
    position:absolute;
    bottom:-30px;
    left:20px;
    right:20px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

/* STAT BOX */
.stat-box{
    background:#fff;
    padding:15px;
    border-radius:8px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    transition:0.3s;
}

.stat-box h3{
    color:#ff3b3b;
}

.stat-box:hover{
    transform:translateY(-5px);
}

/* ANIMATION */
.who-content,
.who-visual{
    opacity:0;
    transform:translateY(40px);
    transition:0.8s;
}

.who-content.show,
.who-visual.show{
    opacity:1;
    transform:translateY(0);
}

/* RESPONSIVE */
@media(max-width:768px){

    .who-container{
        flex-direction:column;
        text-align:center;
    }

    .who-content h2{
        font-size:26px;
    }

    .who-stats{
        position:static;
        margin-top:20px;
    }
}


/* WHAT WE DO */

.services-section{
    padding:100px 50px;
    background:#fff;
    text-align:center;
}

/* TITLE */
.section-title h5{
    color:#ff3b3b;
    letter-spacing:2px;
}
.section-title h2{
    margin:10px 0 50px;
}

/* CONTAINER */
.services-container{
    display:flex;
    gap:50px;
    max-width:1200px;
    margin:auto;
    align-items:center;
    flex-wrap:wrap;
}

/* TIMELINE */
.services-timeline{
    flex:1;
    border-left:3px solid #ff3b3b;
    padding-left:20px;
}

.timeline-item{
    margin-bottom:30px;
    position:relative;
    opacity:0;
    transform:translateX(-30px);
    transition:0.6s;
}

.timeline-item span{
    position:absolute;
    left:-30px;
    top:0;
    background:#ff3b3b;
    color:#fff;
    width:25px;
    height:25px;
    border-radius:50%;
    font-size:12px;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* CARDS */
.services-cards{
    flex:1;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.service-card{
    background:#f9f9f9;
    padding:25px;
    border-radius:10px;
    text-align:left;
    transition:0.4s;
    opacity:0;
    transform:translateY(40px);
}

.service-card:hover{
    background:#ff3b3b;
    color:#fff;
    transform:translateY(-5px);
}

/* ANIMATION */
.timeline-item.show{
    opacity:1;
    transform:translateX(0);
}

.service-card.show{
    opacity:1;
    transform:translateY(0);
}

/* RESPONSIVE */
@media(max-width:768px){

    .services-container{
        flex-direction:column;
        text-align:left;
    }

    .services-cards{
        grid-template-columns:1fr;
    }
}



/*WHERE WE LOCATED*/

/* SECTION */
.location-section{
    padding:100px 50px;
    background:#f9f9f9;
    text-align:center;
}

/* TITLE */
.section-title h5{
    color:#ff3b3b;
    letter-spacing:2px;
}
.section-title h2{
    margin:10px 0 50px;
}

/* CONTAINER */
.location-container{
    display:flex;
    gap:40px;
    max-width:1200px;
    margin:auto;
    flex-wrap:wrap;
    align-items:center;
}

/* MAP */
.map-box{
    flex:1;
    min-height:350px;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    opacity:0;
    transform:translateX(-40px);
    transition:0.8s;
}

.map-box iframe{
    width:100%;
    height:100%;
}

/* INFO */
.location-info{
    flex:1;
    text-align:left;
    opacity:0;
    transform:translateX(40px);
    transition:0.8s;
}

.location-info h3{
    margin-bottom:10px;
}

.location-info p{
    color:#555;
    margin-bottom:20px;
}

/* CARDS */
.location-card{
    background:#fff;
    padding:15px;
    border-radius:8px;
    margin-bottom:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    transition:0.3s;
}

.location-card:hover{
    transform:translateY(-5px);
}

/* ANIMATION */
.map-box.show,
.location-info.show{
    opacity:1;
    transform:translateX(0);
}

/* RESPONSIVE */
@media(max-width:768px){

    .location-container{
        flex-direction:column;
        text-align:center;
    }

    .location-info{
        text-align:center;
    }

    .map-box{
        min-height:250px;
    }
}

/* SERVICE PAGE */

/*PRODUCT CATEGORIES*/

/* SECTION */
.categories-section{
    padding:100px 50px;
    background:#fff;
    text-align:center;
}

/* TITLE */
.section-title h5{
    color:#ff3b3b;
    letter-spacing:2px;
}
.section-title h2{
    margin:10px 0 50px;
}

/* GRID */
.categories-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
    max-width:1200px;
    margin:auto;
}

/* CARD */
.category-card{
    position:relative;
    overflow:hidden;
    border-radius:12px;
    height:220px;
    cursor:pointer;
    opacity:0;
    transform:translateY(40px);
    transition:0.8s;
}

/* IMAGE */
.category-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

/* OVERLAY */
.category-overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:20px;
    background:linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color:#fff;
    text-align:left;
    transition:0.4s;
}

/* HOVER EFFECT */
.category-card:hover img{
    transform:scale(1.1);
}

.category-card:hover .category-overlay{
    background:linear-gradient(to top, rgba(255,59,59,0.9), transparent);
}

/* ANIMATION */
.category-card.show{
    opacity:1;
    transform:translateY(0);
}

/* RESPONSIVE */
@media(max-width:768px){
    .categories-section{
        padding:70px 20px;
    }
}

/*PRODUCTS SECTION*/

/* SECTION */
.products-section{
    padding:100px 50px;
    background:#f9f9f9;
    text-align:center;
}

/* TITLE */
.section-title h5{
    color:#ff3b3b;
    letter-spacing:2px;
}
.section-title h2{
    margin:10px 0 50px;
}

/* GRID */
.products-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
    max-width:1200px;
    margin:auto;
}

/* CARD */
.product-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    transition:0.4s;
    opacity:1;
    transform:translateY(40px);
}

/* IMAGE */
.product-img{
    overflow:hidden;
}
.product-img img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:0.5s;
}

/* INFO */
.product-info{
    padding:20px;
    text-align:left;
}

.product-info h3{
    margin-bottom:10px;
}

.product-info p{
    font-size:14px;
    color:#555;
}

/* HOVER */
.product-card:hover{
    /*transform:translateY(-10px);*/
}

.product-card:hover img{
    transform:scale(1.1);
}

/* ANIMATION */
.product-card.show{
    opacity:1;
    transform:translateY(0);
}

/* RESPONSIVE */
@media(max-width:768px){
    .products-section{
        padding:70px 20px;
    }
}


/*IMPORT & EXPORT PAGE*/

/*WHAT WE EXPORT*/

/* SECTION */
.export-section{
    padding:100px 50px;
    background:#fff;
    text-align:center;
}

/* TITLE */
.section-title h5{
    color:#ff3b3b;
    letter-spacing:2px;
}
.section-title h2{
    margin:10px 0 50px;
}

/* GRID */
.export-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    max-width:1200px;
    margin:auto;
}

/* CARD */
.export-card{
    position:relative;
    border-radius:12px;
    overflow:hidden;
    cursor:pointer;
    opacity:0;
    transform:translateY(40px);
    transition:0.8s;
}

/* IMAGE */
.export-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:0.5s;
}

/* CONTENT OVERLAY */
.export-content{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:20px;
    background:linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color:#fff;
    text-align:left;
}

/* HOVER EFFECT */
.export-card:hover img{
    transform:scale(1.1);
}

.export-card:hover .export-content{
    background:linear-gradient(to top, rgba(255,59,59,0.9), transparent);
}

/* ANIMATION */
.export-card.show{
    opacity:1;
    transform:translateY(0);
}

/* RESPONSIVE */
@media(max-width:768px){
    .export-section{
        padding:70px 20px;
    }
}

/*WHAT WE IMPORT*/

/* SECTION */
.import-section{
    padding:100px 50px;
    background:#f9f9f9;
}

/* TITLE */
.section-title{
    text-align:center;
}
.section-title h5{
    color:#ff3b3b;
    letter-spacing:2px;
}
.section-title h2{
    margin:10px 0 50px;
}

/* CONTAINER */
.import-container{
    display:flex;
    flex-direction:column;
    gap:20px;
    max-width:1000px;
    margin:auto;
}

/* CARD */
.import-card{
    display:flex;
    gap:20px;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    transition:0.4s;
    opacity:0;
    transform:translateY(40px);
}

/* IMAGE */
.import-img img{
    width:250px;
    height:180px;
    object-fit:cover;
}

/* INFO */
.import-info{
    padding:20px;
}

.import-info h3{
    margin-bottom:10px;
}

.import-info p{
    color:#555;
    margin-bottom:10px;
}

/* TAG */
.tag{
    background:#ff3b3b;
    color:#fff;
    padding:5px 10px;
    font-size:12px;
    border-radius:5px;
}

/* HOVER */
.import-card:hover{
    transform:translateY(-5px);
}

/* ANIMATION */
.import-card.show{
    opacity:1;
    transform:translateY(0);
}

/* RESPONSIVE */
@media(max-width:768px){

    .import-card{
        flex-direction:column;
    }

    .import-img img{
        width:100%;
        height:200px;
    }

    .import-section{
        padding:70px 20px;
    }
}


/*SUPPLIER COUNTRIES */

/* SECTION */
.countries-section{
    padding:100px 50px;
    background:#fff;
}

.countries-container{
    display:flex;
    gap:50px;
    max-width:1200px;
    margin:auto;
    align-items:center;
    flex-wrap:wrap;
}

/* LEFT TEXT */
.countries-text{
    flex:1;
}

.countries-text h5{
    color:#ff3b3b;
    letter-spacing:2px;
}

.countries-text h2{
    font-size:32px;
    margin:15px 0;
}

.countries-text p{
    color:#555;
    margin-bottom:15px;
}

/* GRID */
.countries-grid{
    flex:1;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

/* CARD */
.country-card{
    background:#f9f9f9;
    padding:20px;
    border-radius:10px;
    text-align:center;
    transition:0.4s;
    opacity:0;
    transform:translateY(40px);
}

/* FLAG */
.country-card img{
    width:50px;
    height:35px;
    object-fit:cover;
    margin-bottom:10px;
}

/* HOVER */
.country-card:hover{
    transform:translateY(-5px);
    background:#ff3b3b;
    color:#fff;
}

/* ANIMATION */
.country-card.show{
    opacity:1;
    transform:translateY(0);
}

/* RESPONSIVE */
@media(max-width:768px){

    .countries-container{
        flex-direction:column;
        text-align:center;
    }

    .countries-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:480px){
    .countries-grid{
        grid-template-columns:1fr;
    }
}


/*CERTIFICATION PAGE*/

/* SECTION */
.cert-section{
    padding:100px 50px;
    background:#f9f9f9;
    text-align:center;
}

/* HEADER */
.cert-header h5{
    color:#ff3b3b;
    letter-spacing:2px;
}
.cert-header h2{
    margin:10px 0;
}
.cert-header p{
    color:#555;
    max-width:700px;
    margin:auto;
}

/* GRID */
.cert-container{
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    max-width:1100px;
    margin-left:auto;
    margin-right:auto;
}

/* CARD */
.cert-card{
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.4s;
    opacity:0;
    transform:translateY(40px);
}

/* IMAGE */
.cert-card img{
    width:60px;
    margin-bottom:15px;
}

/* HOVER */
.cert-card:hover{
    transform:translateY(-8px);
}

/* TEXT */
.cert-card p{
    color:#555;
    font-size:14px;
}

/* ANIMATION */
.cert-card.show{
    opacity:1;
    transform:translateY(0);
}

/* FOOTER */
.cert-footer{
    margin-top:50px;
    color:#333;
    max-width:800px;
    margin-left:auto;
    margin-right:auto;
}

/* RESPONSIVE */
@media(max-width:768px){
    .cert-section{
        padding:70px 20px;
    }
}


/*SHIPPING PAGE */

/*SHIPPING METHOD */

/* SECTION */
.shipping-section{
    padding:100px 50px;
    background:#f9f9f9;
}

/* TITLE */
.section-title{
    text-align:center;
}
.section-title h5{
    color:#ff3b3b;
    letter-spacing:2px;
}
.section-title h2{
    margin:10px 0 50px;
}

/* CONTAINER */
.shipping-container{
    max-width:1000px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}

/* CARD */
.shipping-card{
    display:flex;
    gap:20px;
    align-items:center;
    background:#fff;
    padding:25px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.4s;
    opacity:0;
    transform:translateY(40px);
}

/* ICON */
.shipping-icon{
    font-size:35px;
    background:#ff3b3b;
    color:#fff;
    padding:15px;
    border-radius:10px;
}

/* CONTENT */
.shipping-content h3{
    margin-bottom:8px;
}

.shipping-content p{
    color:#555;
}

/* HOVER */
.shipping-card:hover{
    transform:translateY(-5px);
}

/* ANIMATION */
.shipping-card.show{
    opacity:1;
    transform:translateY(0);
}

/* RESPONSIVE */
@media(max-width:768px){

    .shipping-card{
        flex-direction:column;
        text-align:center;
    }

    .shipping-section{
        padding:70px 20px;
    }
}


/*DELIVERY TIME*/

/* SECTION */
.delivery-section{
    padding:100px 50px;
    background:#fff;
    text-align:center;
}

/* TITLE */
.section-title h5{
    color:#ff3b3b;
    letter-spacing:2px;
}
.section-title h2{
    margin:10px 0 60px;
}

/* CONTAINER */
.delivery-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    max-width:1100px;
    margin:auto;
    position:relative;
}

/* CARD */
.delivery-card{
    background:#f9f9f9;
    padding:30px 20px;
    border-radius:12px;
    position:relative;
    transition:0.4s;
    opacity:0;
    transform:translateY(40px);
}

/* ICON */
.delivery-icon{
    font-size:30px;
    margin-bottom:10px;
}

/* TIME */
.delivery-card p{
    font-weight:bold;
    color:#ff3b3b;
    margin:10px 0;
}

/* SMALL TEXT */
.delivery-card span{
    font-size:13px;
    color:#555;
}

/* HOVER */
.delivery-card:hover{
    transform:translateY(-8px);
    background:#ff3b3b;
    color:#fff;
}

.delivery-card:hover span{
    color:#fff;
}

.delivery-card:hover p{
    color:#000;
}

/* ANIMATION */
.delivery-card.show{
    opacity:1;
    transform:translateY(0);
}

/* RESPONSIVE */
@media(max-width:768px){
    .delivery-section{
        padding:70px 20px;
    }
}


/*PORTS*/

/* SECTION */
.ports-section{
    padding:100px 50px;
    background:#f9f9f9;
}

/* CONTAINER */
.ports-container{
    display:flex;
    gap:50px;
    max-width:1200px;
    margin:auto;
    align-items:center;
    flex-wrap:wrap;
}

/* LEFT TEXT */
.ports-text{
    flex:1;
}

.ports-text h5{
    color:#ff3b3b;
    letter-spacing:2px;
}

.ports-text h2{
    font-size:32px;
    margin:15px 0;
}

.ports-text p{
    color:#555;
    margin-bottom:15px;
}

/* GRID */
.ports-grid{
    flex:1;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

/* CARD */
.port-box{
    background:#fff;
    padding:25px;
    border-radius:10px;
    border-left:4px solid #ff3b3b;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.4s;
    opacity:0;
    transform:translateY(40px);
}

.port-box h3{
    margin-bottom:10px;
}

.port-box p{
    font-size:14px;
    color:#555;
}

/* HOVER */
.port-box:hover{
    transform:translateY(-5px);
    background:#ff3b3b;
    color:#fff;
}

.port-box:hover p{
    color:#fff;
}

/* ANIMATION */
.port-box.show{
    opacity:1;
    transform:translateY(0);
}

/* RESPONSIVE */
@media(max-width:768px){

    .ports-container{
        flex-direction:column;
        text-align:center;
    }

    .ports-grid{
        grid-template-columns:1fr;
    }

    .ports-text h2{
        font-size:26px;
    }
}

/*INQUIRY PAGE*/

/* SECTION */
.inquiry-section{
    padding:100px 50px;
    background:linear-gradient(135deg,#0f172a,#1e293b);
    color:#fff;
}

/* CONTAINER */
.inquiry-container{
    display:flex;
    gap:50px;
    max-width:1200px;
    margin:auto;
    flex-wrap:wrap;
    align-items:center;
}

/* LEFT */
.inquiry-text{
    flex:1;
}

.inquiry-text h5{
    color:#ff3b3b;
    letter-spacing:2px;
}

.inquiry-text h2{
    font-size:32px;
    margin:15px 0;
}

.inquiry-text p{
    color:#cbd5e1;
    margin-bottom:20px;
}

.inquiry-text ul li{
    margin:10px 0;
}

/* FORM */
.inquiry-form{
    flex:1;
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(10px);
    padding:30px;
    border-radius:12px;
}

/* INPUTS */
.form-group{
    margin-bottom:15px;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea{
    width:100%;
    padding:12px;
    border:none;
    outline:none;
    border-radius:6px;
}

.inquiry-form textarea{
    height:120px;
}

/* BUTTON */
.inquiry-form button{
    width:100%;
    padding:14px;
    border:none;
    background:#ff3b3b;
    color:#fff;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.inquiry-form button:hover{
    background:#000;
}

/* ANIMATION */
.inquiry-text,
.inquiry-form{
    opacity:0;
    transform:translateY(40px);
    transition:0.8s;
}

.inquiry-text.show,
.inquiry-form.show{
    opacity:1;
    transform:translateY(0);
}

/* RESPONSIVE */
@media(max-width:768px){

    .inquiry-container{
        flex-direction:column;
        text-align:center;
    }

    .inquiry-text h2{
        font-size:26px;
    }

    .inquiry-section{
        padding:70px 20px;
    }
}

button {
    border-radius: 15px;
}



/*NEXT SECTION*/

/* ================= GLOBAL ================= */


.container {
  width: 90%;
  margin: auto;
}

/* ================= TITLE ================= */
.section-title,
.title {
  text-align: center;
  font-size: 34px;
  margin: 80px 0 10px;
  font-weight: 600;
}

.subtitle {
  text-align: center;
  max-width: 650px;
  margin: auto;
  margin-bottom: 60px;
  color: #666;
}

/* ================= CATEGORY ================= */
.category {
  margin-bottom: 70px;
}

.category h3 {
  font-size: 26px;
  color: #BC2623;
  margin-bottom: 25px;
  position: relative;
}

.category h3::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #BC2623;
  display: block;
  margin-top: 8px;
}

/* ================= GRID ================= */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 25px;
}

/* ================= CARD ================= */
.card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(188,38,35,0.2);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: 0.4s;
}

.card:hover img {
  transform: scale(1.05);
}

.card h4 {
  margin: 15px;
  font-size: 18px;
}

.card p {
  margin: 0 15px 10px;
  font-size: 14px;
  color: #666;
}

/* ================= SPECS ================= */
.specs {
  padding: 0 15px 15px;
  font-size: 13px;
}

.specs li {
  margin-bottom: 6px;
  color: #444;
}

/* ================= SECTORS ================= */
.sectors {
  background: #fff;
  padding: 40px;
  border-radius: 14px;
  margin-bottom: 60px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.sectors ul {
  columns: 2;
}

/* ================= DOWNLOAD ================= */
.download {
  text-align: center;
  padding: 50px;
  background: linear-gradient(135deg,#BC2623,#8e1d1b);
  color: #fff;
  border-radius: 14px;
  margin-bottom: 80px;
}

.download a {
  display: inline-block;
  padding: 12px 30px;
  background: #fff;
  color: #BC2623;
  border-radius: 30px;
  text-decoration: none;
  margin-top: 15px;
  transition: 0.3s;
}

.download a:hover {
  background: #000;
  color: #fff;
}

/* ================= OPERATIONS SECTION ================= */
.ops-unique {
  padding: 80px 0;
  background: #fff;
}

/* ================= PIPELINE ================= */
.pipeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 60px 0;
}

/* line */
.pipeline::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg,#BC2623,#ff6a6a);
  top: 50%;
  transform: translateY(-50%);
  transition: width 1.5s ease;
}

.pipeline.active::before {
  width: 100%;
}

/* ================= NODE ================= */
.node {
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s ease;
}

.pipeline.active .node {
  opacity: 1;
  transform: translateY(0);
}

.node span {
  display: inline-block;
  background: #BC2623;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  margin-bottom: 10px;
  transition: 0.3s;
}

.node:hover span {
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(188,38,35,0.5);
}

/* ================= GLASS CARDS ================= */
.glass-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 25px;
}

.glass-card {
  background: #f8f9fc;
  padding: 25px;
  border-radius: 14px;
  transition: 0.3s;
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .section-title {
    font-size: 28px;
  }

  .pipeline {
    flex-direction: column;
  }

  .pipeline::before {
    width: 4px;
    height: 0%;
    left: 50%;
    transform: translateX(-50%);
  }

  .pipeline.active::before {
    height: 100%;
  }

  .node {
    margin: 20px 0;
  }

  .sectors ul {
    columns: 1;
  }
}


/*NEXT PAGE */

/*CAREER */

.careers-highlight {
  padding: 100px 0;
  background: #f9fafc;
}

.container {
  width: 90%;
  margin: auto;
  text-align: center;
}

/* TITLE */
.title {
  font-size: 34px;
  margin-bottom: 10px;
}

.subtitle {
  max-width: 650px;
  margin: auto;
  margin-bottom: 60px;
  color: #555;
}

.subtitle span {
  color: #BC2623;
  font-weight: 600;
}

/* GRID */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 25px;
  margin-bottom: 60px;
}

/* CARD */
.highlight-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  transition: 0.4s;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

/* Glow border animation */
.highlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 2px;
  background: linear-gradient(120deg,#BC2623,transparent,#BC2623);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: 0.4s;
}

.highlight-card:hover::before {
  opacity: 1;
}

.highlight-card:hover {
  transform: translateY(-10px);
}

.highlight-card h4 {
  margin-bottom: 10px;
}

.highlight-card p {
  font-size: 14px;
  color: #666;
}

/* OPPORTUNITY */
.opportunity {
  background: #fff;
  padding: 40px;
  border-radius: 14px;
  margin-bottom: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.opportunity span {
  color: #BC2623;
  font-weight: 600;
}

.opportunity .small {
  margin-top: 10px;
  color: #666;
}

/* STATUS */
.status {
  background: linear-gradient(135deg,#BC2623,#8e1d1b);
  color: #fff;
  padding: 50px;
  border-radius: 16px;
}

.no-openings {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0;
}

/* EMAIL BUTTON */
.email-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: #fff;
  color: #BC2623;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.email-btn:hover {
  background: #000;
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {

  .title {
    font-size: 28px;
  }

  .status {
    padding: 30px;
  }

}

/*CERTIFICATE SECTION*/

/* SECTION */
.cert-section {
  padding: 80px 20px;
}

.container {
  max-width: 1100px;
  margin: auto;
}

/* TITLE */
.title {
  text-align: center;
  margin-bottom: 50px;
}

.title h2 {
  font-size: 34px;
  font-weight: 600;
  color: #111;
}

.title p {
  color: #666;
  margin-top: 8px;
}

/* COMPANY BOX */
.company-box {
  background: #f9fafb;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 50px;
  border-left: 4px solid #BC2623;
  transition: 0.3s;
}

.company-box:hover {
  transform: translateY(-6px);
}

.company-box .cin {
  margin: 12px 0;
  color: #BC2623;
  font-weight: 600;
}

/* GRID */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

/* CARD */
.cert-item {
  background: #ffffff;
  border: 1px solid #eee;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

/* HOVER EFFECT */
.cert-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(188,38,35,0.15);
  border-color: #BC2623;
}

/* ICON */
.cert-item img {
  width: 55px;
  margin-bottom: 15px;
  transition: 0.3s;
}

.cert-item:hover img {
  transform: scale(1.1);
}

/* TEXT */
.cert-item h4 {
  font-size: 17px;
  margin-bottom: 6px;
}

.cert-item span {
  font-size: 13px;
  color: #666;
}

/* RED LINE ANIMATION */
.cert-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: #BC2623;
  transition: 0.4s;
}

.cert-item:hover::after {
  width: 100%;
}

/* MOBILE */
@media (max-width: 768px) {
  .title h2 {
    font-size: 26px;
  }

  .company-box {
    padding: 20px;
  }
}