/* ==========================
   GENERAL RESET
   ========================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
 body {
    font-family: 'Arial', sans-serif;
    color: #fff;
    background: linear-gradient(-45deg, #0f2027, #203a43, #2c5364, #0f2027);
    background-size: 400% 400%;
    animation: gradientBG 18s ease infinite;
    overflow-x: hidden;
}


@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
/* ==========================
   NAVIGATION (DESKTOP FIXED, MOBILE NORMAL)
========================== */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;

  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  font-family: 'Arial', sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  transition: all 0.35s ease;
}

/* Page offset for fixed nav (desktop) */
body {
  padding-top: 85px;
}

/* Logo */
.nav-logo img {
  height: 50px;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  color: #0B1F5B;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-links li a:hover {
  color: #FFD700;
  transform: translateY(-2px);
}

/* Quote Button */
.nav-links li a.btn-quote {
  background-color: #0B1F5B;
  color: #FFD700;
  padding: 10px 18px;
  font-weight: bold;
  border-radius: 6px;
}

.nav-links li a.btn-quote:hover {
  background-color: #FFD700;
  color: #0B1F5B;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Toggle Button */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #0B1F5B;
}

.menu-toggle:hover {
  color: #FFD700;
}

/* ==========================
   MOBILE NAV (NORMAL FLOW)
========================== */
@media screen and (max-width: 768px) {

  body {
    padding-top: 0;
  }

  .main-nav {
    position: relative;
    background: #fff;
    backdrop-filter: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: -100%;
    width: 100%;
    background-color: #fff;
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px 0;
    transition: left 0.3s ease;
    z-index: 999;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
  .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
  .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
  .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }

  .nav-links li a {
    font-size: 16px;
    padding: 10px 20px;
    display: block;
  }

  .menu-toggle {
    display: block;
  }
}

/* WRAPPER */
.alokah-hero-wrapper {
  display: flex;
  width: 100%;
  height: calc(100vh - 70px); /* navbar height */
  min-height: 520px;
}

/* LEFT BAR */
.alokah-service-bar {
  width: 260px;
  background: #2f3f4e;
  color: #fff;
}

.alokah-service-bar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.alokah-service-bar li {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.alokah-service-bar a,
.alokah-service-bar button {
  width: 100%;
  padding: 15px 22px;
  background: none;
  border: none;
  color: #fff;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
}

.alokah-service-bar a:hover,
.alokah-service-bar button:hover {
  background: #22303b;
}

/* DROPDOWN */
.dropdown {
  display: none;
  background: #25333f;
}

.dropdown a {
  padding-left: 40px;
  font-size: 14px;
}

.has-dropdown.open .dropdown {
  display: block;
}

.has-dropdown span {
  transition: transform 0.3s ease;
}

.has-dropdown.open span {
  transform: rotate(180deg);
}

/* SLIDER */
.alokah-hero-slider {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

/* TEXT */
.hero-text {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 90px 80px;
  color: #fff;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 700;
}

.hero-btn {
  background: #ff6a00;
  color: #fff;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 3px;
}

/* ARROWS */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.25);
  border: none;
  font-size: 28px;
  color: #fff;
  padding: 8px 14px;
  cursor: pointer;
  z-index: 3;
}

.hero-arrow.left { left: 25px; }
.hero-arrow.right { right: 25px; }

/* DOTS */
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}

.hero-dots span.active {
  background: #ff6a00;
}

/* MOBILE */
@media (max-width: 900px) {
  .alokah-hero-wrapper {
    flex-direction: column;
    height: auto;
  }

  .alokah-service-bar {
    width: 100%;
  }

  .hero-text {
    padding: 50px 25px;
  }

  .hero-text h1 {
    font-size: 32px;
  }
}


/* ==========================
   CONSISTENT HERO SECTION
   ========================== */
.hero-section {
    position: relative;
    height: 100vh;
    background-image: url("assets/images/alokah_card image.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

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


/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(5, 20, 60, 0.85),
        rgba(5, 20, 60, 0.6)
    );
    z-index: 1;
}

/* Glass Card */
.hero-glass {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 880px;
    padding: 50px;
    text-align: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    animation: fadeUp 1.2s ease;
}

/* Typography – FIXED SCALE */
.hero-glass h1 {
    font-size: 40px; /* fixed size */
    font-weight: 800;
    text-transform: uppercase;
    color: darkblue;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
}

.hero-glass p {
    font-size: 18px; /* fixed size */
    color:silver black;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Buttons */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
}

.btn {
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s ease;
}

/* Primary */
.btn-primary {
    background: linear-gradient(135deg, #FFD700, #ffcc00);
    color: #0B1F5B;
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.45);
}

.btn-primary:hover {
    transform: translateY(-3px);
}

/* Outline */
.btn-outline {
    color: #FFD700;
    border: 2px solid #FFD700;
}

.btn-outline:hover {
    background: #FFD700;
    color: #0B1F5B;
}

