:root{
  --bta-primary: #25235A;
  --bta-red:     #b00000;
  --bta-accent:  #f9ea39;

  --color-bg: #fff;
  --color-text: #111827;   /* neutral-900 */
  --link-footer: #cfd6ff;

  --btn-bg: var(--bta-primary);
  --btn-bg-hover: var(--bta-red);

  --shadow-lg: 0 8px 20px rgba(11,27,63,.15);
  --radius-md: 1rem;

  --ease-standard: cubic-bezier(.2,.7,.2,1);
  --dur-fast: 160ms;
}
/* BASE */
html, body { height: 100%; }

body{
 background-color: #ffffff;
  color: #000000;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}
@media (max-width: 768px) {
  .container, .footer-inner, .hero, .newsletter {
    padding-left: 15px;
    padding-right: 15px;
  }
}
/* PRELOADER STYLE */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0b0b3b; /* blu e errët si brand-i */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader .loader img {
  width: 90px;
  animation: pulse 1.5s infinite ease-in-out;
}
@keyframes pulse {
  0%, 100% { opacity: 0.7; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1); }
}
#preloader.hide {
  opacity: 0;
  visibility: hidden;
}
/*FIX: Preloader Center on Mobile */
@media (max-width: 768px) {
  #preloader {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0b0b3b;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  #preloader .loader img {
    width: 100px; 
  } }

a{ color: inherit; }
.brand-title{ letter-spacing: .3px; }

/* Components*/
.topbar{ background: var(--bta-primary); }
@media (max-width: 768px) {
  .topbar .container {
    display: flex;
    justify-content: space-between !important;
    align-items: center;
    text-align: center;
  }
  .topbar span:first-child {
    text-align: left;
  }
  .topbar span:last-child {
    margin-left: auto;
    text-align: right;
    display: inline-block;
  }
}
.lang-flag-img {
  width: 20px;
  height: 14px;
  margin-right: .4rem;
  vertical-align: middle;
  object-fit: cover;
}
.navbar-brand img{
  height: 44px; width: auto; object-fit: contain; display: block;
}
/* Buttons */
.navbar .btn-primary,
.btn-primary{
  background: var(--btn-bg);
  border-color: var(--btn-bg);
  color: #fff;
  transition:
    background var(--dur-fast) var(--ease-standard),
    border-color var(--dur-fast) var(--ease-standard),
    box-shadow var(--dur-fast) var(--ease-standard);
}
.navbar .btn-primary:hover,
.btn-primary:hover{
  background: var(--btn-bg-hover);
  border-color: var(--btn-bg-hover);
}
.navbar .btn-primary:focus-visible,
.btn-primary:focus-visible{
  outline: 2px solid rgba(34,28,88,.4);
  outline-offset: 2px;
}
/* Hero */
.hero{
  min-height: 80vh; 
  display: flex;
  align-items: center; 
  border-bottom: 30px solid #eee;
  margin-bottom: 3rem;
}
.hero-logo{
  max-height: 900px; 
  filter: drop-shadow(var(--shadow-lg));
  border-radius: 10%;
  object-fit: cover;  
}
.hero-wave{
  height: 40px;
  background: linear-gradient(to right, rgba(34,28,88,.2), rgba(249,234,57,.2));
/*Hero Section on Mobile*/
@media (max-width: 768px) {
  .hero .row {
    flex-direction: column;
    text-align: justify;
  }
    }
}
/*Navbar*/
.navbar {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}
.navbar-brand img {
  height: 40px;
}
.navbar-toggler {
  background-color: #25235A;
  padding: 0.25rem 0.5rem;
  margin: 0 !important;
  position: relative;
  top: 0;
}
.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");
}
@media (max-width: 768px) {
  .navbar .container {
    display: flex;
    align-items: center;  
    justify-content: space-between;
  }
}
 .swiper {
      width: 100%;
      padding: 2rem 0;
    }
    .swiper-slide {
      width: auto;
      display: flex;
      justify-content: center;
      flex: 0 0 auto;
    }
    .service-card {
      min-width: 280px;
      max-width: 400px;
      width: 100%;
      flex-shrink: 0;
      border-radius: 1rem;
      padding: 1.5rem;
      transition: transform .3s ease;
    }
    .service-card i {
      color: #25235A;
    }
