  /* COLOR CODE */
  :root{
    --org: #ff6600;
    --blu: #000080;
    --whi: #ffffff;
    --bla: #01010a;
  }

  /* BODY */
    body { 
        font-family: 'Poppins', sans-serif; }

/* Header */
 /* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Header */
header {
  width: 100%;
  background: var(--blu);
  padding: 15px 5%;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ================== MEGA DROPDOWN STYLES (Moniepoint Style) ================== */
.has-dropdown {
  position: relative;
}

.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 960px;
    height: 500px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  margin-top: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  pointer-events: none;
}

/* Show dropdown on hover */
.product-mega:hover .mega-dropdown,
.why-mega:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  margin-top: 12px;
  pointer-events: all;
}

.dropdown-inner {
  display: flex;
  min-height: 480px;
}

/* LEFT COLUMN - Shared */
.products-list,
.why-list {
  width: 340px;
  background: #f8f7ff;
  padding: 32px 0;
}

.product-item,
.why-item {
  padding: 12px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: default;
  transition: all 0.3s;
  border-left: 4px solid transparent;
}

.product-item:hover,
.product-item.active,
.why-item:hover,
.why-item.active {
  background: white;
  border-left-color: var(--blu);
  font-weight: 600;
}

.product-item i,
.why-item svg {
  font-size: 24px;
  width: 28px;
  height: 28px;
  color: var(--blu);
}
.why-item i{
    font-size: 24px;
  width: 28px;
  height: 28px;
  color: var(--blu);
}
/* RIGHT PANEL - Shared */
.product-detail,
.why-detail {
  flex: 1;
  padding: 50px;
  display: none;
  background: white;
}

.product-detail.active,
.why-detail.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

.product-detail h3,
.why-detail h3 {
  fontfram: 800;
  font-size: 28px;
  color: var(--bla);
  margin-bottom: 16px;
}

.product-detail p,
.why-detail p {
  font-size: 16.5px;
  line-height: 1.7;
  color: #444;
  max-width: 520px;
  margin-bottom: 28px;
}

.cta {
  background: var(--org);
  color: white;
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  transition: all 0.3s;
}

.cta:hover {
  background: var(--blu);
  transform: translateY(-2px);
}

.product-detail img,
.why-detail img {
  width: 100%;
  max-width: 460px;
  border-radius: 16px;
  margin-top: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

/* 1. Add invisible "bridge" so hover stays active while moving down */
.product-mega::before,
.why-mega::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;           /* this closes the gap */
  background: transparent;
}

/* 2. Make the whole dropdown area keep the hover state */
.product-mega:hover .mega-dropdown,
.why-mega:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  margin-top: 12px;
  pointer-events: all;
}

/* 3. (Optional but smoother) Keep dropdown open while mouse is over it */
.mega-dropdown:hover {
  opacity: 1 !important;
  visibility: visible !important;
  margin-top: 12px !important;
}
/* Ending of the product hover */


/* Company drop */
/* Base dropdown container */
.navbar .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  padding: 12px 0;
  min-width: 180px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  z-index: 20;

  /* Hidden by default */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: 0.25s ease;
}

/* Show on hover */
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Individual link styles */
.navbar .dropdown a {
  padding: 12px 18px;
  font-size: 15px;
  color: #333;
  text-decoration: none;
  display: block;
  transition: 0.25s;
  white-space: nowrap;
}

/* Hover effect on dropdown links */
.navbar .dropdown a:hover {
  background: #f3f4ff; /* soft bluish hover */
  color: #4c5cff;      /* same brand color as product icons */
}

/* Logo + Text */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 45px;
  object-fit: contain;
}

.logo span {
  color: #ffffff;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Middle Links - slightly up */
.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;

  /* Lift links slightly upwards */
  position: relative;
  top: 9px; /* Adjust this value to move up/down */
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: var(--org);
}

/* Auth Buttons */
.auth {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: 12em;

}

.login {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
  font-size: 20px;
}

.login:hover {
  color:var(--org);
}

.create {
  padding: 10px 20px;
  background: var(--org);
  color: #ffffff;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.create:hover {
  background: #ffffff;
  color: black;
}


/* Mobile Navigation */