/* Stats */
.hero-stats {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.hero-stats div {
    text-align: center;
    flex: 1;
}

.hero-stats span {
    font-size: 28px;
    font-weight: 700;
    color: #FFD700;
    display: block;
}

.hero-stats small {
    font-size: 14px;
    color: #eaeaea;
    letter-spacing: 0.4px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 25px;
    width: 26px;
    height: 45px;
    border: 2px solid #FFD700;
    border-radius: 20px;
    z-index: 3;
}

.scroll-indicator::after {
    content: "";
    width: 6px;
    height: 6px;
    background: #FFD700;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { opacity: 0; top: 8px; }
    50% { opacity: 1; }
    100% { opacity: 0; top: 26px; }
}

/* NO MEDIA QUERIES ON PURPOSE – SAME LOOK EVERYWHERE */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================
   ABOUT SECTION – WHITE
   ========================== */
.about-section {
    background: whitesmoke;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
}

/* Layout container */
.about-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Text */
.about-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: whitesmoke;
    margin-bottom: 35px;
}

/* Stats */
.about-stats {
    display: flex;
    gap: 40px;
}

.about-stats div {
    text-align: left;
}

.about-stats span {
    font-size: 28px;
    font-weight: 800;
    color: #FFD700;
    display: block;
}

.about-stats small {
    font-size: 14px;
    color: #666666;
    letter-spacing: 0.3px;
}

/* Image */
.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Animation */
.fade-slide-up {
    animation: fadeUp 1s ease forwards;
}

/* Responsive (still clean & consistent) */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }

    .about-stats div {
        text-align: center;
    }
}

/* ==========================================
   OUR SERVICES PAGE - VIDEO SECTION STYLES
   ========================================== */

/* Section Wrapper */
.alokah-video-section {
  background: linear-gradient(to bottom right, #0a0a0a, #141414);
  color: whitesmoke;
  padding: 80px 5%;
  border-radius: 0;
  overflow: hidden;
  position: relative;
}

/* Content Layout */
.video-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Video Frame */
.video-frame {
  position: relative;
  flex: 1;
  min-width: 350px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.video-frame iframe {
  width: 100%;
  height: 320px;
  border: none;
  border-radius: 16px;
  display: block;
}

/* Text Section */
.video-info {
  flex: 1;
  min-width: 300px;
}

.video-info .section-title {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #ffae00;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.video-info .section-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 25px;
}

.video-highlights {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.video-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
  font-size: 1rem;
  color: #ccc;
}

.video-highlights i {
  color: #ffae00;
}

/* CTA Button */
.video-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #ffae00;
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.video-btn:hover {
  background: #ffc94b;
  transform: translateY(-3px);
}

/* Remove fade-in completely */
.fade-in,
.fade-in.visible {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Responsive Design */
@media (max-width: 992px) {
  .video-content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .video-info {
    order: 2;
  }

  .video-frame {
    order: 1;
  }

  .video-info .section-title {
    font-size: 1.8rem;
  }

  .video-info .section-subtitle {
    font-size: 0.95rem;
  }

  .video-highlights {
    text-align: left;
    display: inline-block;
  }
}

@media (max-width: 600px) {
  .alokah-video-section {
    padding: 60px 4%;
  }

  .video-frame iframe {
    height: 240px;
  }

  .video-btn {
    padding: 10px 22px;
    font-size: 0.9rem;
  }
}


/* Carousel Wrapper */
.about-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* Carousel Track */
.about-carousel {
    overflow-x: hidden;
}

.about-carousel .carousel-track {
    display: flex;
    gap: 25px;
}

/* Carousel Cards */
.about-carousel .carousel-item {
    flex: 0 0 auto;
    width: 300px;             
    height: 280px;            
    background-color: #001F4D; /* dark blue */
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-carousel .carousel-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
}

.about-carousel .carousel-item .caption {
    color: #FFD700; /* gold */
    font-size: 1rem;
    flex-grow: 1;
}

/* Hover Effects */
.about-carousel .carousel-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.6);
    border: none;
    color: #fff;
    font-size: 2rem;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: background 0.3s;
}

.carousel-btn:hover {
    background-color: rgba(0,0,0,0.8);
}

.carousel-btn.left {
    left: -20px;
}

.carousel-btn.right {
    right: -20px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-carousel .carousel-item {
        width: 220px;
        height: 240px;
    }
}

@media (max-width: 480px) {
    .about-carousel .carousel-item {
        width: 160px;
        height: 200px;
    }
}



/* ==========================
   SECTIONS
   ========================== */
/* General Section Styling */
.section {
  display: inline-block;
  vertical-align: top;
  width: 48%; 
  background: rgba(240, 242, 245, 0.95); /* light gray transparent */
  border-radius: 16px;
  padding: 60px 40px; /* professional padding */
  box-sizing: border-box;
  margin-bottom: 40px;
  min-height: 400px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

/* Section hover effect */
.section:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
  background: rgba(240, 242, 245, 1); /* slightly less transparent on hover */
}

/* Balance Vision & Mission content vertically */
.section#vision .section-content {
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertically center content */
  height: 100%;
}

/* Headings & Paragraphs */
.section h2 {
  color: #001f4d; /* dark blue */
  margin-bottom: 25px;
  font-size: 2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2); /* subtle shadow for depth */
}

