  
@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&family=Cardo:ital,wght@0,400;0,700;1,400&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Lora:ital,wght@0,400..700;1,400..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto+Slab:wght@100..900&display=swap');

body{
    font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}
   /* ---------------- Global Reset ---------------- */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Poppins', sans-serif; color: #333; 
          line-height: 1.7; background-color: #ffffff; }

        /* ------------- Animations ------------- */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /*------------------- Top Bar -------------------*/
        .top-bar {
            background-color: #0a2540;
            color: #ffffff;
            font-size: 0.9rem;
            padding: 10px 0;
        }
        .top-bar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .top-bar-left span, .top-bar-right span {
            margin-right: 20px;
        }
.top-bar span i {
  margin-right: 5px;
  color: #fcd307;
}

        /* ------------- General ------------- */
        .container { max-width: 1260px; margin: 0 auto; padding: 0 30px; }
        h1, h2, h3, h4 { color: #0a2540; line-height: 1.2; margin-bottom: 10px; }
        h1 { font-size: 3rem; } h2 { font-size: 2.5rem; } h3 { font-size: 1.5rem; } h4 { font-size: 1.2rem; }
        p { margin-bottom: 15px; color: #666; }
        a { text-decoration: none; color: #fdb813; transition: color 0.3s ease; }
        ul { list-style-type: none; }
        section { padding: 80px 0; }
        .text-center { text-align: center; }

        /* ------------- Buttons ------------- */
        .btn { display: inline-block; padding: 12px 28px; border-radius: 5px; font-weight: 600; transition: all 0.3s ease; 
          border: none; cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
        .btn:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
        .btn-primary { background-color: #fdb813; color: #0a2540; }
        .btn-primary:hover { background-color: #ffc94a; }
        .btn-secondary { background-color: #ffffff; color: #0a2540; border: 1px solid #e0e0e0; }
        .btn-secondary:hover { background-color: #f8f9fa; }


        /*------------------- Header & Nav -------------------*/
     /* Initial header style */
header {
  background-color: #ffffff;
  padding: 10px 0;
  position:sticky; /* fixed so it can animate */
  top: -80px; /* hidden above viewport initially */
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  transition: top 0.6s ease; /* smooth slide down */
}

/* Class added when scrolling down */
header.scrolled {
  top: 0; /* slide into view */
  background-color: rgb(152, 170, 202);
  color: #e19e00;
}


        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1245px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .logo img {
            height: 60px;
            display: block;
        }

        nav .nav-links {
            display: flex;
            gap: 25px;
            align-items: center;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        nav .nav-links li a {
            color: #0a2540;
            font-weight: 500;
            padding-bottom: 5px;
            transition: color 0.3s, border-color 0.3s;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            cursor: pointer;
        }

        nav .nav-links li a:hover {
            color: #e19d00e9;
            
        
        }

        nav .nav-links li a i {
            margin-right: 8px;
            font-size: 1rem;
        }

  .product-menu li {
    margin: 1px 0;
  }

 .product-menu a {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: all 0.25s ease;
}

.product-menu img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.product-menu img:hover{
 transform: translateY(-3px);
}

.product-menu a:hover img {
  transform: translateY(-2px) scale(1.05);
}

  .product-menu a:hover {
    color: #0078ff;
  }
        /*------------------- Dropdown Menu -------------------*/
        .nav-links li.dropdown {
            position: relative;
        }

        .nav-links li.dropdown > a::after {
            content: "▾";
            margin-left: 5px;
            font-size: 0.7rem;
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #ffffff;
            min-width: 240px;
            border-radius: 6px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.15);
            list-style: none;
            padding: 5px 0;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.3s ease, transform 0.3s ease;
            z-index: 999;
        }

        .dropdown-menu.show {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        .dropdown-menu li a {
            display: flex;
            align-items: center;
            padding: 10px 15px;
            font-size: 0.9rem;
            color: #0a2540;
            border-bottom: none;
            white-space: nowrap;
            transition: background 0.3s, color 0.3s;
        }

        .dropdown-menu li a:hover {
            background-color: #f8f9fa;
            color: #d39400;
            border-radius: 4px;
        }

        .dropdown-menu li a i {
            margin-right: 8px;
        }

        /* Hamburger Menu Icon */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: #0a2540;
            border-radius: 2px;
            transition: all 0.3s ease-in-out;
        }

        /* ---------------- Hamburger & Mobile Menu ---------------- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #0a2540;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Mobile styles */
@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 20px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    width: 240px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    display: none; /* hidden by default */
    z-index: 1000;
  }

  .nav-links.active {
    display: flex; /* show when active */
  }

  .hamburger {
    display: flex; /* show hamburger only on mobile */
  }
}

/* Desktop reset */
@media (min-width: 901px) {
  .nav-links {
    display: flex !important;
    position: static;
    flex-direction: row;
    gap: 20px;
    background: none;
    box-shadow: none;
  }
}
.dropdown-header {
  display: flex;
  align-items: center;
}

.dropdown-link {
  color: #0a2540;
  text-decoration: none;
  font-weight: 500;
  padding: 5px 10px;
  flex: 1; /* pushes button to the right */
}

.dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 5px;
  transition: transform 0.3s ease;
}

.dropdown-toggle.rotate {
  transform: rotate(180deg);
}


        /*------------------- Responsive -------------------*/
        @media screen and (max-width: 768px) {
            nav .nav-links {
                position: absolute;
                top: 100%;
                right: 0;
                background: #fff;
                flex-direction: column;
                width: 200px;
                gap: 0;
                padding: 10px 0;
                box-shadow: 0 4px 12px rgba(0,0,0,0.1);
                display: none;
            }

            nav .nav-links.active {
                display: flex;
            }

            nav .nav-links li {
                width: 100%;
            }

            nav .nav-links li a {
                padding: 10px 20px;
            }

            .dropdown-menu {
                position: static;
                transform: translateY(0);
                opacity: 1;
                box-shadow: none;
                display: none; /* hidden until clicked */
            }

            .hamburger {
                display: flex;
            }
        }
/* ---------------- Hero Section ---------------- */

/* HERO SECTION */
.lockout-hero {
  position: relative;
  width: 100%;
  height: 70vh; /* Adjust height as needed */
  overflow: hidden;
}

/* IMAGES STACKED AND RESPONSIVE */
.lockout-hero .hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image covers hero area */
  opacity: 0;
  animation: fade 9s infinite;
}

/* DELAY FOR EACH IMAGE */
.lockout-hero .img1 { animation-delay: 0s; }
.lockout-hero .img2 { animation-delay: 3s; }
.lockout-hero .img3 { animation-delay: 6s; }

/* CROSSFADE KEYFRAMES */
@keyframes fade {
  0% { opacity: 0; }
  10% { opacity: 1; }
  33% { opacity: 1; }
  43% { opacity: 0; }
  100% { opacity: 0; }
}

/* OVERLAY FOR TEXT READABILITY */
.lockout-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.25);
  z-index: 1;
}

/* CENTERED TEXT OVERLAY */
#lockout-text {
  position: absolute;
  top: 50%;            
  left: 50%;           
  transform: translate(-50%, -50%);
  z-index: 2;           
  text-align: center;
  color: #fff;
  width: 90%;
  max-width: 800px;
  padding: 0 15px;
}
/* Container text initial state */
#lockout-text h1,
#lockout-text p {
  opacity: 0;
  transform: translateY(30px); /* start slightly below */
}