/* Hero Section */
    .hero-section { 
        background-color: #fff; 
        border-radius: 10px; 
        padding: 50px; 
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
     }


    .feature-card, .service-card, .product-card { 
        background: #fff; 
        border-radius: 10px; 
        box-shadow: 0 2px 10px rgba(0,0,0,0.05); 
        padding: 20px; }




    .btn-orange { 
        background-color: #050594; 
        color: #fff; 
        border: none; 
    }

    .btn-orange:hover {
         background-color: #050594;
         }

         /* about section  */

  
    .section-title { color: #222; 
        font-weight: 700; 
        margin-bottom: 1rem; 
    }

    .highlight { 
        color: #ff6600; 
    }



    /* SERVICES SECTION  */
  
    .section-title {
         color: #222; 
         font-weight: 700; 
         margin-bottom: 1rem;
        }

    .highlight { 
        color: #ff6600;
     }

    .service-card:hover  { 
        transform: translateY(-5px); 
        transition: 0.3s ease-in-out; 
    }


    .service-icon {
         font-size: 2.5rem; 
         color: #ff6600;
          margin-bottom: 15px; 
        }


        /* FOOTER */
.footer {
  color: #ffffff;
  background: #000080;
  font-size: 14px;
  padding: 80px 0 0;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(#ffffff), transparent 85%);
  font-family: 'Poppins', sans-serif;
}

.footer .footer-content .logo {
  line-height: 1;
}

.footer .footer-content .logo span {
  color:#ffffff;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: 'Poppins', sans-serif;
}

.footer .footer-content p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(#ffffff), transparent 15%);
}
/* 
.footer .newsletter-form {
  margin-top: 30px;
}

.footer .newsletter-form h5 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}

.footer .newsletter-form .input-group {
  position: relative;
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 10px color-mix(in srgb, #ffffff, transparent 90%);
}

.footer .newsletter-form input[type=email] {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background-color: #ffffff;
  color:  #000000;
  font-size: 14px;
}

.footer .newsletter-form input[type=email]:focus {
  outline: none;
  box-shadow: none;
}

.footer .newsletter-form input[type=email]::placeholder {
  color: color-mix(in srgb,  #000000, transparent 60%);
}

.footer .newsletter-form .btn-subscribe {
  background-color:  #ff6600;
  color:  #252525;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: 0.3s;
}

.footer .newsletter-form .btn-subscribe:hover {
  background-color: color-mix(in srgb,  #ff6600, black 10%);
}

.footer .newsletter-form .btn-subscribe i {
  font-size: 16px;
}

.footer .newsletter-form .loading,
.footer .newsletter-form .error-message,
.footer .newsletter-form .sent-message {
  font-size: 13px;
  margin-top: 8px;
} */

.footer h4 {
  color:  #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  font-family: 'Poppins, sans-serif';
}
.footer-links h4{
    font-family: 'Poppins', sans-serif;
}
.footer-contact h4{
    font-family: 'Poppins', sans-serif;
}
.footer h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: #ff6600;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.footer .footer-links ul li:hover {
  transform: translateX(5px);
}