.section p {
  color: black; /* dark gray for paragraphs */
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

/* Service Cards Default */
.service-card {
  background: #c0c0c0; /* silver background */
  color: #001f4d; /* dark blue text for headings */
  border-radius: 16px;
  text-align: center;
  padding: 30px 20px;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s, color 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.service-card i {
  font-size: 36px;
  margin-bottom: 15px;
  color: #001f4d; /* dark blue icon */
  transition: color 0.3s;
}

.service-card h3 {
  margin: 12px 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #001f4d; /* dark blue heading */
  transition: color 0.3s;
}

.service-card p {
  color: #000; /* black paragraph */
  transition: color 0.3s;
}

/* Service Cards Hover */
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, #ffd700, #0a4d8c); /* flip colors */
}

.service-card:hover i,
.service-card:hover h3 {
  color: #ffffff; /* text and icons change on hover */
}

.service-card:hover p {
  color: #f0f2f5; /* paragraph turns light on hover */
}

/* Desktop layout: two sections side by side */
@media(min-width: 900px) {
  #vision, #services {
    display: inline-block;
    vertical-align: top;
  }

  #vision {
    margin-right: 2%;
  }

  #services {
    margin-left: 0;
  }
}

/* Responsive layout for smaller screens */
@media(max-width: 899px) {
  #vision, #services {
    width: 100%;
    display: block;
  }
  .section {
    padding: 50px 30px;
    min-height: auto;
  }
}


/** service section**/
.services-grid,
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    justify-items: center;
    align-items: start;
    margin-top: 30px;
}

/* INDIVIDUAL CARD */
section
.service-card,
.industry-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 250px;
}

.service-card:hover,
.industry-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* ICON / IMAGE */
.service-card i,
.industry-item img {
    font-size: 40px;
    color: #ffae00;
    margin-bottom: 15px;
}

/* CARD HEADINGS */
.service-card h3,
.industry-item p {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 8px;
}

/* CARD SUBTITLE */
.service-card p,
.industry-item p.subtitle {
    font-size: 14px;
    font-weight: normal;
    color: #ddd;
    line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .services-grid,
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .services-grid,
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .service-card h3, .industry-item p {
        font-size: 16px;
    }
    .service-card p, .industry-item p.subtitle {
        font-size: 13px;
    }
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    justify-items: center;
    align-items: stretch;
}

.industries-grid .industry-item {
    background-color: #222;
    border-radius: 12px;
    padding: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    box-sizing: border-box;
}

.industries-grid .industry-item img {
    width: 100%;
    max-width: 280px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.industries-grid .industry-item p {
    font-size: 1rem;
    color: #ccc;
    margin: 0;
    flex-grow: 1;
}

.industries-grid .industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}


section:not(#about):not(#vision):not(#mission):not(#highlights):not(#industries):not(#contact):not(#testimonials):not(#services):not(#alokah-video-section):not(#key_services)
:not(#) {
    padding: 60px 10%;
    margin: 40px auto;
    width: 90%;
    max-width: 900px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255,255,255,0.2);
}

section:not(#about):not(#vision):not(#mission) h2 {
    font-size: 28px;
    color: #ffae00;
    margin-bottom: 20px;
}

section:not(#about):not(#vision):not(#mission) p {
    font-size: 16px;
    line-height: 1.6;
}


/* Override default section for About */
#about {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 80px 8%;
  background: linear-gradient(135deg, #0a0a0a, #1b1b1b);
  color: #fff;
  box-shadow: none;
  border-radius: 0
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 45%;
  min-width: 280px;
}

.about-text .section-title {
  font-size: 2.5rem;
  color: #ffae00;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-text .section-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.about-text .btn-primary {
  display: inline-block;
  background: #ffae00;
  color: #000;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-text .btn-primary:hover {
  background: #ffcc33;
  transform: translateY(-3px);
}

.about-image {
  flex: 1 1 45%;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(255, 174, 0, 0.2);
  transition: transform 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}
/** vison mission**/
/* === Full-Width Vision & Mission Sections === */

/* Shared Section Structure */
#vision, #mission {
  width: 100vw; /* full viewport width */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 80px 10%;
  color: #222;
  box-shadow: none;
  border-radius: 0;
}

/* Backgrounds */
#vision {
  background: linear-gradient(135deg, #f5f5f5, #d9d9d9);
}

#mission {
  background: linear-gradient(135deg, #e8e8e8, #cfcfcf);
}

/* Flex Container */
.vision-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: 0 auto;
}

/* Reverse layout for Mission */
#mission .vision-section {
  flex-direction: row-reverse;
}

/* Image Side */
.vision-image {
  flex: 1 1 45%;
  text-align: center;
}

.vision-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.vision-image img:hover {
  transform: scale(1.05);
}

/* Text Side */
.vision-content {
  flex: 1 1 45%;
  min-width: 300px;
}

.vision-content .section-title {
  font-size: 2.5rem;
  color: #ffae00;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vision-cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.vision-card {
  background: #fff;
  border-left: 6px solid #ffae00;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.vision-card h3 {
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 10px;
}

.vision-card h3 i {
  color: #ffae00;
  margin-right: 10px;
}

.vision-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

/* Highlight special cards */
.values-card {
  background: linear-gradient(135deg, #fff8e1, #fff);
  border-left: 6px solid #ffae00;
  box-shadow: 0 6px 18px rgba(255, 174, 0, 0.25);
  position: relative;
}

.values-card::before {
  content: "★";
  position: absolute;
  top: -10px;
  right: 15px;
  font-size: 1.2rem;
  color: #ffae00;
  opacity: 0.8;
}

/* Responsive Layout */
@media (max-width: 900px) {
  .vision-section {
    flex-direction: column;
    text-align: center;
  }

  .vision-content {
    text-align: left;
  }

  .vision-content .section-title {
    font-size: 2rem;
  }

  .vision-image img {
    max-width: 90%;
  }
}


/* Responsive design */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-text, .about-image {
    flex: 1 1 100%;
  }

  .about-text .section-title {
    font-size: 2rem;
  }
}