/* H1 Fade-Up */
#lockout-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
  font-weight: 600px;
  color: rgba(255, 179, 0, 0.899);
  animation: fadeUpH1 1s ease forwards;
  animation-delay: 0.3s; /* delay for h1 */
}

/* P Fade-Up */
#lockout-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  color: #fff;
  animation: fadeUpP 1s ease forwards;
  animation-delay: 0.6s; /* delay for p */
}

/* Keyframes for H1 */
@keyframes fadeUpH1 {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Keyframes for P */
@keyframes fadeUpP {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Fade-up animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply fade-up to button container */
.lockout-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;

  /* Fade-up effect */
  opacity: 0; /* initial hidden */
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.3s; /* slight delay */
}

/* Individual buttons remain the same */
.lockout-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 24px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
  color: white;
}

/* Yellow button */
.yellow-btn {
  background-color: #c0a001;
  color: #030640;
}

.yellow-btn:hover {
  background-color: #e5b800;
  transform: translateY(-3px);
  color: #fff;
}

/* Navy button */
.navy-btn {
  background-color: #001f4d;
}

.navy-btn:hover {
  background-color: #003080;
}

/* Arrow styling */
.arrow {
  font-size: 16px;
  line-height: 1;
}


/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  #lockout-text h1 { font-size: 2.2rem; }
  #lockout-text p { font-size: 1rem; }
}

@media (max-width: 992px) {
  #lockout-text h1 { font-size: 2rem; }
  #lockout-text p { font-size: 0.95rem; }
  .lockout-btn { font-size: 0.95rem; padding: 10px 20px; }
}

