/* ============================= */
/* HERO SECTION */
/* ============================= */
.hero-section {
  display: grid;
  grid-template-columns: 0.9fr 2fr;
  gap: min(8vw, 50px);
  align-items: center;
  padding: 0 min(6vw, 80px) min(4vw, 40px);
  background: linear-gradient(135deg, rgba(9, 39, 98, 0.7) 0%, rgba(6, 24, 60, 0.6) 100%), url("../assets/images/home-unsplash.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-white);
  position: relative;
  z-index: 10;
}

.bounce-left > * {
  opacity: 0;
  animation: bounceInLeft 1s ease-out forwards;
  /* forwards keeps final frame visible */
}

/* Bounce In Left Animation */
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    transform: translateX(20px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.bounce-left-img > * {
  opacity: 0;
  animation: bounceInLeft 1.1s ease-out forwards;
}

/* Same bounce animation */
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    transform: translateX(20px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}









.hero-section picture {
  position: relative;
  isolation: isolate;
  order: 1;
}

.hero-section picture img {
  width: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  
}

.hero-section picture::before {
  content: "";
  position: absolute;
  inset: -12px;
  
  z-index: -1;
  pointer-events: none;
}

.hero-content {
  order: 2;
  margin-top: 150px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin: 0 0 1.5rem;
  font-weight: 700;
  line-height: 1.25;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 100%;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.hero-content p:first-of-type {
  margin-bottom: 1.5rem;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.hero-actions a {
  padding: 0.5rem 2.5rem;
  font-weight: 600;
  border: 2px solid transparent;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}


.hero-actions .primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.hero-actions .primary:hover {
  background: #ff6a2a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 119, 69, 0.3);
}

.hero-actions .secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--color-white);
  background: transparent;
}

.hero-actions .secondary:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
}

/* ============================= */
/* BRANDS SECTION */
/* ============================= */
.brands-section {
  background: var(--color-white);
  padding: 1rem min(6vw, 80px);
  margin-bottom: 80px;
}

.brands-container {
  margin: 0 auto;
}

.brands-section h2 {
  font-size: 1.6rem;
  color: #0a256f;
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 700;
}

.brands-grid {
  width: 60vw;
  margin-left: auto;
  border-bottom: 2px solid #E6E6E6;
  padding-bottom: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.5rem;
  align-items: center;
  justify-items: center;
}

.tower-img {
  position: relative;
  bottom: -200px;
  right: 0;
  z-index: 1;
}

.read-more-btn {
  margin-top: 20px;
  background-color: var(--color-navy);
  color: var(--color-white);               
  padding: 10px 30px;        
  border-radius: 6px;       
  display: inline-block;     
  text-decoration: none;     
}

/* ============================= */
/* SERVICES SECTION */
/* ============================= */
.service {
  background: var(--color-navy);
  padding-bottom: 30px;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 2rem min(6vw, 80px) 0;
  flex-wrap: wrap;
}

.services-intro h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--color-white);
  margin: 0 0 0.5rem 0;
}

.services-intro p {
  font-size: 1rem;
  color: var(--color-accent);
  margin: 0;
  max-width: 500px;
}

.see-all-btn {
  padding: 0.75rem 2rem;
  background: var(--color-white);
  color: var(--color-black);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.see-all-btn:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 119, 69, 0.3);
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

/* HERO SECTION TABLET/MOBILE */
@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    /* padding: min(8vw, 60px) min(4vw, 40px); */
  }

  .hero-content {
    margin-top: 80px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

/* HERO ACTIONS FIX — BUTTONS KEEP NATURAL WIDTH */
/* Tablet: fixed width for secondary button */
@media (max-width: 768px) {
  .hero-actions a.secondary {
    display: inline-block;
    width: 300px !important;  /* fixed width for tablet */
    flex: 0 0 auto;           /* prevent flex stretching */
    text-align: center;
  }
  .read-more-btn {
    margin-bottom: 50px;
  }
}

/* Mobile: natural width for secondary button */
@media (max-width: 480px) {
  .hero-actions a.secondary {
    width: auto !important;   /* natural width for mobile */
  }
}





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

  .hero-content p {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.8rem;
  }
}

/* BRANDS SECTION TABLET/MOBILE */
@media (max-width: 1024px) {
  .brands-grid {
    width: auto;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
 

}

@media (max-width: 768px) {
  .brands-section {
    padding: 2rem min(4vw, 40px);
  }

  .brands-section h2 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: auto;
  }

  .brand-item {
    height: 70px;
  }
  .tower-img {
  display: none;
}

}