/** highlights  **/
#highlights {
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  padding: 80px 5%;
  background: #f4f7fa;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

#highlights .section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.25rem;
  color: #002b5c;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 20px;
  padding: 0 20px;
  animation: scroll 25s linear infinite;
}

.carousel-wrapper:hover .carousel-track {
  animation-play-state: paused; /* pause on hover */
}

.carousel-item {
  flex: 0 0 auto;
  width: 280px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.carousel-item p {
  font-size: 1rem;
  font-weight: 600;
  color: #002b5c;
  padding: 12px 10px;
}

.carousel-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,43,92,0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.3s ease;
}

.carousel-btn:hover { background: #0078d7; }
.carousel-btn.left { left: 10px; }
.carousel-btn.right { right: 10px; }

/* Auto-scroll keyframes */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* adjust if track duplicated */
}

/* Responsive */
@media (max-width: 1024px) { .carousel-item { width: 240px; } }
@media (max-width: 768px)  { .carousel-item { width: 200px; } }
@media (max-width: 480px)  { .carousel-item { width: 160px; } }


.alokah-services {
  padding: 70px 6%;          /* reduced section height */
  background: #fff;
}

.services-title {
  text-align: center;
  font-size: 2.6rem;         /* slightly smaller */
  font-weight: 700;
  margin-bottom: 60px;       /* reduced spacing */
}

.alokah-service {
  display: grid;
  grid-template-columns: 1fr 1.15fr; /* slightly smaller image column */
  align-items: center;
  gap: 50px;                 /* reduced gap */
  margin-bottom: 70px;       /* reduced row spacing */
}

.alokah-text {
  max-width: 420px;
}

.alokah-text h3 {
  font-size: 1.6rem;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: darkblue;
}

.alokah-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 26px;
  color: #333;
}