@media (max-width: 768px) {
  .lockout-hero { height: 50vh; }
  #lockout-text h1 { font-size: 1.8rem; }
  #lockout-text p { font-size: 0.9rem; }
  .lockout-btn { font-size: 0.9rem; padding: 8px 16px; }
}

@media (max-width: 480px) {
  .lockout-hero { height: 30vh; }
  #lockout-text h1 { font-size: 1.5rem; }
  #lockout-text p { font-size: 0.8rem; }
  .lockout-btn { font-size: 0.8rem; padding: 6px 12px; }
}
/*-------about-us-----*/
.lockout-about-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 50px 10%;
    background: #f4f6fb; /* light navy background */
    overflow: hidden;
}

/* Left Image Animation */
.lockout-about-image {
    flex: 1 1 45%;
    position: relative;
    opacity: 0;
    transform: translateX(-50px); /* start from left */
    animation: fadeLeft 1.5s ease forwards;
    animation-delay: 0.3s; /* delay for smoother effect */
    margin-top: 3%;
}

.lockout-about-image img {
    width: 100%;
    border-radius: 10px;
    border-right: none;
    box-sizing: border-box;
}

/* Right Content Animation */
.lockout-about-content {
    flex: 1 1 50%;
    padding: 20px 40px;
    opacity: 0;
    transform: translateX(50px); /* start from right */
    animation: fadeRight 1.5s ease forwards;
    animation-delay: 0.6s; /* slightly later for a staggered effect */
}

/* Subheading */
.lockout-about-content h5 {
    color: #030640;
    margin-bottom: 10px;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

/* Main Heading */
.lockout-about-content h2 {
    font-size: 38px;
    margin-bottom: 18px;
    font-weight: 800;
    color:rgb(253, 199, 22);
    line-height: 1.2;
}

/* Paragraph */
.lockout-about-content p {
    margin-bottom: 25px;
    line-height: 1.7;
    color: #030640;
    font-size: 15px;
}

/* Button */
.lockout-about-btn {
    display: inline-flex;
    align-items: center;
    background:rgb(253, 199, 22);
    color: #030640;
    font-weight: bold;
    padding: 12px 16px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: 0.4s ease;
    font-size: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.lockout-about-btn:hover {
    background: #00092c;
    transform: translateY(-3px);
    color: white;
}

.lockout-about-btn span {
    margin-left: 10px;
    font-size: 18px;
}

/* Keyframes */
@keyframes fadeLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media(max-width: 900px) {
    .lockout-about-section {
        flex-direction: column;
        padding: 30px 20px;
    }

    .lockout-about-image,
    .lockout-about-content {
        transform: translateX(0); /* remove side offset */
        text-align: center;
        animation: fadeUp 1.5s ease forwards; /* fade from bottom on small screens */
    }

    .lockout-about-content {
        padding: 20px 0;
    }
}

/* Fallback fadeUp for mobile */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======== Our Products Carousel ======== */
/* Section Base & Cards */
#index-scroll-section { 
   padding: 80px 50px;
  color: #fff;
  position: relative;
  text-align: center;
  overflow: hidden;

  /* Background image */
  background-image: url('../images/home/scroll-banner1.png'); /* replace with your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* Light overlay */
  background-color: rgba(0, 0, 0, 0.616); /* light shade overlay */
  background-blend-mode: lighten; /* blends the overlay with image */
}

/* Optional overlay for readability */
#index-scroll-section::before {
  content: '';
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(64, 64, 64, 0.5); /* semi-transparent blue overlay */
  z-index:1;
}

#index-scroll-section h2{
  font-size:30px;
  color:#fcd307;
  margin-bottom:10px;
  position: relative;
  z-index:2;
}
#index-scroll-section p{
  font-size:16px;
  color:#ffffff;
  margin-bottom:40px;
  position: relative;
  z-index:2;
}

/* Carousel Wrapper */
.index-carousel-wrapper{
  position:relative;
  width:100%;
  margin:0;
  overflow:hidden;
  position: relative;
  z-index:2;
}

/* Carousel Track */
.index-carousel-grid{
  display:flex;
  gap:20px;
  transition:transform 0.5s ease;
  padding:0 10px;
  box-sizing:border-box;
}