/* SERVICES SECTION TABLET/MOBILE */
@media (max-width: 1024px) {
  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .tower-img {
  display: none;
}


  .services-intro h2 {
    font-size: 2rem;
  }

  .services-intro p {
    font-size: 0.95rem;
  }

  .see-all-btn {
    width: auto;
  }
}

@media (max-width: 768px) {
  .services-header {
    padding: 1.5rem min(4vw, 40px) 1rem;
  }

  .services-intro h2 {
    font-size: 1.5rem;
  }
.tower-img {
  display: none;
}

  .services-intro p {
    font-size: 0.9rem;
  }

  .see-all-btn {
    width: 25%;
    text-align: center;
  }
  
}
/* Tablet: 2 cards per row */
@media (max-width: 1024px) {
  .features-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 card per row */
@media (max-width: 768px) {
  .features-container {
    grid-template-columns: 1fr;
  }
}

/* EXTRA SMALL DEVICES ≤480px */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }
.tower-img {
  display: none;
}

  .hero-content p {
    font-size: 0.9rem;
  }

  .brands-section h2 {
    font-size: 1.2rem;
  }

  .services-intro h2 {
    font-size: 1.3rem;
  }

  .services-intro p {
    font-size: 0.85rem;
  }

  .see-all-btn {
    width: auto;
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
  }
  
  .brands-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    width: auto;
  }
}

  


/* ============================= */
/* WHY CHOOSE US / FEATURES SECTION */
/* ============================= */

.features-section {
  background: var(--color-white);
  padding: 4rem min(6vw, 80px);
}

.features-container {
  
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.features-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #4a7dff;
  letter-spacing: 0.5px;
  margin: 0 0 0.5rem 0;
 
}

.features-header h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--color-navy);
  margin: 0;
  position: relative;
  display: inline-block;
 
}

.features-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: #4a7dff;
  border-radius: 1px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background: var(--color-white);
  padding: 2.5rem 2rem;
 
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
 
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
   border-bottom: 4px solid var(--color-accent);
    border-radius: 10px;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--color-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: var(--color-white);
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color:  #4a7dff;
  margin: 0 0 1rem 0;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.6;
  margin: 0;
}



/* Responsive */
@media (max-width: 768px) {
  .features-section {
    padding: 3rem min(4vw, 40px);
  }

  .features-header {
    margin-bottom: 2.5rem;
  }

  .features-header h2 {
    font-size: 1.8rem;
  }
  .features-grid{
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
 

  .feature-card {
    padding: 2rem 1.5rem;
  }
}

  
/* ============================= */
/* SEE OUR OPERATIONS SECTION */
/* ============================= */

.operations-section {
  background: var(--color-bg);
  padding: 4rem min(6vw, 80px);
}

.operations-container {
  margin: 0 auto;
}

.operations-content {
  display: grid;
  grid-template-columns: 1fr 2.3fr;
  gap: 2rem;
  align-items: start;
}

/* LABEL */
.operations-label {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* HEADING */
.operations-left h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  padding: 0%;
  margin-top: 0%;
}

/* LEFT BIG IMAGE */
.large-left-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* RIGHT SIDE */
.operations-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* GRID: 2 COLUMNS (LEFT + RIGHT) */
.right-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* IMAGES */
.img-2,
.img-3,
.img-4 {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* BUTTON IN RIGHT COLUMN */
.col-right .view-more-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--color-navy);
  color: var(--color-white);
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.col-right .view-more-btn:hover {
  background: var(--color-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 37, 111, 0.3);
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 968px) {
  .operations-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .col-left,
  .col-right {
    display: flex;
    flex-direction: column;
  }

  .view-more-btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .operations-section {
    padding: 3rem min(4vw, 40px);
  }
}


 .brands-section {
    background: var(--color-white, #fff);
    padding: 1rem min(6vw, 80px);
    margin-bottom: 80px;
  }

  .brands-slider {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
  }

  .brands-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;       /* allow children to set total width */
    will-change: transform;   /* performance hint */
  }

  .brands-track img {
    height: 80px;             /* uniform height — change as needed */
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
    margin: 0;                /* gap handled by .brands-track gap */
    user-select: none;
    -webkit-user-drag: none;  /* prevent dragging images */
  }


  /* pause pointer cursor and optional hover effect */
  .brands-slider:hover { cursor: grab; }
  .brands-track img:hover { transform: scale(1.06); transition: transform .25s ease; }

  /* responsive tweak */
  @media (max-width: 768px) {
    .brands-track img { height: 44px; }
    .brands-track { gap: 20px; }
  }