.alokah-btn {
  display: inline-block;
  padding: 12px 22px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.alokah-btn:hover {
  background: #0a2a66;
  transform: translateY(-2px);
}

.alokah-image img {
  width: 92%;                /* visually smaller image */
  border-radius: 16px;       /* slightly tighter */
  display: block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.alokah-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

/* subtle stagger */
.alokah-image.offset {
  margin-top: 30px;
}

.alokah-btn,
.alokah-image img {
  cursor: pointer;
}

/* Mobile */
@media (max-width: 900px) {
  .alokah-service {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 50px;
  }

  .alokah-image img {
    width: 100%;
  }

  .alokah-image.offset {
    margin-top: 0;
  }

  .alokah-text {
    max-width: 100%;
  }
}



/* Key services styles */
.key-services {
  background: linear-gradient(to bottom right, #ffffff, #f3f7fb);
  padding: 80px 20px;
  text-align: center;
}

.key-services .section-title {
  font-size: 2.2rem;
  color: #004aad;
  font-weight: 700;
  margin-bottom: 10px;
}

.key-services .section-subtitle {
  font-size: 1rem;
  color: #555;
  max-width: 750px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Force 3 columns on large screens, 2 columns on medium, 1 on small */
.key-services .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards per row on desktop */
  gap: 25px;
  justify-content: center;
}

.key-services .service-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.key-services .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.key-services .icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: #004aad;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: background 0.3s ease;
}

.key-services .service-card:hover .icon-wrapper {
  background: #003380;
}

.key-services .service-card h3 {
  color: #004aad;
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.key-services .service-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive breakpoints */
/* Medium: 2 columns (tablets / small desktops) */
@media (max-width: 992px) {
  .key-services .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .key-services {
    padding: 60px 15px;
  }
  .key-services .section-title {
    font-size: 1.9rem;
  }
  .key-services .service-card {
    padding: 30px 15px;
  }
}

/* Small: 1 column (mobile) */
@media (max-width: 576px) {
  .key-services .services-grid {
    grid-template-columns: 1fr;
  }
  .key-services .section-title {
    font-size: 1.6rem;
  }
}
/* CTA BUTTON ourservices.html */
.cta-section {
  background: linear-gradient(to right, #004aad, #003380);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 35px;
  line-height: 1.6;
  color: #e0e0e0;
}

.cta-section .cta-btn {
  display: inline-block;
  background: #fff;
  color: #004aad;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.cta-section .cta-btn:hover {
  background: #003380;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-section {
    padding: 60px 15px;
  }

  .cta-section h2 {
    font-size: 1.6rem;
  }

  .cta-section p {
    font-size: 0.95rem;
  }

  .cta-section .cta-btn {
    padding: 12px 28px;
  }
}

/* Partners Page Styling */

/* Section Setup */
.partners-section {
  background: linear-gradient(135deg, #f9f9f9 0%, #eef5fc 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.partners-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(0, 74, 173, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.partners-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: rgba(0, 74, 173, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.partners-section .section-title {
  font-size: 2.2rem;
  color: #004aad;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.partners-section .section-subtitle {
  font-size: 1rem;
  color: #555;
  max-width: 750px;
  margin: 0 auto 50px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Grid */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

/* Partner Cards */
.partner-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.partner-card img {
  max-width: 120px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.partner-card:hover img {
  transform: scale(1.1);
}

.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Partner Info */
.partner-info {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.partner-card:hover .partner-info {
  opacity: 1;
  transform: translateY(0);
}

.partner-info p {
  font-weight: 600;
  color: #004aad;
  margin-bottom: 5px;
}

.partner-info span {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}

/* CTA Section */
.partners-cta {
  background: linear-gradient(to right, #004aad, #003380);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.partners-cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.partners-cta p {
  font-size: 1rem;
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  color: #e0e0e0;
}

.partners-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: #004aad;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.partners-cta .cta-btn:hover {
  background: #003380;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .partners-section {
    padding: 60px 15px;
  }

  .partners-cta {
    padding: 60px 15px;
  }

  .partner-card img {
    max-width: 100px;
  }
}

/*======================
 Career Page Styling 
 =======================*/
.career-page {
  font-family: Arial, sans-serif;
  color: #333;
}

/* Filter & Search */
.career-filters {
  background: #f3f7fb;
  padding: 30px 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.career-filters input[type="text"],
.career-filters select {
  padding: 10px 15px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  min-width: 200px;
  transition: border-color 0.3s;
}

.career-filters input[type="text"]:focus,
.career-filters select:focus {
  border-color: #004aad;
}

/* Job Listings */
.career-openings {
  padding: 60px 20px;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.job-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.job-card h3 {
  color: #004aad;
  margin-bottom: 10px;
}

.job-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* Job Actions */
.job-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-apply,
.btn-download {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-apply {
  background: #004aad;
  color: #fff;
}

.btn-apply:hover {
  background: #003380;
}

.btn-download {
  background: #e0e0e0;
  color: #333;
}

.btn-download:hover {
  background: #ccc;
}

/* Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  position: relative;
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}

/* CTA Section */
.career-cta {
  background: linear-gradient(to right, #004aad, #003380);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.career-cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.career-cta p {
  font-size: 1rem;
}

.career-cta a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

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


/* ================================
   INDUSTRIES WE SERVE – PREMIUM
================================ */

:root {
  --primary-blue: #002b5c;
  --deep-blue: #001d3d;
  --accent-gold: #d4a017;
  --light-gold: #f4c84c;
  --text-dark: #1a1a1a;
  --section-padding:clamp(50px, 6vw, 90px);
}
/* ==============================
   Industries We Serve – Alokah
============================== */

.industries-section {
  background: #f2f2f2;
  padding: 90px 20px;
  font-family: Arial, Helvetica, sans-serif;
}

.industries-title {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
  color: #004aad;
  margin-bottom: 60px;
}

/* Grid */
.industries-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px 35px;
}

/* Card */
.industry-box {
  background: #ffffff;
  border: 2px solid #2b6cb0;
  border-radius: 14px;
  padding: 55px 35px 35px;
  min-height: 220px;
  position: relative;
  transition: all 0.35s ease;
}

/* Hover effect */
.industry-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 74, 173, 0.2);
  border-color: #004aad;
}

/* Icon */
.icon-circle {
  width: 62px;
  height: 62px;
  background: #2b6cb0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  position: absolute;
  top: -31px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.35s ease;
}

.industry-box:hover .icon-circle {
  background: #004aad;
  box-shadow: 0 0 0 6px rgba(0, 74, 173, 0.15);
}

.icon-circle svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

/* Text */
.industry-box h3 {
  margin-top: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 12px;
}

.industry-box p {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.6;
}

/* Tablet */
@media (max-width: 992px) {
  .industries-container {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .industries-section {
    padding: 70px 15px;
  }
  .industries-title {
    font-size: 2rem;
  }
}

/*====================
testmonial section
=====================*/
.testimonials-section {
  width: 100%;
  padding: 80px 8%;
  background: #f5f5f5;
  color: #002b5c;
  text-align: center;
}

#testimonials.section-title {
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #003366;
  margin-bottom: 2rem;
  text-align: left;
}

.testimonial-carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  height: 350px;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateY(0);
  z-index: 2;
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffae00;
  margin-bottom: 15px;
}

.quote {
  font-style: italic;
  font-size: 1rem;
  color: #002b5c;
  margin-bottom: 20px;
}

.client-name {
  font-weight: bold;
  font-size: 1.1rem;
  color: #003366;
}

.client-position {
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 480px) {
  .testimonial-card { padding: 1rem; }
  .quote { font-size: 0.9rem; }
}


/* ==========================
   SECTION FULL WIDTH WRAPPER
========================== */
#contact {
  width: 100%;
  background-color: #f8f9fa;
  padding: 90px 0;            /* top & bottom only, no side push */
  box-sizing: border-box;
}

/* ==========================
   INNER ROW CONTAINER
========================== */
#contact .container {
  width: 100%;
  max-width: 1400px;          /* controls interior width */
  margin: 0 auto;             /* center content */
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  padding: 0 4%;              /* professional side breathing space */
  box-sizing: border-box;
}

/* ==========================
   COLUMNS SHARED EVENLY
========================== */
#contactForm,
#contact .contact-quote {
  flex: 1 1 50%;              /* each takes equal width */
  max-width: 650px;
  padding: 2.5rem;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  box-sizing: border-box;
}

/* Ensure quote appears like one column inside */
#contact .contact-quote {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(135deg, #fff8e1, #eaf3ff);
  border-left: 5px solid #f0a500;
  position: relative;
  overflow: hidden;
}

/* Quote text styling */
#contact .contact-quote p {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 12px;
  background: rgba(255,255,255,0.7);
  border-radius: 10px;
  border: 1px solid rgba(0, 43, 92, 0.09);
  margin: 0;
}

/* Subtle background truck icon */
#contact .contact-quote::before {
  content: "\f0d1";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  font-size: 7rem;
  color: rgba(0, 43, 92, 0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

#contact .contact-quote p,
#contact .contact-quote {
  position: relative;
  z-index: 2;
}

/* ==========================
   RESPONSIVE
========================== */
@media (max-width: 1024px) {
  #contact .container {
    flex-direction: column;
    gap: 35px;
  }

  #contactForm,
  #contact .contact-quote {
    max-width: 100%;
  }
}