/* Services on index.html */
/* Swiper container */
.swiper {
  width: 100%;
  padding: 2rem 0;
}
/* Slide-et */
.swiper-slide {
  width: auto;
  display: flex;
  justify-content: center;
  flex: 0 0 auto;
}
/* Wrapper*/
.swiper-wrap {
  position: relative;
  overflow: visible;  
}
.mySwiper {
  overflow: hidden;  
}
/* Cards */
.service-card {
  min-width: 280px;
  max-width: 400px;
  width: 100%;
  flex-shrink: 0;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: transform .3s ease;
}
.service-card i {
  color: #25235A;
}
/* Navigation buttons */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Arrows inside buttons */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: '';
  border: solid #25235A;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 6px;
}
.swiper-button-prev::after {
  transform: rotate(135deg);
}
.swiper-button-next::after {
  transform: rotate(-45deg);
}
@media (min-width: 769px) {
  .swiper-button-prev { left: -80px; }   
  .swiper-button-next { right: -80px; } 
}
@media (max-width: 768px) {
   section.py-5 {
    padding: 1px 0 !important; 
  }
  .swiper-button-prev { left: 5px; }
  .swiper-button-next { right: 5px; }
}
.partner-card {
  padding: 15px;
  background: #fff;
  border-radius: 12px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}
.grayscale-hover {
  filter: grayscale(100%);
  transition: filter .3s ease;
  max-height: 70px;
}
.grayscale-hover:hover { filter: grayscale(0%); }
/* Constant moves */
.myPartners .swiper-wrapper {
  transition-timing-function: linear !important;
}
.btn-outline-primary {
  color: #25235A !important;
  border-color: #25235A !important;
}
.btn-outline-primary:hover {
  background-color: #25235A !important;
  color: #fff !important;
}
@media (max-width: 576px) {
  .myPartners .swiper-slide img {
    max-height: 50px; /* pak më të vogla në mobile */
  }
  .partners-wrap {
    padding: 20px 0;
  }
}
.section-divider {
  border: 0;
  height: 1px;         
  background: #001d3a;  
  border-radius: 2px;
  width: 100%;          
}
@media (max-width: 768px) {
  /* Space between quick contact and navigation on mobile*/
  section.bg-light {
    margin-bottom: 50px !important;
  }
}
/* CTA */
.cta{
  background: linear-gradient(135deg, var(--bta-primary), var(--bta-red));
  color: #fff;
}
/* FOOTER STYLE */
/* Footer links */
footer a {
  color: var(--link-footer, rgba(255,255,255,.85));
  text-decoration: none;
  transition: opacity 0.2s ease-in-out;
}
footer a:hover {
  opacity: .85;
}
footer h3,
footer h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: .75rem;
  font-size: 1.1rem;
}
footer p,
footer small {
  color: rgba(255,255,255,.7);
  margin-bottom: .5rem;
  font-size: .9rem;
}
footer ul.list-unstyled {
  margin: 0;
  padding: 0;
}
footer ul.list-unstyled li + li {
  margin-top: .4rem;
}
footer hr,
.footer-divider {
  border: none;
  height: 1px;
  background: rgba(255,255,255,.25);
  margin: 20px auto;
  max-width: 1100px;
}
.footer-brand img {
  display: inline-block;
  vertical-align: middle;
  height: 24px;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.25));
  margin-left: 6px;
}