/* Product Cards */
.index-container{
  flex:0 0 calc(25% - 15px); /* 4 visible */
  position:relative;
  cursor:pointer;
  overflow:hidden;
  width: 80%;

}
.index-image{
  width:80%;
  height: 35vh;
  border: none; /* removed border from image */
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

.index-overlay{
  position:absolute;
  top:0;
  left:10%;
  width:0;
  height:100%;
  background-color: rgba(0, 0, 0, 0); /* initially transparent */
  border-radius:10px;
  transition:0.5s ease, border 0.5s ease, background-color 0.5s ease;
  border: none; /* no border initially */
}

.index-container:hover .index-overlay{
  width:80%; /* match image width */
  background-color: rgba(24, 27, 28, 0.5); /* light blue overlay on hover */
  border: 5px solid #edc200ef; /* border appears on hover */
}

.index-text{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  color:#ffffff;
  font-size:20px;
  font-weight:bold;
  opacity:0;
  transition:0.5s;
  white-space:nowrap;
}

.index-container:hover .index-text{
  opacity:1; /* text visible on hover */
}

/* Prev/Next Buttons */
.index-carousel-btn {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background-color:#fcd307;
  color:#030640;
  border:none;
  border-radius:50%;
  font-size:26px;
  padding:12px;        
  cursor:pointer;
  z-index:20;
  box-shadow:0 4px 15px rgba(0,0,0,0.5);
  transition:0.3s ease;
}
.index-carousel-btn:hover {
  background-color:#030640;
  color:#fcd307;
  transform:translateY(-50%) scale(1.1);
}
.index-carousel-btn.prev { left:5px; }
.index-carousel-btn.next { right:5px; }
.index-carousel-btn i { pointer-events:none; }
.view-products-btn {
  display: inline-block;
  padding: 12px 16px;
  background-color: #fcd307;
  color: #020144;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
  position: relative; /* ensures z-index works */
  z-index: 5;
  margin-top: 2%;
}

.view-products-btn:hover {
  background-color: #030640;
  color: #ffffff;
  transform: scale(1.05);
}

/* Responsive Cards */
@media(max-width:992px){ .index-container{ flex:0 0 calc(33.33% - 15px); } }
@media(max-width:768px){ .index-container{ flex:0 0 calc(50% - 12px); } }
@media(max-width:480px){ .index-container{ flex:0 0 100%; } }
/* 12 products----*/

/* ===================== */
/* Section container */
/* ===================== */
.products-section {
  padding: 60px 10%;
  text-align: center;
  background: linear-gradient(135deg,#f4f6fb,#e0ebff);
  font-family: 'Poppins', sans-serif;
}

/* Main heading */
.products-section h2 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #1a1a1a;
  position: relative;
}

.products-section h2::after {
  content: '';
  width: 80px;
  height: 4px;
  background: #007BFF;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Section subtitle */
.products-section p {
  font-size: 0.9em;
  margin-bottom: 50px;
  color: #555;
}

/* Product grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

/* Individual product card */
.product-card {
  display: block;
  background: #fff;
  border-radius: 15px;
  padding: 25px 20px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  max-width: 300px;
  margin: 0 auto;
}

/* Hover effects */
.product-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 30px rgba(0,0,0,0.15);
  background: #e6f0ff;
}

/* Product icon */
.product-card i {
  font-size: 3em;
  color: #042141;
  margin-bottom: 15px;
  transition: color 0.3s, transform 0.3s;
}

.product-card:hover i {
  color: #b9a404;
  transform: scale(1.2);
}

/* Product title */
.product-card h3 {
  font-size: 1.25em;
  margin-bottom: 10px;
  color: #1a1a1a;
  transition: color 0.3s;
}

/* Product description */
.product-card p {
  font-size: 1em;
  color: #555;
  transition: color 0.3s;
}

/* Hidden products wrapper */
.hidden-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

/* Animate hidden products */
.hidden-wrapper .product-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hidden-wrapper.show {
  max-height: 2000px; /* enough to show all hidden products */
}

.hidden-wrapper.show .product-card {
  opacity: 1;
  transform: translateY(0);
}

/* View More / Less button */
.view-toggle {
  margin-top: 40px;
  padding: 12px 40px;
  font-size: 1em;
  background: rgb(18, 2, 90);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.4s;
  
}

.view-toggle:hover {
  background: rgb(253, 199, 22);
color: white;
}

/* Responsive grid */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/* Customer Support Section with Background */
.customer-support {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 20px;
  color: #fff;
  overflow: hidden;
}

/* Semi-transparent overlay */
.customer-support .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:rgb(194, 149, 0); /* navy overlay with transparency */
  z-index: 1;
}

/* Flex content above overlay */
.customer-support .support-flex {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 20px;
  z-index: 2; /* above overlay */
}