/* ==========================
   CONTACT SECTION — 
========================== */
#contact {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 50px 8%;
  background-color: #f8f9fa;
  display: flex;
  justify-content: center;
  color: #003366;
  flex-direction: column;
  box-sizing: border-box;
}

#contact .container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1400px;
}

/* ==========================
   Left Column — Contact Form
========================== */
#contactForm {
  flex: 1 1 500px;
  max-width: 600px;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

#contactForm input,
#contactForm textarea,
#contactForm select {
  width: 100%;
  padding: 0.9rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Arial', sans-serif;
  transition: all 0.3s ease;
}

#contactForm input:focus,
#contactForm textarea:focus,
#contactForm select:focus {
  border-color: #003366;
  box-shadow: 0 0 5px rgba(0,51,102,0.2);
  outline: none;
}

.phone-input {
  display: flex;
  gap: 0.5rem;
}

.phone-input select {
  flex: 1;
  max-width: 150px;
}

.phone-input input {
  flex: 2;
}

#submitBtn {
  background-color: #f0a500;
  color: #000;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  width: 100%;
}

#submitBtn:hover {
  background-color: #003366;
  color: #fff;
}

#formMessage {
  margin-top: 1rem;
  font-size: 0.95rem;
  display: none;
}

#formMessage.success {
  color: green;
  display: block;
}

#formMessage.error {
  color: red;
  display: block;
}

/* ==========================
   Right Column — Quote Section (One Column)
========================== */
#contact .contact-quote {
  display: flex;
  flex-direction: column; /* ⬅ ensures all quotes go in a single column */
  gap: 18px;
  background: linear-gradient(135deg, #fff8e1, #eaf3ff);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  text-align: center;
  border-left: 5px solid #f0a500;
  color: #002b5c;
  line-height: 1.7;
  font-style: normal;
  flex: 1 1 100%;
  position: relative;
  overflow: hidden;
}

/* Individual Quote Styling (Professional Look) */
#contact .contact-quote p {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.25px;
  padding: 10px 12px;
  margin: 0;
  background: rgba(255,255,255,0.75);
  border-radius: 10px;
  border: 1px solid rgba(0,43,92,0.08);
}

/* Subtle Background Brand Icon */
#contact .contact-quote::before {
  content: "\f0d1";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  font-size: 6.5rem;
  color: rgba(0, 43, 92, 0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

/* Keep text above icon */
#contact .contact-quote p,
#contact .contact-quote {
  position: relative;
  z-index: 1;
}


/* ==========================
   Section Title & Email
========================== */
#contact .section-title {
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #003366;
  margin-bottom: 2rem;
  text-align: left;
}

#contact p.email {
  margin-top: 2rem;
  font-size: 1rem;
  color: #003366;
  text-align: left;
}

#contact p.email a {
  color: #f0a500;
  text-decoration: none;
  font-weight: bold;
}

#contact p.email a:hover {
  text-decoration: underline;
}

/* ==========================
   Responsive Design
========================== */
@media (max-width: 1024px) {
  #contact .container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  #contactForm,
  #contact .contact-quote {
    max-width: 100%;
  }

  #contact .section-title,
  #contact p.email {
    text-align: center;
  }
}

@media (max-width: 768px) {
  #contact {
    padding: 60px 5%;
  }

  #contactForm {
    padding: 1.5rem;
  }

  #contact .contact-quote {
    padding: 1.5rem;
    font-size: 1.1rem;
  }

  .phone-input {
    flex-direction: column;
  }

  .phone-input select,
  .phone-input input {
    width: 100%;
  }
}
#contact {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap; /* allows stacking on small screens */
  padding: 1rem 0;
}

/* Quote column */
#contact .contact-quote {
  flex: 1 1 50%;
  max-width: 620px;
}

/* Contact details right side */
#contact .email {
  flex: 1 1 40%;
  max-width: 380px;
  font-size: 1.1rem;
  color: #002b5c;
  background: #f8fbff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  border-left: 4px solid #f0a500;
  height: fit-content;
}
@media (max-width: 768px) {
  #contact {
    flex-direction: column;
    align-items: center;
  }

  #contact .contact-quote,
  #contact .email {
    flex: 1 1 100%;
    max-width: 100%;
  }
}


/* ===========================
   Cookies Policy Page Styles
   =========================== */

.cookies-main {
  background-color: #f9f9f9;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.cookies-content {
  background: #ffffff;
  padding: 40px 50px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  width: 100%;
  color: #333;
  line-height: 1.8;
  text-align: justify;
}

