

/* 
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    } */

    .container-fluid {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }

    /* ===== LANGUAGE STYLES ===== */
    [dir="ltr"] body { font-family: "Poppins", sans-serif; text-align: left; }
    [dir="rtl"] body { font-family: "Tajawal", sans-serif; direction: rtl; text-align: right; }
    [dir="rtl"] .navbar-nav { margin-left: 0; margin-right: auto; }
    [dir="rtl"] .nav-link, [dir="rtl"] .dropdown-item { text-align: right; }
    [dir="ltr"] .nav-link, [dir="ltr"] .dropdown-item { text-align: left; }

    /* ===== FIXED NAVBAR ===== */
    .fixed-top { position: fixed; top: 0; left: 0; right: 0; z-index: 1030; }
    body { padding-top: 70px; }

    /* ===== SLIDER ===== */
    .carousel-item {
      height: 90vh;
      min-height: 400px;
      background-size: cover;
      background-position: center;
      position: relative;
    }

    .carousel-caption {
      background: rgba(0, 0, 0, 0.5);
      padding: 20px;
      border-radius: 10px;
    }

    .carousel-caption h5 { font-size: 2rem; font-weight: 600; }
    .carousel-caption p { font-size: 1.1rem; color: #f1f1f1; }
    .carousel-caption button {
      background-color: #ffffff;
      color: #000;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      cursor: pointer;
    }
    .carousel-caption button:hover { background-color: #001f3f; color: #fff; }

    .carousel-control-prev-icon,
    .carousel-control-next-icon { filter: invert(100%); }

    @media (max-width: 768px) {
      .carousel-item { height: 60vh; }
      .carousel-caption h5 { font-size: 1.5rem; }
      .carousel-caption p { font-size: 1rem; }
    }

    @media (max-width: 576px) {
      .carousel-item { height: 50vh; }
      .carousel-caption { padding: 10px; }
      .carousel-caption h5 { font-size: 1.2rem; }
      .carousel-caption p { font-size: 0.9rem; }
    }

    /* ===== ABOUT US ===== */
    .about-container {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      padding: 60px 20px;
      gap: 20px;
    }
    .about-image img { max-width: 100%; border-radius: 10px; }
    .about-text { max-width: 600px; }
    .about-text h2 { margin-bottom: 20px; }
   /* ===== Navbar Base ===== */
  /* ===== Navbar Base ===== */
   

body {
  padding-top: 70px;
  font-family: "Poppins", sans-serif;
}

/* ===== SLIDER ===== */
.carousel-item {
  height: 90vh;
  background-size: cover;
  background-position: center;
}

.carousel-caption {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
}

.carousel-caption h5 {
  font-size: 2rem;
  font-weight: 600;
}

.carousel-caption p {
  color: #f1f1f1;
}

.carousel-caption button {
  background-color: #fff;
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
}

.carousel-caption button:hover {
  background-color: #001f3f;
  color: #fff;
}

/* ===== ABOUT US ===== */
.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  gap: 20px;
}

.about-image img {
  max-width: 100%;
  border-radius: 10px;
}

.about-text {
  max-width: 600px;
}

.about-text h2 {
  margin-bottom: 20px;
}

/* ===== PRODUCTS ===== */
.product-card {
  border: none;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-card .card-body {
  text-align: center;
}

.product-card h5 {
  color: #001f3f;
  font-weight: 600;
}

.product-card p {
  color: #555;
}

/* ===== FOOTER ===== */
.footer {
background: rgb(73, 190, 240); /* same as your hex #65d1ff */
  color: #fff;
}

.footer a:hover {
  color: #debd02;
}

.bg-navy {
background: rgb(73, 190, 240); /* same as your hex #65d1ff */
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .carousel-item {
    height: 60vh;
  }

  .about-container {
    flex-direction: column;
  }
}
.why-card {
    background-color: #001f3f; /* Navy */
    color: #fff;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }

  .icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #debd02; /* Gold */
    color: #001f3f; /* Navy */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    margin: 0 auto;
    transition: all 0.3s;
  }

  .why-card:hover .icon-circle {
    background-color: #001f3f;
    color: #debd02;
    transform: scale(1.1);
  }

  .text-gold {
    color: #debd02;
  }

  .why-card p {
    font-size: 0.9rem;
  }

  /* /product */
  .why-card {
    background-color: #ffffff; /* Navy */
    color: #000000;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .why-card img {
    height: 180px;
    object-fit: cover;
  }

  .why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }

  .text-gold {
    color: #000000; /* Gold accent */
  }

  .why-card p {
    font-size: 0.9rem;
  }
  /* ===== FORMAL BLAZER SECTION ===== */
.blazer-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #001f3f;
}

.blazer-features li::after {
  /* content: '●'; */
  position: absolute;
  left: 0;
  color: #001f3f; /* red bullet */
  font-size: 1.2rem;
}

/* Image styling */
.container img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Button styling */
.btn-danger {
  padding: 10px 20px;
  font-weight: 500;
  border-radius: 5px;
  transition: transform 0.3s;
}
.btn-danger:hover {
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .row.align-items-center {
    /* text-align: center; */
  }
  .blazer-features li::before {
    left: auto;
    top: auto;
    transform: translateX(-150%);
  position: absolute;
    font-size: 1.2rem;
  }
 
}
/* Fix extra width on mobile */
.container {
  max-width: 100% !important;
  padding-left: 15px;
  padding-right: 15px;
  overflow-x: hidden;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

/* Adjust blazer-features list on mobile */
.blazer-features {
  padding-left: 0;
}


@media (max-width: 768px) {
  .row.align-items-center {
    flex-direction: column;
    /* text-align: center; */
  }

  .row.align-items-center .col-12.col-md-6 {
    width: 100%;
    margin-bottom: 1.5rem;
    padding-left: 0;
    padding-right: 0;
  }
}