/* Text styling */
.customer-support .support-text h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.customer-support .support-text p {
  font-size: 16px;
  color: #f0f0f0;
}

/* Button styling */
.support-button .support-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 24px;
  background-color: #fcd307; /* yellow button stands out on overlay */
  color: #001f4d;
  font-weight: bold;
  font-size: 14px;

  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
  z-index: 2;
}

.support-button .support-btn:hover {
  background-color: #e5b800;
  transform: translateY(-2px);
}

/* Arrow icon */
.support-btn .arrow {
  font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .customer-support .support-flex {
    flex-direction: column;
    text-align: center;
  }
  .support-button {
    margin-top: 20px;
  }
}

/* ---------- Footer Styling ---------- */
footer {
  background-color: #001F3F; /* navy blue */
  color: #fff;
  padding: 40px 60px;
  font-family: Arial, sans-serif;
  text-align: center;
  box-sizing: border-box;
}

/* Container with evenly spaced sections */
.footer-container {
  display: flex;
  justify-content: space-evenly; /* equal spacing for all sections */
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  width: 90%;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Each footer section — same width & spacing */
.footer-section {
  flex: 1 1 250px;       /* equal flexible sections */
  max-width: 250px;
  text-align: left;
  box-sizing: border-box;
}

/* Section Titles */
.footer-section h4 {
  font-size: 18px;
  margin-bottom: 14px;
  color: #fff;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

/* Underline animation */
.footer-section h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #FFD700;
  margin-top: 5px;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.footer-section h4:hover::after {
  width: 60px;
}

/* Paragraphs */
.footer-section p {
  font-size: 15px;
  color: #ddd;
  margin-bottom: 12px;
  line-height: 1.6;
}

/* Links */
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
  font-size: 15px;
}

/* Fade-up hover animation for links */
.footer-section ul li a {
  display: inline-block;
  text-decoration: none;
  color: #e8e8e8;
  transition: all 0.6s ease-in-out;
  transform: translateY(0);
}

.footer-section ul li a:hover {
  color: #FFD700;
  text-decoration: underline;
  transform: translateY(-5px);
}

/* Icon color transitions for links */
.footer-section ul li a i {
  margin-right: 8px;
  color: #FFD700;
  transition: color 0.5s ease, transform 0.5s ease;
}

.footer-section ul li a:hover i {
  color: #00FFFF;
  transform: translateY(-3px);
}

/* ---------- Social Icons ---------- */
.social-icons {
  display: flex;
  justify-content: left;
  gap: 18px;
  margin-top: 20px;
}

.social-icons a {
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #003366;
  color: #FFD700;
  text-decoration: none;
  transition: all 0.5s ease;
  opacity: 0.9;
}

/* Hover animation with fade-up and color change */
.social-icons a:hover {
  color: #00FFFF;
  background: #00509E;
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 8px 15px rgba(0, 255, 255, 0.4);
  opacity: 1;
  transition: all 0.6s ease-in-out;
}

/* Page-load fade-up animation */
@keyframes fadeUpIcon {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.social-icons a {
  animation: fadeUpIcon 1s ease forwards;
}

.social-icons a:nth-child(1) { animation-delay: 0.2s; }
.social-icons a:nth-child(2) { animation-delay: 0.4s; }
.social-icons a:nth-child(3) { animation-delay: 0.6s; }
.social-icons a:nth-child(4) { animation-delay: 0.8s; }

/* ---------- Footer Bottom ---------- */
.footer-bottom {
  border-top: 1px solid #003366;
  padding-top: 20px;
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  color: #ddd;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  footer {
    padding: 40px 30px;
  }
  .footer-container {
    justify-content: center;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .footer-section {
    max-width: 100%;
  }

  .social-icons {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 30px 20px;
  }

  .footer-section h4 {
    font-size: 16px;
  }

  .footer-section p,
  .footer-section ul li {
    font-size: 14px;
  }

  .social-icons a {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }

  .footer-bottom {
    font-size: 12px;
  }
}

/* Default hover color */
.nav-links a:hover {
  color: #007BFF; /* blue example */
}

/* When header has scrolled */
header.scrolled {
  background-color: #fff; /* optional: make header solid */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

header.scrolled .nav-links a {
  color: #333; /* normal link color when scrolled */
}

header.scrolled .nav-links a:hover {
  color: #FF5733; /* your hover color after scroll (orange example) */
}

/* Optional transition for smooth effect */
header, .nav-links a {
  transition: all 0.3s ease;
}
header.scrolled .nav-links i {
  color: #ffdd00;
}