/* FOOTER LAYOUT (Quick Links + Address + Gjysmërreth)*/
.footer-bg {
  background: #25235A;                 
  padding-top: 160px;                  
  padding-bottom: 24px;                
  position: relative;
  overflow: visible;
}
.footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.footer-col.quick-links {
  transform: translateY(-70px);
}
/* Links inside columns */
.footer-col a {
  color: rgba(255,255,255,.85);
}
.footer-col.text-md-end {
  margin-top: -40px;
}
/*GJYSMËRRETHI + NEWSLETTER*/
.footer-hero {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;                          
  width: clamp(360px, 36vw, 560px);
  aspect-ratio: 2 / 1;
  background: linear-gradient(180deg, #d8d146 60%, #f1f1d1 100%);
  border-top-left-radius: 1000px;
  border-top-right-radius: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px clamp(16px, 4vw, 36px);
  text-align: center;
  box-shadow: inset 0 12px 28px rgba(0,0,0,.25);
  z-index: 2;
  padding-top: 60px; 
  overflow: visible;
}
.footer-hero .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(26px, 3.8vw, 36px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.footer-hero .brand img {
  width: 54px;
  height: 54px;
}
.footer-hero .tagline {
  color: #fff;
  margin: 0 0 0;
  opacity: .95;
}
/* NEWSLETTER */
.newsletter {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
  max-width: 420px;
  width: 90%;
  margin: 30px auto 0;
  overflow: visible; /* ky është thelbësor që të mos pritet butoni */
  position: relative;
}
/* Input */
.newsletter input[type="email"] {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 16px;
  font-size: 14px;
  color: #333;
  border-radius: 12px 0 0 12px;
  height: 48px;
} 
.newsletter button {
  position: absolute;
  right: 6px;
  top: 6px;
  bottom: 6px;
  width: 90px;
  border: none;
  outline: none;
  background: #25235A;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsletter button:hover {
  background: #f5f83c;
}
/* Divider */
.footer-divider {
  border: 0;
  height: 2px;
  background: rgba(255,255,255,.25);
  max-width: 1060px;
  margin: 10px auto;
}
/*Sectionë (legal)*/
.footer-bottom {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 8px;
  padding-bottom: 0;
}
.footer-bottom .link-light {
  margin-left: .5rem;
}
/*Responsive footer style */
@media (max-width: 768px) {
  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: -40px;
  }
  .quick-links {
    order: 1;
    margin-bottom: 10px;
  }
  .footer-hero {
    order: 2;
    margin: 0 auto 23px; 
    max-width: 100%;    
  }
  .footer-col {
    order: 3;
    margin-top: 15px;
  }
}
@media (max-width: 768px) {
  .footer-hero {
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important; 
    width: 110%; 
    aspect-ratio: 2 / 1;
    border-top-left-radius: 1000px;
    border-top-right-radius: 1000px;
    background: linear-gradient(180deg, #d8d146 60%, #f1f1d1 100%);
    padding: 30px 20px 20px;
    margin: 0 auto 40px;
    box-shadow: inset 0 8px 20px rgba(0, 0, 0, 0.3);
  }
  .footer-hero .brand img {
    width: 48px;
    height: 48px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }
 .footer-col.quick-links {
    transform: none !important; 
    margin-bottom: 15px !important; 
  }
   .footer-bg {
    padding-top: 60px !important; 

  .footer-col.quick-links { order: 1; }
  .footer-hero { order: 2; }
  .footer-col.text-md-end { order: 3; }
  .footer-bottom { order: 4; }
}}
/* Faqs on index.html */
.custom-faq-section.py-6.bg-light {
  padding-top: 50px;
  padding-bottom: 60px;
} 
.custom-faq-card {
  background: #fff;
  border-radius: 30px;
  min-height: 140px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.custom-faq-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.295);
}
/* Flags */
.lang-flag{
  font-size: 1.05rem; line-height: 1;
  margin-right: .4rem; display: inline-block;
  transform: translateY(1px);
}
/*UTILITARE */
.rounded-4{ border-radius: var(--radius-md) !important; }
.shadow-lg{ box-shadow: var(--shadow-lg); }
/* DARK MODE (opsionale) */
@media (prefers-color-scheme: dark){
  :root{
    --color-bg: #0b1020;
    --color-text: #e5e7eb;
    --link-footer: #dbe3ff;
  }
  .hero{ background: #ffffff; }
}
/*ABOUT US SECTION */
.rreth-nesh {
  position: relative;
  padding: 60px 0 100px 0; 
  background-color: #f8f9fa;
   overflow-x: hidden; 
}
.rreth-nesh-buttons {
  position: absolute;
  bottom: 40px; 
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
}
.rreth-nesh-buttons .btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  white-space: nowrap;
  padding: 8px 18px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.rreth-nesh-buttons .btn:hover {
  transform: translateY(-2px);
}
.rreth-nesh-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 3px;
  background-color: #25235A;
  border-radius: 2px;
}
/*Responsive tweaks*/
@media (max-width: 576px) {
  .rreth-nesh {
    padding-bottom: 120px;
  }
  .rreth-nesh-buttons {
    bottom: 30px;
    flex-wrap: wrap;
    gap: 8px;
  }
  .rreth-nesh-buttons .btn {
    min-width: 100px;
    font-size: 14px;
    padding: 7px 14px;
  }
}
.p-3.rounded-4.border {
  min-height: 188px; 
}
/* Values */
.values-list {
  list-style: none;       
  padding-left: 0;       
  margin: 0;
  line-height: 1.6;       
}
.values-list li {
  display: flex;           
  align-items: flex-start; 
  margin-bottom: 1rem;    
}
.values-list i {
  font-size: 1.25rem;      
  min-width: 2rem;         
  text-align: center;      
  margin-right: 1rem;      
  color: #25235A;         
  flex-shrink: 0;          
}
.values-list strong {
  display: block;         
}
.values-list .text-muted {
  margin-top: 0.25rem;    
}
/* Stats */
.values-stats {
  display: flex;
  justify-content: space-around; 
  text-align: center;
  margin-top: 30px;
}
.values-stats .stat-item {
  flex: 1;
}
.values-stats .stat {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0px;
}
@media (max-width: 576px) {
  .values-list li {
    flex-direction: row; 
  }
}
/* ABOUT US */
.values-list {
  margin-top: 20px; 
}
.floating-title {
  position: absolute;   
  top: 15px;           
  left: 50%;            
  transform: translateX(-50%);
  background-color: #ffffff00; 
  padding: 0 10px;      
  font-size: 1.3rem;
  font-weight: 700;
  color: #25235A;
}
.values-list li div {
  margin-top: 10px;  
  font-size: 0.85rem; 
  line-height: 1.2;   
}
.values-list li i {
  font-size: 1.2rem;      
  vertical-align: middle; 
  margin-top: 10px;        
  color: #25235A;    
}
.row.text-center.g-2.mt-4 {
  display: flex;
  flex-direction: column; 
  gap: 12px;              
  align-items: center;     
  position: relative;  
  top: -25px;        
  font-size: 1rem;  
  transform: translateX(-17px); 
}
.my-custom-bg {
  background-color: #25235A; 
  color: #FFFFFF;
}
.custom-badge {
  background-color: #25235A;
  color: #fff; 
}
@media (max-width: 768px) {
  .my-custom-bg {
    margin-bottom: 40px !important; 
  }
}
/* SERVICES */
.services {
  position: relative;
  background-image: url('assets/img/service.png');
  background-size: cover;
  background-position: center;
  padding-top: 80px;  
  padding-bottom: 100px; 
  overflow: visible; 
  min-height: 500px;
  }
.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to bottom, rgba(0, 0, 0, 0.63), rgba(0, 0, 0, 0.301)), 
    url('assets/img/service.png'); 
  background-size: cover;
  background-position: center;
  z-index: 0;
  border-radius: 0 0 50% 50%; 
}
.services .container {
  position: relative;
  z-index: 1;
   padding-top: 140px;
}
.services::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px; 
  background: white; 
  border-top-left-radius: 50% 50px; 
  border-top-right-radius: 50% 50px;
}
.service-item {
  margin-top: 45px;
  padding: 1.2rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.425) !important; 
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 1; 
}
.service-item:hover {
  transform: translateY(40px); 
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.849); 
}
.service-icon {
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  border-radius: 50%;
  padding: 10px;
  margin-bottom: 2.5rem !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.service-icon img {
  width: 45px !important; 
  height: auto;
}
.service-item h5 {
  font-size: 1rem;
  margin-top: 0.3rem !important; 
  margin-bottom: 0.5rem !important;
  text-align: center;
}
.services {
  background-image: url('assets/img/service.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center; 
  padding-bottom: 300px;
}
.why-choose-us {
  margin-top: 180px;
  margin-bottom: 50px;
  position: relative;
}
.why-choose-us .timeline {
    position: relative;
    max-width: 1000px; 
  }
  .why-choose-us .line {
    position: absolute;
    top: 13px; 
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #f7f583, #00054e);
    border-radius: 5px;
    z-index: 0;
  }
  .why-choose-us .circle {
    width: 28px;
    height: 28px;
    background: #25235A;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 10px rgba(0, 43, 88, 0.6);
    z-index: 2;
  }
  .why-choose-us .point {
    flex: 1;
    padding: 0 10px;
    z-index: 1;
  }
/* TESTIMONIALS CARD */
.testimonials-slider {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  margin-bottom: 80px;
}
.swiper-wrapper {
  display: flex;
  transition: transform 0.1s linear; 
}
.swiper-slide {
  width: 280px;
  margin-right: 20px;
  flex-shrink: 0;
}
.testimonial-card {
  background: #fff;
  min-height: 130px;
  padding: 20px;
  border-left: 4px solid #007bff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}
.testimonial-card h6 {
  color: #25235A;
}
.swiper-button-next,
.swiper-button-prev {
  color: #25235A;
  transition: color 0.3s ease;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #25235A;
}
.swiper-pagination-bullet {
  background: #25235A;
  opacity: 0.5;
}
.swiper-pagination-bullet-active {
  opacity: 1;
}
.swiper-slide:last-child {
  margin-right: 0;
}
row.align-items-center.g-5 {
   height: 350px;   
}
/*FAQs section */
.faq-section {
  background: #f9f9fc;
}
.faq-img {
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
/* Cards */
.faq-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  padding: 20px 25px;
  transition: all 0.3s ease;
  cursor: default;
}
.faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.faq-card h5 {
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 8px;
}
.faq-card p {
  color: #555;
  margin: 0;
  line-height: 1.6;
}
/* Hover accent */
.faq-card:hover h5 {
  color: #032b55; 
}
/* Grid layout */
.faq-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px;
}
/* Responsive */
@media (max-width: 992px) {
  .faq-list {
    grid-template-columns: repeat(2, 1fr); 
  }
}
@media (max-width: 576px) {
  .faq-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .faq-card {
    padding: 16px;
  }
  .faq-section{
    margin-bottom: 25px;
  }
}
/* Firs section of partners */
.faq-partners-cards {
  background: #f8f9fa; 
  padding: 60px 0;
  min-height: 590px;
}
.faq-partners-cards h1 {
  color: #25235A;
  padding: 50px;
}
.faq-partners-cards p {
  color: #6c757d;
  font-size: 16px;
}
.faq-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.226);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.faq-card-icon {
  font-size: 40px;
  color: #25235A;
  margin-bottom: 15px;
}
.faq-card h5 {
  font-size: 18px;
  color: #25235A;
  margin-bottom: 10px;
  font-weight: 600;
}
.faq-card p {
  font-size: 14px;
  color: #495057;
}
/* Responsive */
@media (max-width: 768px) {
  .faq-card {
    padding: 25px 15px;
  }
  .faq-partners-cards {
    margin-bottom: 40px;
    }
}
/* Second section of partners
.partners-section {
  padding: 60px 0;
  min-height: 350px;
  background: linear-gradient(to right, 
              #ffffff 0%,     
              #040341 100%,    
              #ffffff 0%);  
}*/
.partners-section h2 {
  color: #ffffff;
  margin-bottom: 15px;
}
.partners-section p {
  color: #ffffff;
  font-size: 16px;
}
.grayscale-hover {
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
  max-width: 120px; 
}
.grayscale-hover:hover {
  filter: grayscale(0%);
  transform: scale(1.1); 
}
@media(max-width: 576px) {
  .grayscale-hover {
    max-width: 80px;
  }
}
/* Forms to partners */
  .contact-container {
      display: flex;
      max-width: 1300px;
      margin: 50px auto;
      background: #fff;
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
      border-radius: 15px;
      overflow: hidden;
  }
.contact-left img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  border-radius: 10px;
}
  .contact-right {
      flex: 1;
      padding: 40px;
  }
  .contact-right h2 {
      color: #25235A;
      margin-bottom: 20px;
  }
  .contact-right p {
      margin-bottom: 25px;
  }
  form {
      display: grid;
      gap: 15px;
  }
  .input-group {
      display: flex;
      align-items: center;
      background: #f9f9f9;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      padding: 8px 12px;
      transition: box-shadow 0.3s ease;
  }
  .input-group:focus-within {
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  .input-icon i {
      color: #25235A; 
      font-size: 18px;
      margin-right: 10px;
  }
  .input-group input,
  .input-group textarea {
      border: none;
      outline: none;
      flex: 1;
      font-size: 14px;
      background: transparent;
  }
  .textarea-group textarea {
      min-height: 100px;
      resize: vertical;
  }
  button {
      padding: 15px;
      background: linear-gradient(to right, #01367a, #02296b);
      color: #fff;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
      transition: background 0.3s ease;
       position: relative;
       top: 50px; 
  }
  button:hover {
      background: linear-gradient(to right, #e6f847, #25235A);
  }
  @media(max-width: 768px) {
      .contact-container {
          flex-direction: column;
      }
  }
/* Contact Center */
.contact-section {
  background: #f9fafc;
}
.text-primary,
.contact-info h4,
.contact-form h4 {
  color: #25235A !important;  /* blu navy */
}
.btn-primary{
  color: #ffffff !important;  /* white */
}
.btn-primary:hover{
 background-color: #f2fd56 !important;
 border: #25235A;
  }
/* Info Box */
.contact-info {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 1.5rem;
  border-left: 4px solid #25235A; /* vijë blu sipër, më moderne */
}
/* Social Icons */
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #f1f3f5;
  color: #041f47;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  text-decoration: none; 
}
.social-icon:hover {
  background: #f9fd0d;
  color: #fff;
}
/* Form */
.contact-form input,
.contact-form textarea {
  border-radius: 0.75rem;
  border: 1px solid #ddd;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #25235A;
  box-shadow: 0 0 8px rgba(13,110,253,0.25);
}
/* Map */
.map-container {
  height: 350px;
}
@media (max-width: 768px) {
 .contact-section{
  margin-top: 25px;
  margin-bottom: 25px;
  }
}
/* Floating WhatsApp & Phone Buttons */
.contact-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}
.contact-buttons a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.contact-buttons .whatsapp {
  background-color: #17ad4e;
}
.contact-buttons .phone {
  background-color: #011f3f;
}
.contact-buttons a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.alert {
  border-radius: 8px;
  font-weight: 500;
  padding: 10px 15px;
  transition: opacity 0.4s ease;
}
#contactAlert {
  margin-top: 25px;
  padding: 10px 20px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.4s ease;
}
#partnerAlert {
  margin-top: 10px;
  padding: 10px 10px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.3s ease;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.alert-info {
  background-color: #e8f2ff;
  color: #0056b3;
}
.alert-success {
  background-color: #d4edda;
  color: #155724;
}
.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
}
/* --- FIX for left white space on mobile --- */
body {
  margin: 0;
  padding: 0;
}
.swiper, .swiper-wrapper, .swiper-slide {
  position: relative;
  z-index: 5;
}
@media (max-width: 768px) {
  html, body {
    margin: 0;
    padding: 0;
  }
   }
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  .navbar, .topbar {
    overflow-x: clip;
  }
  .container, .container-fluid {
    max-width: 100vw;
  }
  section, footer {
    overflow-x: clip;
  }
  .swiper, .swiper-wrapper, .swiper-slide {
    overflow: visible !important;
  }
  img {
    max-width: 100%;
    height: auto;
  }
}