.cookies-content h1 {
  text-align: center;
  color: #004aad;
  margin-bottom: 25px;
  font-size: 2em;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cookies-content h2 {
  margin-top: 30px;
  color: #004aad;
  font-size: 1.2em;
  border-left: 4px solid #004aad;
  padding-left: 10px;
}

.cookies-content p {
  margin-top: 10px;
  font-size: 1rem;
}

.cookies-content ul {
  margin: 10px 0 10px 30px;
}

.cookies-content ul li {
  margin-bottom: 6px;
}

.cookies-content strong {
  color: #000;
}

.last-updated {
  margin-top: 40px;
  text-align: right;
  color: #555;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cookies-content {
    padding: 25px 20px;
  }

  .cookies-content h1 {
    font-size: 1.6em;
  }

  .cookies-content h2 {
    font-size: 1.1em;
  }
}


/* ==========================
   FOOTER STYLES
========================== */
.footer {
  background: rgba(220, 220, 220, 0.95); /* light gray with transparency */
  color: #000; /* default text black */
  font-family: 'Arial', sans-serif;
  text-align: center;
  backdrop-filter: blur(4px);
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
  padding: 50px 20px 20px;
}

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

.footer-sections {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 25px;
}

/* Footer columns */
.footer-column {
  flex: 1;
  min-width: 230px;
  text-align: left;
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.footer-column:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}

/* Titles */
.footer-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 15px;
  color: #0B1F5B; /* dark blue headings */
}

/* Quick Links & Legal Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 6px 0;
}

.footer-links a {
  color: #000; /* paragraph black */
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
  color: #FFD700; /* gold hover */
  transform: translateX(4px);
}

/* Social Links */
.footer .social-links {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  margin-top: 10px;
}

.footer .social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0B1F5B;
  background-color: rgba(255, 255, 255, 0.2);
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Social hover effects */
.footer .social-links a.x:hover {
  background-color: #000000;
  color: #ffffff;
}

.footer .social-links a.facebook:hover {
  background-color: #1877F2;
  color: #ffffff;
}

.footer .social-links a.instagram:hover {
  background: radial-gradient(circle at 30% 30%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #ffffff;
}

.footer .social-links a.linkedin:hover {
  background-color: #0077B5;
  color: #ffffff;
}

.footer .social-links a:hover {
  transform: translateY(-2px) scale(1.15);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Map iframe */
.footer .map iframe {
  width: 100%;
  height: 220px;
  border: none;
  border-radius: 8px;
  margin-top: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}

/* Footer bottom */
.footer-bottom {
  margin-top: 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 12px;
  font-size: 14px;
  color: #555;
  text-align: center;
}

/* ==========================
   RESPONSIVE FOOTER
========================== */
@media (max-width: 768px) {
  .footer-sections {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 25px;
  }

  .footer-column {
    width: 100%;
    max-width: 350px;
    text-align: center;
    padding: 15px;
  }

  /* Hide quick links, show legal links on mobile */
  .footer-column.quick-links {
    display: none;
  }
  .footer-column.legal-links {
    display: block;
  }

  .footer-links li {
    margin: 8px 0;
  }

  .footer-links a {
    font-size: 15px;
    display: inline-block;
    padding: 5px 0;
  }

  .footer .map iframe {
    width: 95%;
    height: 180px;
  }

  .footer-bottom {
    font-size: 13px;
  }
}
/* ==========================
   SUPPLY CHAIN SECTION
========================== */
.supplychain-section {
  padding: 60px 20px;
  background-color: #f4f6f8; /* subtle background */
}

.supplychain-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.supply-heading {
  font-size: 2.2rem;
  text-align: center;
  color: #003366; /* professional deep blue */
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
  position: relative;
}

.supply-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px 30px;
  list-style: none;
  padding: 0;
}

.supply-list li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #333;
  background: #ffffff;
  border-radius: 10px;
  padding: 15px 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards;
}

.supply-list li i {
  color: #0066cc;
  margin-right: 12px;
  font-size: 1.5rem;
  min-width: 25px;
  text-align: center;
}

/* Hover effects */
.supply-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  background-color: #e6f0ff;
}

/* Fade-in animation for list items */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger animation delay for each item */
.supply-list li:nth-child(1) { animation-delay: 0s; }
.supply-list li:nth-child(2) { animation-delay: 0.1s; }
.supply-list li:nth-child(3) { animation-delay: 0.2s; }
.supply-list li:nth-child(4) { animation-delay: 0.3s; }
.supply-list li:nth-child(5) { animation-delay: 0.4s; }
.supply-list li:nth-child(6) { animation-delay: 0.5s; }
.supply-list li:nth-child(7) { animation-delay: 0.6s; }
.supply-list li:nth-child(8) { animation-delay: 0.7s; }

/* Responsive tweaks */
@media (max-width: 768px) {
  .supply-heading {
    font-size: 1.8rem;
  }
  .supply-list li {
    font-size: 0.95rem;
    padding: 12px 15px;
  }
}
/* ==========================
   MODERN COOKIES PAGE STYLES
========================== */

.cookies-modern {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f9fafc;
  padding: 40px 20px;
}

.cookies-hero {
  text-align: center;
  margin-bottom: 50px;
}

.cookies-hero i {
  font-size: 50px;
  color: #003366;
  margin-bottom: 15px;
}