.footer .footer-links ul a {
  color: color-mix(in srgb,  #ffffff, transparent 25%);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: 0.3s;
}

.footer .footer-links ul a:hover {
  color: #ff6600;
}

.footer .footer-links ul a i {
  margin-right: 8px;
  font-size: 12px;
  color: #ff6600;
}

.footer .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer .footer-contact .contact-item .contact-icon {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, #ffffff, transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.footer .footer-contact .contact-item .contact-icon i {
  color: #ff6600;
  font-size: 16px;
}

.footer .footer-contact .contact-item .contact-info p {
  margin: 0;
  color: color-mix(in srgb,  #ffffff, transparent 20%);
  font-size: 14px;
  line-height: 1.5;
}

.footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer .social-links a {
  width: 42px;
  height: 42px;
  background-color: color-mix(in srgb,  #ffffff, transparent 92%);
  color: color-mix(in srgb,  #ffffff, transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  text-decoration: none;
}

/* .footer .social-links a:hover {
  background-color: #ff6600;
  color:  #ffffff;
  transform: translateY(-3px);
}

.footer .social-links a i {
  font-size: 16px;
} */

.footer .footer-bottom {
  margin-top: 50px;
  padding: 2px 0;
  background-color: color-mix(in srgb,  #ffffff, transparent 95%);
  border-top: 1px solid color-mix(in srgb,  #ffffff, transparent 85%);
}

/* .footer .footer-bottom .copyright p {
   font-size: 14px;
  color: #ffffff
} */

 @media (max-width: 530px) {
  .footer {
    text-align: center;
    margin-bottom: 15px;
  }
} 

.footer .footer-bottom .footer-bottom-links {
  text-align: right;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links {
    text-align: center;
    margin-bottom: 10px;
  }
}

.footer .footer-bottom .footer-bottom-links a {
  color: color-mix(in srgb,  #ffffff, transparent 30%);
  font-size: 13px;
  margin-left: 20px;
  text-decoration: none;
}

.footer .footer-bottom .footer-bottom-links a:first-child {
  margin-left: 0;
}

.footer .footer-bottom .footer-bottom-links a:hover {
  color: #ff6600;
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links a {
    margin: 0 10px;
  }
}

.footer .footer-bottom .credits {
  text-align: right;
  font-size: 13px;
  color: color-mix(in srgb,  #ffffff, transparent 40%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .credits {
    text-align: center;
  }
}

.footer .footer-bottom .credits a {
  color:  #ff6600;
  text-decoration: none;
}

.footer .footer-bottom .credits a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 0;
  }
  .copyright{
    align-items: center;
    justify-content: center;
    display: flex ;
  }
.sitename{
  margin-left: 5em;
  position: absolute;
}
  .footer .footer-content .logo span {
  color:#ffffff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: 'Poppins', sans-serif;
}

.footer .footer-content p {
  font-size: 11px;
  line-height: 1.6;
  color: color-mix(in srgb, var(#ffffff), transparent 15%);
}

  .footer .footer-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .footer .footer-links,
  .footer .footer-contact {
    margin-bottom: 40px;
  }
}

input[type=text],
input[type=email],
textarea {
  color: white;
  background-color:  #ff6600;
  font-size: 14px;
  border-color: color-mix(in srgb,  white, transparent 80%);
}

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  border-color:  #ff6600;
}

input[type=text]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  color: color-mix(in srgb,  white, transparent 70%);
}
.g{
    text-decoration: none;
}
.contact-info{
    margin-top: 5px;
}
/* To Top */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: #ff6600;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: white;
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, #ff6600, transparent 20%);
  color:white;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .container {
  max-width: 1280px;
}

.contact .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .contact .contact-wrapper {
    grid-template-columns: 38% 62%;
    gap: 30px;
  }
}

.contact .contact-info-panel {
  background: linear-gradient(145deg,#000080, color-mix(in srgb,#000080, #1a4372 40%));
  color: var(--contrast-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact .contact-info-panel .contact-info-header {
  margin-bottom: 30px;
}

.contact .contact-info-panel .contact-info-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color:white;
}

.contact .contact-info-panel .contact-info-header p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
}

.contact .contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: auto;
}

@media (min-width: 576px) and (max-width: 991px) {
  .contact .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .info-card {
  background-color: rgba(241, 239, 239, 0.164);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.contact .info-card:hover {
  background-color:rgba(241, 239, 239, 0.189);
  transform: translateY(-5px);
}

.contact .info-card .icon-container {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .info-card .icon-container i {
  font-size: 20px;
  color: white;
}

.contact .info-card .card-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: white;
}

.contact .info-card .card-content p {
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0.8;
}

.contact .social-links-panel {
  margin-top: 35px;
}

.contact .social-links-panel h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}

.contact .social-links-panel .social-icons {
  display: flex;
  gap: 12px;
}

.contact .social-links-panel .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact .social-links-panel .social-icons a:hover {
  background-color: #ff6600;
  transform: translateY(-5px);
}

.contact .contact-form-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .map-container {
  width: 70%;
  height: 70%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact .form-container {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.253);
}

.contact .form-container h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  background: linear-gradient(120deg, black, color-mix(in srgb, black, black 30%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.contact .form-container p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 25px;
}

.contact .form-container .form-floating {
  margin-bottom: 20px;
}

.contact .form-container .form-floating .form-control {
  border-radius: 12px;
  padding: 24px 20px 8px 20px;
  height: calc(3.5rem + 3px);
  background-color: var(--whi);
  color: var(--white);
  transition: all 0.3s ease;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--blu), transparent 80%);
}

.contact .form-container .form-floating .form-control:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--org), transparent 85%);
  background-color: var(--whi);
}

.contact .form-container .form-floating .form-control::placeholder {
  color: transparent;
}

.contact .form-container .form-floating label {
  color: color-mix(in srgb, var(--bla), transparent 40%);
  padding: 1rem 1.25rem 2.5rem 1.25rem;
}

.contact .form-container .form-floating label::after {
  background-color: transparent;
}

.contact .form-container .btn-submit {
  background: linear-gradient(145deg,  var(--org), color-mix(in srgb,  var(--org), #1a4372 30%));
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .form-container .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, #000080, transparent 75%);
}

.contact .form-container .btn-submit i {
  transition: transform 0.3s ease;
}

.contact .form-container .btn-submit:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .contact .contact-info-panel {
    padding: 30px 25px;
  }

  .contact .form-container {
    padding: 30px 25px;
  }
}

@media (max-width: 576px) {
  .contact .social-links-panel .social-icons {
    flex-wrap: wrap;
  }
}
.card-content p {
    color: white;
}
.r{
    color: white;
}

/* Security Section */

 .awards-section {
  background: linear-gradient(135deg, color-mix(in srgb, var(--blu), transparent 1%), color-mix(in srgb, var(--blu), transparent 1%));
 width: 100%;
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-left: 2rem;
  padding-right: 2rem;

  font-family: 'Poppins', sans-serif;
}

 .awards-section .awards-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
   color: white;
}

 .awards-section .awards-content p {
  font-size: 1.1rem;
  color: white;
}

 .awards-section .awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.award-details{
  margin-left: -1em;
}
 .awards-section .awards-grid .award-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background-color: var(--whi);
  padding: 1.7rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

 .awards-section .awards-grid .award-item:hover {
  transform: translateY(-5px);
}

 .awards-section .awards-grid .award-item .award-icon {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, var(--org), color-mix(in srgb, var(--org), #ffffff 20%));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: -1em;
  margin-right: 2px;
  margin-top: -6.5em;

}

.awards-section .awards-grid .award-item .award-icon i {
  font-size: 1.1rem;
  color: var(--whi);
}

 .awards-section .awards-grid .award-item .award-details h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

 .awards-section .awards-grid .award-item .award-details span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--bla), transparent 40%);
}

