body {
      font-family: 'Segoe UI', sans-serif;
    }


.top-bar {
    background:white;
    color: black;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: top 0.3s;
    border-bottom: 2px solid rgb(219, 218, 218); /* Added border-bottom */

}
.top-bar a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}
/* Contact Icons (Phone & Email) */
.contact-icons {
    display: flex;
}

.contact-icons a {
    font-size: 14px;
    color:black;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.contact-icons a i {
    margin-right: 5px;
    font-size: 14px;
    color: rgb(4, 4, 77);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

/* Hover Effect */
.contact-icons a:hover {
    color: gray;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    font-size: 14px;
    color:rgb(4, 4, 77);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

/* Hover Effect */
.social-icons a:hover {
    color: gray;
}
@media (max-width: 768px) {
    .top-bar {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 10px 15px;
    }

    .contact-icons {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px; /* Adds spacing between phone and email */
    }

    .social-icons {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .contact-icons a,
    .social-icons a {
        font-size: 12px; /* Adjusts font size for better readability */
    }
    .contact-icons a:nth-child(2) { /* Hide the email on small screens */
        display: none;
    }
}
@media (max-width: 576px) {
    .top-bar {
        flex-direction: row; /* Keeps left and right sections separate */
        align-items: center;
        justify-content: space-between;
    }

    .contact-icons {
        flex-direction: column;
        align-items: flex-start;
    }

    .social-icons {
        justify-content: flex-end;
    }
}
/* Hide Free Quote button and Search icon on small screens */
@media (max-width: 768px) {
    .search-icon,
    .for-more-btn {
        display: none !important;
    }
}



/*navbar*/
   .navbar {
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position:sticky;
    padding-top: 70px;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: top 0.3s;
    padding:7px ;
    font-size: 15px;
}

    .navbar-brand img {
      height: 40px;
    }

    .nav-link {
      color: #000;
    }

    .nav-link.active {
      color: #021b6f;
      border-bottom: 2px solid #021b6f;
    }
    .navbar .btn-primary{
        background-color: #021b6f;
    }
    .hero {
      text-align: center;
      padding: 2rem 2rem 4rem;
      z-index: 1;
      position: relative;
      color: #000;
      justify-content: center;
      align-items: center;
    }

/* ========== UNIVERSAL STYLES ========== */
.btn-gradient {
  padding: 6px 20px;
  font-size: 13px;
  color: #fff;
  background: linear-gradient(to right, #ca3737, #9b0216);
  border: none;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.btn-gradient:hover {
  background: linear-gradient(to right, #fd1d0d, #ff0000);
  color: white;
}

/* ========== DESKTOP & TABLETS (min-width: 992px) ========== */
@media (min-width: 992px) {
  .navbar .dropdown-menu {
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: calc(100% + 10px);
    min-width: 600px;
    z-index: 1000;
    border-radius: 0 !important;
    animation: fadeSlideDown 0.3s ease-in-out;
    display: none;
    pointer-events: none;
  }

  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    pointer-events: auto;
  }

  @keyframes fadeSlideDown {
    0% {
      opacity: 0;
      transform: translateY(10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .mega-menu,
  .blogs-dropdown {
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    max-width: 90vw;
    background: linear-gradient(to bottom right, #ffffff, #f7f7f7);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    z-index: 9999;
    border-radius: 16px !important;
    padding: 25px 30px !important;
    border: 1px solid #eaeaea;
  }

  .mega-menu .dropdown-header {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    border-left: 4px solid #ca3737;
    padding-left: 10px;
  }

  .mega-menu .dropdown-item {
    font-size: 14px;
    color: #555;
    padding: 6px 0;
    position: relative;
    transition: all 0.3s ease;
  }

  .mega-menu .dropdown-item::before {
    content: "→";
    position: absolute;
    left: -18px;
    color: transparent;
    transition: 0.3s;
  }

  .mega-menu .dropdown-item:hover {
    color: #ca3737;
    padding-left: 10px;
    background: transparent;
  }

  .mega-menu .dropdown-item:hover::before {
    color: #ca3737;
  }

  .mega-menu .row > div {
    padding: 0 15px;
    border-right: 1px solid #eaeaea;
  }

  .mega-menu .row > div:last-child {
    border-right: none;
  }

  .blogs-dropdown {
    min-width: 620px;
    transition: all 0.4s ease;
  }

  .blog-card {
    display: flex;
    gap: 12px;
    background-color: #f9f9f9;
    padding: 10px;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border-radius: 8px;
  }

  .blog-card:hover {
    background-color: #eef5ff;
    transform: translateY(-3px);
  }

  .blog-img img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .blog-text h6 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px;
  }

  .blog-text small {
    font-size: 12px;
    color: #6c757d;
  }
}

/* ========== MOBILE STYLES (max-width: 991px) ========== */
@media (max-width: 991px) {
  .navbar .dropdown-menu {
    position: static !important;
    transform: none !important;
    width: 100%;
    padding: 1rem 0;
    border: none;
    box-shadow: none;
    border-radius: 0 !important;
  }

  .mega-menu,
  .blogs-dropdown {
    position: static !important;
    transform: none !important;
    width: 100%;
    max-width: 100%;
    margin-top: 10px;
    border-radius: 0;
    background: #fff;
  }

  .mega-menu .row,
  .blogs-dropdown .row {
    flex-direction: column;
  }

  .mega-menu .col-md-3,
  .blogs-dropdown .col-6,
  .mega-menu .col-md-4 {
    width: 100%;
    margin-bottom: 15px;
    padding: 0.5rem 1rem;
  }

  .blog-card {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    border-radius: 0;
  }

  .blog-img img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 0;
  }

  .blog-text h6 {
    font-size: 14px;
  }

  .blog-text small {
    font-size: 12px;
  }
}

/* ========== EXTRA MOBILE TWEAKS (optional) ========== */
@media (max-width: 576px) {
  .blogs-dropdown {
    min-width: 100% !important;
  }

  .blog-card {
    flex-direction: row;
  }

  .blog-img img {
    width: 50px;
    height: 50px;
  }
}



/* Home section */
.solar-hero {
  background: url('images/Blitz-logo.jpg') center center/cover no-repeat;
  height: 100vh;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 30px;
  padding-right: 30px;
  flex-wrap: wrap;
}

.solar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(42, 42, 42, 0.662);
  z-index: 1;
}

.solar-content {
  position: relative;
  z-index: 2;
  padding: 5px;
  border-radius: 12px;
  text-align: left;
  max-width: 600px;
}

.solar-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideIn 1.9s ease-out forwards;
  letter-spacing: 1px;
}

.highlight {
  color: #c80a0a;
}

.solar-content p {
  font-size: 1.2rem;
  margin-top: 20px;
  color: #dddddd;
}

.btn-solar {
  margin-top: 20px;
  background: #c80a0a;
  border: none;
  color: white;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 50px;
  transition: background 0.3s ease;
}

.btn-solar:hover {
  background: #e63946;
}

.solar-form {
  position: relative;
  z-index: 2;
  background-color: rgba(10, 10, 10, 0.244);
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  margin-left: 30px;
}

.solar-form-container .form-control {
  border-radius: 10px;
  margin-bottom: 15px;
}

.form-control:focus {
  box-shadow: none;
  border-color: #c80a0a;
}

.solar-form-container {
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  gap: 2px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.solar-btn-submitt {
  margin-top: 2px;
  padding: 10px 30px;
  width: fit-content;
  align-self: center;
  border: none;
  border-radius: 50px;
  background-color: #c80a0a;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.solar-btn-submitt:hover {
  background-color: #e63946;
}

form input,
form select,
form textarea,
form .phone-wrapper {
  margin-bottom: 5px; /* space between each form element */
}

    .phone-wrapper {
      display: flex;
      gap: 10px;
    }

    .phone-wrapper input:first-child {
      flex: 1;
    }

    .phone-wrapper input:last-child {
      flex: 3;
    }


/* Animation */
.bolt {
  position: absolute;
  width: 100px;
  height: 100px;
  stroke: #ffffff;
  stroke-width: 2;
  fill: none;
  opacity: 0;
  animation: flash-bolt 3s infinite ease-in-out;
  filter:
    drop-shadow(0 0 6px #ffffff)
    drop-shadow(0 0 12px #ffffff)
    drop-shadow(0 0 20px #ff5050);
  pointer-events: none;
}

.bolt-1 { top: 5%; left: 15%; animation-delay: 0s; }
.bolt-2 { top: 25%; left: 65%; animation-delay: 0.6s; }
.bolt-3 { top: 50%; left: 40%; animation-delay: 1.2s; }
.bolt-4 { top: 70%; left: 20%; animation-delay: 1.8s; }
.bolt-5 { top: 80%; left: 75%; animation-delay: 2.4s; }
.bolt-6 { top: 10%; left: 80%; animation-delay: 0.3s; }
.bolt-7 { top: 15%; left: 10%; animation-delay: 0.9s; }
.bolt-8 { top: 35%; left: 85%; animation-delay: 1.5s; }
.bolt-9 { top: 55%; left: 10%; animation-delay: 2.1s; }
.bolt-10 { top: 85%; left: 65%; animation-delay: 2.7s; }

@keyframes flash-bolt {
  0%, 88%, 100% {
    opacity: 0;
    transform: scale(1);
  }
  90% {
    opacity: 1;
    transform: scale(1.1);
  }
  92% {
    opacity: 0.7;
    transform: scale(1);
  }
  94% {
    opacity: 0;
  }
}

/* Medium Devices */
@media (max-width: 768px) {
  .solar-hero {
    height: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 15px;
  }

  .solar-content {
    text-align: center;
    margin-bottom: 30px;
    max-width: 100%;
    padding: 10px;
  }

  .solar-content h1 {
    font-size: 1.75rem;
  }

  .solar-content p {
    font-size: 1rem;
  }

  .btn-solar {
    font-size: 1rem;
    padding: 10px 20px;
    width: 100%;
  }

  .solar-form {
    margin: 0;
    width: 100%;
    max-width: 100%;
    padding: 20px;
  }

  .solar-form-container {
    gap: 10px;
  }

  .solar-btn-submitt {
    width: 40%;
    font-size: 1rem;
  }
}

/* Small Devices */
@media (max-width: 480px) {
  .solar-content h1 {
    font-size: 1.4rem;
    line-height: 1.5;
  }

  .solar-content p {
    font-size: 0.9rem;
  }

  .btn-solar {
    font-size: 0.9rem;
    padding: 10px;
    width: 40%;
  }

  .solar-form {
    padding: 20px 15px;
  }

  .form-control,
  .form-select,
  textarea {
    font-size: 0.9rem;
  }

  .solar-btn-submitt {
    font-size: 1rem;
    padding: 10px;
  }

  .bolt {
    display: none;
  }
}

/* Large Screens */
@media (min-width: 1200px) {
  .solar-hero {
    padding-left: 80px;
    padding-right: 80px;
  }

  .solar-content h1 {
    font-size: 3rem;
  }

  .solar-content p {
    font-size: 1.3rem;
  }

  .btn-solar {
    font-size: 1.1rem;
    padding: 14px 30px;
  }

  .solar-form {
    max-width: 520px;
    padding: 35px;
  }

  .solar-btn-submitt {
    font-size: 1rem;
    padding: 12px 36px;
  }
}



/*Animation*/
.bolt {
  position: absolute;
  width: 100px;
  height: 100px;
  stroke: #ffffff;
  stroke-width: 2;
  fill: none;
  opacity: 0;
  animation: flash-bolt 3s infinite ease-in-out;
  filter:
    drop-shadow(0 0 6px #ffffff)
    drop-shadow(0 0 12px #ffffff)
    drop-shadow(0 0 20px #ff5050); /* Optional red glow hint */
  pointer-events: none;
}

/* Each bolt with a different delay for realism */
.bolt-1 { top: 5%; left: 15%; animation-delay: 0s; }
.bolt-2 { top: 25%; left: 65%; animation-delay: 0.6s; }
.bolt-3 { top: 50%; left: 40%; animation-delay: 1.2s; }
.bolt-4 { top: 70%; left: 20%; animation-delay: 1.8s; }
.bolt-5 { top: 80%; left: 75%; animation-delay: 2.4s; }

/* Add positions and staggered animation delays */
.bolt-6 { top: 10%; left: 80%; animation-delay: 0.3s; }
.bolt-7 { top: 15%; left: 10%; animation-delay: 0.9s; }
.bolt-8 { top: 35%; left: 85%; animation-delay: 1.5s; }
.bolt-9 { top: 55%; left: 10%; animation-delay: 2.1s; }
.bolt-10 { top: 85%; left: 65%; animation-delay: 2.7s; }


@keyframes flash-bolt {
  0%, 88%, 100% {
    opacity: 0;
    transform: scale(1);
  }
  90% {
    opacity: 1;
    transform: scale(1.1);
  }
  92% {
    opacity: 0.7;
    transform: scale(1);
  }
  94% {
    opacity: 0;
  }
}


    .hero h1 {
    font-size: 4rem;
    font-family: 'Orbitron', sans-serif;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideIn 1.9s ease-out forwards;
    }

    .hero h1 span {
    color: #003d99;
    animation: glowText 2s ease-in-out infinite alternate;
    }
    


    /* Animation Keyframes */
    @keyframes fadeSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }

    @keyframes glowText {
    from {
        text-shadow: 0 0 5px #003d99;
    }
    to {
        text-shadow: 0 0 15px #003d99, 0 0 30px #003d99;
    }
    }


    .about-heading {
      font-size: 2.5rem;
      line-height: 1.2;
    }

    .about-description {
      font-size: 1.1rem;
      max-width: 800px;
      color: #0a0a0a;
    }

    .features {
      z-index: 1;
      position: relative;
      display: flex;
      justify-content: center;
      gap: 2rem;
      padding: 3rem 2rem;
      flex-wrap: wrap;
    }

    .feature-card {
      padding: 1.8rem;
      border-radius: 1rem;
      max-width: 300px;
      text-align: left;
      transition: transform 0.3s ease;
      color: #000;
      box-shadow: #333;
      font-size: 0.6;

      transform: translateY(-10px);
      background-color: white;
      border: 1px solid #ddd;
      box-shadow: 0 4px 10px rgba(10, 10, 191, 0.71);
    }

    .feature-card:hover {
      transform: translateY(-10px);
      background-color: white;
      color: #212529;
      border: 1px solid #ddd;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(10, 10, 191, 0.71);
      height: 100%;
    }
    

    .feature-icon {
      font-size: 2rem;
      padding: 1rem;
      border-radius: 0.5rem;
      margin-bottom: 1rem;
      color: #040a55;
    }


     .protection-section {
      position: relative;
      padding: 80px 0;
      overflow: hidden;
      background-color: white;
    }

    .protection-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: linear-gradient(to right, rgba(0,0,0,0.05) 1px, transparent 1px),
                        linear-gradient(to bottom, rgba(0,0,0,0.05) 1px, transparent 1px);
      background-size: 60px 60px;
      z-index: 0;
    }

    .protection-content {
      position: relative;
      z-index: 1;
    }

    .card-custom {
      background-color: white;
      color: #212529;
      border: 1px solid #ddd;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(1, 1, 87, 0.05);
      height: 100%;
    }
    .card-custom:hover {
      background-color: white;
      color: #212529;
      border: 1px solid #ddd;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(10, 10, 191, 0.71);
      height: 100%;
    }
    .icon-circle {
      background-color: #0d6efd;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      margin-bottom: 15px;
    }

    .icon-circle svg {
      color: white;
      width: 24px;
      height: 24px;
    }

    .section-protection {
      position: relative;
      padding: 80px 0;
      overflow: hidden;
      z-index: 1;
    }

    /* Animated background lines */
    .section-protection::before {
      content: "";
      position: absolute;
      top: -100%;
      left: -100%;
      width: 300%;
      height: 300%;
      background-size: 60px 60px;
      animation: animateGrid 30s linear infinite;
      z-index: 0;
    }

    @keyframes animateGrid {
      0% {
        transform: translate(0, 0);
      }
      100% {
        transform: translate(-60px, -60px);
      }
    }

    .protection-content {
      position: relative;
      z-index: 1;
    }

    .icon-circle {
      background-color: #1C295C;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0 auto 20px auto;
    }

    .icon-circle svg {
      color: #fff;
      width: 24px;
      height: 24px;
    }

    .section-heading {
      font-weight: 700;
      color: #000;
      font-size: 32px;
    }

    .section-heading .highlight {
      color: #0c257c;
    
    }

    .section-subtext {
      max-width: 700px;
      margin: 0 auto 40px auto;
      color: #6c757d;
      font-size: 16px;
    }

    .card-custom {
      background-color: #ffffff;
      border: 1px solid #e0e0e0;
      border-radius: 10px;
      padding: 30px 20px;
      height: 100%;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .card-title {
      font-weight: 600;
      color: #1C295C;
      margin-bottom: 15px;
    }

    .card-text {
      color: #6c757d;
      font-size: 15px;
    }

    .btn-darkblue {
      background-color: #1C295C;
      color: #fff;
      border: none;
    }

    .btn-darkblue:hover {
      background-color: #2a3a75;
      color: white;
    }

    .btn-custom {
      margin-top: 40px;
      padding: 10px 30px;
    }


/*whatsapp floating */
.whatsapp-button {
    position: fixed;
    left: 20px; /* Positioned on the left */
    bottom: 20px; /* Stays at the bottom */
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    padding: 15px;
    font-size: 24px;
    text-decoration: none;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    z-index: 9999; /* Ensures it's above other elements */
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.whatsapp-button:hover {
    background-color: #1ebe57;
    text-decoration: none;
}

/*Inquiry button-form css*/
.inquiry-button {
    position: fixed;
    right: 0;
    top: 60%;
    transform: translateY(-50%);
    background-color: #192655;
    color: white;
    padding: 15px;
    font-size: 14px;
    text-decoration: none;
    border-radius: 5px;
    writing-mode: vertical-rl;
    text-align: center;
    cursor: pointer;
    z-index: 9999;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.inquiry-button:hover{
    text-decoration: none;
    color: white;
}
.inquiry-form {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: auto;
    background: white;
    box-shadow: -2px 0 5px rgba(0,0,0,0.5);
    transition: right 0.3s;
    z-index: 10000;
}

.inquiry-form .form-header {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    background: #192655;
    color: white;
    padding: 12px;
    font-weight: bold;
    width: 100%;
    box-sizing: border-box;
}

.close-button {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    outline: none;
}

.close-button:hover {
    color: #ccc;
}

.inquiry-form .form-container {
    padding: 12px;
}

.inquiry-form label {
    font-weight: bold;
    display: block;
    margin-top: 8px;
    color: #333;
    font-size: 14px;
}

.inquiry-form input, .inquiry-form select, .inquiry-form textarea {
    width: 100%;
    padding: 6px;
    margin-top: 4px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.inquiry-form textarea {
    resize: none;
    height: 60px;
}

.submit-button {
    background-color: #0e1739;
    color: white;
    font-size: 14px;
    padding: 8px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.submit-button:hover {
    background-color: #0d1b38;
}


.hero-heading{
    text-align:center;
}



    /*about us*/
    .about-us-section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 80px 60px;
      background-color: #f5f7ff;
      gap: 40px;
      flex-wrap: wrap;
    }

    .about-us-section .left {
      flex: 1 1 50%;
    }

    .about-us-section .left h5 {
      color: #0a064b;
      font-size: 13px;
      letter-spacing: 1px;
      margin-bottom: 10px;
    }

    .about-us-section .left h1 {
      font-size: 38px;
      font-weight: 700;
      color: #111827;
      margin-bottom: 20px;
    }

    .about-us-section .left p {
      font-size: 15px;
      color: #4b5563;
      margin-bottom: 30px;
      line-height: 1.7;
      max-width: 90%;
      text-align:justify;
      justify-content: center;
    }

    .about-us-section .stats {
      display: flex;
      gap: 40px;
      margin-bottom: 25px;
    }

    .about-us-section .stat {
      display: flex;
      align-items: center;
      gap: 12px;
    }

/* animation logic at the very end */
.about-us-section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  min-height: 300px; /* make it visible */
}

.about-us-section.show {
  opacity: 1;
  transform: translateY(0);
}


.about-us-section {
  min-height: 300px;
}

    .stat-icon {
      background: #e0e7ff;
      padding: 10px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .stat-icon img {
      width: 18px;
      height: 18px;
    }

    .stat-info h3 {
      margin: 0;
      font-size: 20px;
      font-weight: 700;
      color: #111827;
    }

    .stat-info span {
      font-size: 13px;
      color: #6b7280;
    }

    .clients {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .avatars {
      display: flex;
    }

    .avatars img {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 2px solid white;
      margin-left: -10px;
      box-shadow: 0 0 5px rgba(0,0,0,0.1);
    }

    .client-text {
      font-size: 14px;
      color: #374151;
    }

    .about-us-section .right {
      flex: 1 1 45%;
      position: relative;
    }

    .about-us-section .right img.main {
      width: 100%;
      max-width: 400px;
      border-radius: 16px;
      display: block;
    }


    @media (max-width: 768px) {
      .about-us-section {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
      }


      .feature-points {
        text-align: left !important; /* force left align */
      }
    
      .feature-points ul {
        padding-left: 20px;
        list-style-position: inside;
        margin: 0 auto 0 0; /* ensures it's not centered */
      }
    
      .feature-points li {
        text-align: left;
      }



      .about-us-section .left h1 {
        font-size: 28px;
        text-align: center;
      }

      .stats {
        justify-content: center;
      }

      .about-us-section .right img.main {
        margin: 20px auto 0;
      }
    }
    


      .badger-container {
    position: absolute;
    top: 10px;
    right: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .badger {
    background-color: white;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #374151;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .badger:hover {
    background-color: #f0f0f0;
  }

  .badger i {
    font-size: 14px;
  }

  @media (max-width: 768px) {
    .badger-container {
      justify-content: center;
      top: 10px;
      left: 50%;
      transform: translateX(-50%);
      flex-wrap: wrap;
    }
  }
  .badger{
    text-decoration: none;
  }
  .badger:hover {
  background-color: #e0e7ff;
  text-decoration: none;
}

.feature-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  
  color: #4b5563;
  margin-bottom: 30px; /* <-- add this line */

}

.feature-item p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .feature-points {
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
  }

  .feature-item {
    flex: 1;
  }
}





.why-choose-us {
  position: relative;
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
  overflow: hidden;
}

.dotted-bg {
  position: absolute;
  top: 20%;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 0;
  opacity: 0.3;
}

.why-choose-us .section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1a1a1a;
  position: relative;
  z-index: 2;
}

.card-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.choose-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 30px 20px;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
}

.choose-card:hover {
  transform: translateY(-12px);
  background-color: #0b1f66; /* Dark Blue */
  box-shadow: 0 50px 100px rgba(11, 31, 102, 0.5); /* More intense shadow */
  color: #fff;
}

.choose-card:hover h4,
.choose-card:hover p,
.choose-card:hover i {
  color: #fff;
}

.choose-card h4,
.choose-card p,
.choose-card i {
  transition: color 0.3s ease;
}

.choose-card img {
  height: 40px;
  margin-bottom: 20px;
}

.choose-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.choose-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.choose-card.active {
  background-color: #051b5d;
  color: white;
}

.choose-card.active h4,
.choose-card.active p {
  color: white;
}



.dotted-bg {
  position: absolute;
  top: 20%;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 0;
  opacity: 0.3;
}










    .filter-btn {
      margin: 0.25rem;
      border-radius: 20px;
    }

    .filter-btn.active {
      background-color: #003d99;
      color: #fff !important;
      border-color: #003d99;
    }

    .product-card {
      background-color: #ffffff;
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s, border 0.3s;
      border: 1px solid #ddd;
      position: relative;
      z-index: 1;
    }

    .product-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 0 20px rgba(0, 61, 153, 0.4);
      border-color: #003d99;
    }

    .product-image {
      width: 100%;
      height: 220px;
      object-fit: contain;
      transition: transform 0.4s ease, filter 0.3s ease;
      padding: 10px;
    }
    .highlight-product {
      background-color: #e6f0ff !important; /* Light blue background */
      border: 2px solid #003d99 !important;
      box-shadow: 0 0 12px rgba(0, 61, 153, 0.3);
      position: relative;
      z-index: 2;
    }
    .highlight-product::after {
      content: '';
      position: absolute;
      top: -4px;
      left: -4px;
      right: -4px;
      bottom: -4px;
      border-radius: 12px;
      box-shadow: 0 0 12px rgba(0, 61, 153, 0.4);
      animation: pulse-highlight 2s infinite ease-in-out;
      z-index: -1;
    }

    @keyframes pulse-highlight {
      0% {
        box-shadow: 0 0 8px rgba(0, 61, 153, 0.2);
      }
      50% {
        box-shadow: 0 0 16px rgba(0, 61, 153, 0.6);
      }
      100% {
        box-shadow: 0 0 8px rgba(0, 61, 153, 0.2);
      }
    }


    .product-card:hover .product-image {
      transform: scale(1.08);
      filter: brightness(1.1) drop-shadow(0 0 8px rgba(0, 61, 153, 0.3));
    }

    .badge {
      margin-right: 5px;
    }

    .btn-primary {
      background-color: #003d99;
      border-color: #003d99;
    }

    .btn-primary:hover {
      background-color: #002c73;
      border-color: #002c73;
    }

    .btn-outline-light {
      color: #02214f;
      border-color: #003d99;
    }

    .btn-outline-light:hover {
      background-color: #003d99;
      color: #fff;
    }

    .text-primary {
      color: #003d99 !important;
    }

    hr {
      border-top: 1px solid #131212;
    }



/* testimonial */
    .testimonial-wrapper {
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s ease;
    }

    .testimonial-wrapper.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .testimonial-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem 1rem;
      text-align: center;
    }

    .section-title {
      font-size: 2rem;
      margin-bottom: 0.5rem;
    }

    .section-subtitle {
      font-size: 1.1rem;
      color: #64748b;
      margin-bottom: 2rem;
    }

    .section-underline {
      width: 120px;
      height: 4px;
      margin: 0.5rem auto 2rem;
      border-radius: 2px;
      background: linear-gradient(to right, #062a64, #fc1010, #2067b4);
    }

    .carousel-container {
      overflow: hidden;
      max-width: 1200px;
      margin: 0 auto 2rem;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.5s ease;
    }

    .testimonial-slide {
      flex: 0 0 100%;
      box-sizing: border-box;
      padding: 1rem;
    }
    .testimonial-slide h4{
      font-size: 16px;
    }
        .testimonial-slide p{
      font-size: 14px;
      color: #8f8e8e;
      text-align: justify;
    }
    .testimonial-card {
    padding: 1rem 1rem 1rem 1rem; /* add more top padding */
    position: relative;
    }


    @media (min-width: 768px) {
      .testimonial-slide {
        flex: 0 0 50%;
      }
    }

    @media (min-width: 1024px) {
      .testimonial-slide {
        flex: 0 0 33.3333%;
      }
    }
  .text-yellow-400 {
      color: #facc15;
    }

    .testimonial-card {
      background: #ffffff;
      border-radius: 0.5rem;
      box-shadow: 0 4px 6px rgba(7, 9, 76, 0.196);
      padding: 1rem;
      position: relative;
      height: 100%;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    }

    .quote-icon {
      font-size: 1.5rem;
      color: #94a3b8;
      position: absolute;
      top: 1rem;
      left: 1rem;
    }

    .testimonial-header {
      display: flex;
      align-items: center;
      margin-bottom: 0.75rem;
    }

    .testimonial-header img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      margin-right: 0.75rem;
    }
.testimonial-logo {
  width: 50px;
  height: 50px;
  border: 2px solid #edededb3; /* Teal green border */
  border-radius: 50%; /* Makes it circular */
  padding: 4px;
  object-fit: cover;
  background-color: #fff; /* Optional: white background inside border */
}

    .testimonial-body {
      font-style: italic;
      margin-bottom: 0.75rem;
      font-size: 0.9rem;
      color: #64748b;
    }

    .testimonial-meta {
      display: flex;
      align-items: center;
      font-size: 0.75rem;
      color: #64748b;
    }

    .testimonial-meta i {
      margin-right: 0.5rem;
    }

    .carousel-controls {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 1rem;
    }

.carousel-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #646464;
  font-size: 24px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
}

.carousel-arrow:hover {
  background-color: #c2e7f4; /* Navy blue hover */
  color: black;
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}








    
    /*footer*/
    .light-footer {
  background-color: #f8f9fa;
  color: #212529;
  font-family: 'Segoe UI', sans-serif;
  padding: 40px 20px;
  border-top: 1px solid #dee2e6;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1 1 220px;
  margin: 20px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #111;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #0128c5;
}

.footer-col.company .logo {
  max-width: 120px;
  margin-bottom: 12px;
}

.footer-col.company p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #333;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #021fae;
}

.contact-info i {
  margin-right: 8px;
  color: #0216ae;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #dee2e6;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  margin: 0 10px;
  font-size: 14px;
  color: #555;
  text-decoration: none;
}

.footer-links a:hover {
  color: #060365;
}