.cookies-hero h1 {
  color: #003366;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.cookies-hero p {
  color: #333;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.cookies-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  width: 100%;
  max-width: 1000px;
}

.cookies-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cookies-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cookies-card i {
  font-size: 28px;
  color: #0066cc;
  margin-bottom: 10px;
}

.cookies-card h2 {
  font-size: 1.25rem;
  color: #003366;
  margin-bottom: 10px;
}

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

.cookies-card ul {
  list-style: disc inside;
  margin-top: 10px;
}

.cookies-note {
  text-align: center;
  margin-top: 40px;
  background: #003366;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  max-width: 800px;
}

.cookies-note a {
  color: #ffd700;
  text-decoration: underline;
}

.cookies-note a:hover {
  color: #fff;
  text-decoration: none;
}

/* ==========================
   PRIVACY POLICY PAGE STYLES
   ========================== */

.privacy-main {
  flex: 1;
  padding: 40px 20px;
  background-color: #fefefe;
}

.privacy-content {
  max-width: 950px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* Headings */
.privacy-content h1 {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 10px;
  text-align: center;
}

.privacy-content .last-updated {
  text-align: center;
  color: #777;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.privacy-content h2 {
  font-size: 1.3rem;
  color: #003366;
  margin-top: 35px;
  margin-bottom: 12px;
  border-left: 4px solid #0066cc;
  padding-left: 10px;
  font-weight: 600;
}

/* Text */
.privacy-content p,
.privacy-content ul {
  color: #1a1a1a;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 15px;
}

.privacy-content ul {
  padding-left: 25px;
}

.privacy-content ul li {
  margin-bottom: 8px;
  list-style-type: disc;
}

/* Links */
.privacy-content a {
  color: #003366;
  text-decoration: underline;
}

.privacy-content a:hover {
  color: #0055aa;
  text-decoration: none;
}

/* Contact Info */
.contact-info {
  background-color: #f9fafc;
  border-left: 4px solid #003366;
  padding: 15px 20px;
  border-radius: 5px;
  margin-top: 10px;
  font-size: 1rem;
  color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .privacy-content {
    padding: 25px 20px;
  }

  .privacy-content h1 {
    font-size: 1.7rem;
  }

  .privacy-content h2 {
    font-size: 1.2rem;
  }
}
/* ==========================
   TERMS & CONDITIONS PAGE 
   ========================== */

.terms-main {
  flex: 1;
  padding: 40px 20px;
  background-color: #fefefe;
}

.terms-content {
  max-width: 950px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* Headings */
.terms-content h1 {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 10px;
  text-align: center;
}

.terms-content .last-updated {
  text-align: center;
  color: #777;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.terms-content h2 {
  font-size: 1.3rem;
  color: #003366;
  margin-top: 35px;
  margin-bottom: 12px;
  border-left: 4px solid #0066cc;
  padding-left: 10px;
  font-weight: 600;
}

/* Text Styling */
.terms-content p,
.terms-content ul {
  color: #1a1a1a;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 15px;
}

.terms-content ul {
  padding-left: 25px;
}

.terms-content ul li {
  margin-bottom: 8px;
  list-style-type: disc;
}

/* Links */
.terms-content a {
  color: #003366;
  text-decoration: underline;
}

.terms-content a:hover {
  color: #0055aa;
  text-decoration: none;
}

/* Contact Info */
.contact-info {
  background-color: #f9fafc;
  border-left: 4px solid #003366;
  padding: 15px 20px;
  border-radius: 5px;
  margin-top: 10px;
  font-size: 1rem;
  color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .terms-content {
    padding: 25px 20px;
  }

  .terms-content h1 {
    font-size: 1.7rem;
  }

  .terms-content h2 {
    font-size: 1.2rem;
  }
}
/* ===========================
   Quotation Form Page 
=========================== */
.quotation-form-page {
  background: #f7f9fc;
  padding: 20px;
  font-family: 'Arial', sans-serif;
  max-width: 1100px;
  margin: auto;
}

/* Header */
.quotation-header {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.quotation-header .logo img {
  max-width: 120px;
}

.quotation-header .company-details {
  flex: 1;
  text-align: center;
}

.quotation-header .company-details h1 {
  margin: 0;
  font-size: 22px;
  color: #003366;
}

.quotation-header .company-details p {
  margin: 3px 0;
  font-size: 14px;
  color: #333;
}

/* Form Container */
.form-container {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-container h2 {
  text-align: left;
  color: #003366;
  margin-bottom: 15px;
  font-size: 20px;
}

/* Form Rows */
.form-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.form-row div,
.form-row label {
  flex: 1 1 45%;
}

/* Labels and Inputs */
label {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
  color: #003366;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
}

textarea {
  min-height: 70px;
  resize: vertical;
}

/* Checkbox label */
.form-row label input[type="checkbox"] {
  margin-right: 8px;
}

/* Submit Button */
button[type="submit"] {
  background: #003366;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button[type="submit"]:hover {
  background: #0055a5;
}

/* Feedback Message */
#quoteFormMessage {
  margin: 10px 0;
  font-weight: 500;
}

/* Honeypot hidden field */
.hidden-honeypot {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .form-row div {
    flex: 1 1 100%;
  }

  .quotation-header {
    flex-direction: column;
    text-align: center;
  }

  .quotation-header .logo img {
    margin-bottom: 10px;
  }
}