@media (max-width: 992px) {
  
  .awards-section {
    padding: 3rem 2rem;
  }

   .awards-section .awards-grid {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 768px) {
.awards-section .awards-grid .award-item .award-icon i{
  display: none;
}
.awards-section .awards-grid .award-item .award-icon{
  display: none;
}
.award-details{
  margin-left: 0.5em;
}

}

/* _TEstimonial */
.testimonial-card {
  transition: all 0.3s ease;
  border: 1px solid #f0f0f5 !important;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
  border-color: #6b4ef9 !important;
}

.quote-icon {
  font-family: Georgia, serif;
  opacity: 0.15;
}

.testimonials-wall .display-5 {
  font-weight: 800;
}
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f0f0f5;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  flex-shrink: 0;
}


/* Toggle-Mobile */
.nav-toggle  {
  display: none; /* hidden on desktop */
  background-color: transparent;
  color: #fff;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  position: absolute;
  top: 2.9em;
  right: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000; /* keeps above */
  margin-top: -0.99em;


}
.nav-toggle i {
  font-size: 28px;
  display: none;
}
.switch{
  display: none;
}
/* Floating navigation mobile */
 /* Floating Filter Panel */
      .filter-panel {
  position: fixed; /* keeps it above everything */
  top: 0;
  left: 0;
  width: 300px;
  height: 100vh;
  background: var(--blu);
  color: white;
  box-shadow: 5px 0 20px rgba(0, 0, 0, 0.3);
  z-index: 99999; /* ensures it’s on top */
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  overflow-y: auto;
  padding: 20px;
}

.filter-panel.active {
  transform: translateX(0);
}

.filter-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--org);
  color: #fff;
  border: none;
  padding: 3px 8px;
  font-size: 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  z-index: 10000; /* sits above even the panel */
  transition: background 0.3s ease;
}

.filter-close:hover {
  background: #c24e01;
}

.login-filter {
  padding: 10px 20px;
  background: var(--whi);
  color: var(--bla);
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 16px;
}

.login-filter:hover {
  background: var(--org);
  color: white;
}
        .filter-section {
          margin-top: 1em;
            margin-bottom: 2rem;
        }

        .filter-section h3 {
          margin-top: 0.5em;
            margin-bottom: 1rem;
            font-size: 1.1rem;
            color: var(--org);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 0.5rem;
        }

        .filter-options {
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
        }

        .filter-option {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
a{
  text-decoration: none;
}
        .filter-option a {
            color: var(--whi);
            transition: .3s ease-in-out;
        }
          .filter-option a:hover {
            color: var(--org);
            transition: .3s ease-in-out;
            transform: scale(1.05);
        }
 
        .filter-toggle{
          display: none;
        }
@media only screen and (max-width: 768px) {
.filter-toggle{
  display: flex;
  color: #fff;
    font-size: 32px;
    width: 30px;
    top: 15px;
    right: 15px;
    background-color: transparent;
    border: none;
}
.mobile-nav-toggle{
  color: white;
}
.nav-links{
  display: none;
}
}


