/* Reset dhe bazë */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: #fff;
  color: #121212;
}

/* Header */
header {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  height: 100px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  gap: 15px;
}

.logo img {
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
}

span {
  color: black;
  font-family: 'Courier New', Courier, monospace;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;  /* më i ngushtë */
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: #121212;
  font-size: 16px;          
  font-weight: 500;
  line-height: 90px;        
  text-transform: none;      
  letter-spacing: 0.5px;     
  transition: color 0.3s ease;
  white-space: nowrap;
  padding: 0 8px;            
  max-width: none;           
  overflow: visible;
  text-overflow: unset;
}

nav a:hover {
  color: #007c89;
}

.call-now {
  background-color: #0087bd;
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  line-height: normal;
  display: flex;
  align-items: center;
  height: 40px;
  transition: background 0.3s ease;
  cursor: pointer;
}

.call-now:hover {
  background-color: #005e68;
  color: #fff;
}
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  user-select: none;
  position: relative;
  z-index: 1100;
}

/* Mobile: menu dhe hamburger */
@media (max-width: 991px) {
  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100px; /* poshtë header-it */
    right: 20px;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    padding: 15px 20px;
    border-radius: 8px;
    width: 220px;
    z-index: 1000;
  }

  nav.active {
    display: flex;
  }

  .hamburger {
    display: block;
    position: absolute;
    top: 30px;
    right: 25px;
    z-index: 1100;
  }

  nav a {
    line-height: 1.8;
    padding: 10px 0;
    white-space: normal;
  }

  .call-now {
    width: 100%;
    justify-content: center;
    height: 45px;
  }
}

/* Hero Section */
.hero {
  background-color: #fff;
  width: 100%;
  min-height: 100vh; /* ✅ kjo lejon zgjatje nëse ka më shumë përmbajtje */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 100px 20px;
  flex-direction: column;
}


.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 124, 137, 0.6);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  top: 20%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  gap: 100px;
  opacity: 0;
  animation: fadeSlideIn 1.2s ease forwards;
}

.hero-left {
  max-width: 45%;
  margin-left: -150px;
}

.hero-left h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-left h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #a0e1e8;
}

.hero-left p {
  font-size: 20px;
  margin-bottom: 25px;
  line-height: 1.5;
}

.btn-cta {
  background-color: #00b8c6;
  color: white;
  padding: 14px 36px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 7px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

.btn-cta:hover {
  background-color: #007c89;
}

.hero-right {
  max-width: 48%;
  color: #cde9f1;
  margin-left: 100px;
  margin-top: 90px;
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 16px;
}

.hero-benefits li {
  margin-bottom: 10px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.hero-benefits li::before {
  content: "\2714";
  margin-right: 10px;
  color: #00b8c6;
  font-weight: bold;
}

.hero-motto {
  font-style: italic;
  color: #89d9e4;
  font-size: 18px;
}

/* About Section */
.about-modern {
  background: #f9fcfd;
  padding: 100px 0;
  color: #1b1b1b;
}

.about-modern h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: black;
  font-weight: 700;
}

.about-modern h2 span {
  color: #00b8c6;
}

.about-modern p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #444;
}

.about-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: nowrap;
}

.about-text {
  flex: 1;
  max-width: 50%;
}

.about-image {
  flex: 1;
  max-width: 50%;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  object-fit: cover;
}

.about-features {
  list-style: none;
  padding: 0;
  margin-bottom: 50px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  margin-bottom: 12px;
}

.about-features img {
  width: 20px;
  height: 20px;
}

.btn-learn {
  background-color: #00b8c6;
  margin-bottom: 30px;
  color: #fff;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 7px;
  text-decoration: none;
  transition: background 0.3s ease;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  width: 200px;
}

.btn-learn:hover {
  background-color: #007c89;
}

.counters-section {
  background-color: #f4f6f8;
  padding: 80px 20px;
  text-align: center;
  color: #333;
  font-family: 'Outfit', sans-serif;
}

.counters-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  gap: 40px;
  flex-wrap: wrap;
}

.counter {
  flex: 1 1 200px;
  font-weight: 700;
}

.counter-number {
  font-size: 48px;
  color: black;
  margin-bottom: 10px;
}

.counter-label {
  font-size: 18px;
  font-weight: 500;
  color: #555;
}

.bg-light {
  background-color: #f3fafd;
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 36px;
  color: #007c89;
  margin-bottom: 15px;
}

.section-title h2 span {
  color: #00b8c6;
}

.section-title p {
  font-size: 18px;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-top: 80px;
}

.choose-box {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease;
}

.choose-box:hover {
  transform: translateY(-10px);
}

.choose-box img {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.choose-box h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #007c89;
}

.choose-box p {
  font-size: 16px;
  color: #555;
}



.mission-vision {
  background-color: #f4f6f8;
  padding: 100px 0;
  color: #1b1b1b;
}

.mission-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}

.mission-text {
  flex: 1;
  max-width: 50%;
}

.mission-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}

.mission-text h2 span {
  color: #00b8c6;
}

.mission-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444;
}

.mission-image {
  flex: 1;
  max-width: 50%;
}

.mission-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}
.btn-learn {
  display: inline-block; /* nëse nuk e ke, për të funksionuar marginat mirë */
  margin-top: 2px;
  padding: 10px 24px;
  background-color: #00b8c6;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-learn:hover {
  background-color: #009aa3;
}

.how-it-works {
  padding: 80px 20px;
  text-align: center;
  color: #1b1b1b;
}

.how-it-works h2 {
  font-size: 36px;
  margin-bottom: 50px;
  font-weight: 700;
  color: black;
  font-family: 'Outfit', sans-serif;
}

.steps-grid {
  display: flex;
  gap: 20px; /* ulur nga 30px në 20px për pak më pak hapësirë mes kartave */
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.step {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  max-width: 300px;
  flex: 1 1 280px;
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.step-number {
  font-size: 48px;
  font-weight: 700;
  color: #00b8c6;
  margin-bottom: 20px;
  font-family: 'Outfit', sans-serif;
}

.step h3 {
  font-size: 22px;
  margin-bottom: 8px; /* ulur nga 15px në 8px për më pak hapësirë mes titullit dhe paragrafit */
  font-family: 'Outfit', sans-serif;
}

.step p {
  font-size: 16px;
  color: #444;
  line-height: 1.5;
  font-family: 'Outfit', sans-serif;
  margin-top: 0; /* për siguri që nuk ka marginë mbi paragraf */
}




.final-hero-section {
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 500px; /* ose më shumë nëse dëshiron */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  text-align: center;
  margin-top: 60px;
}

.final-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5); /* overlay transparent për lexueshmëri */
  z-index: 0;
}

.final-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding-bottom: 30px; /* shton hapësirë poshtë butonit */
}

.final-hero-section h2 {
  font-size: 40px;
  margin-bottom: 25px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

.final-hero-section p {
  font-size: 20px;
  margin-bottom: 50px;
  font-family: 'Outfit', sans-serif;
}

.btn-primary {
  background-color: #00b8c6;
  color: white;
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #009aa3;
}














.testimonials-simple {
  background-color: #fff;
  padding: 80px 20px;
  color: #1b1b1b;
  text-align: center;
  font-family: 'Outfit', sans-serif;
}

.testimonials-simple h2 {
  font-size: 36px;
  margin-bottom: 50px;
  font-weight: 700;
  color: black;
}

.testimonials-simple blockquote {
  font-style: italic;
  font-size: 18px;
  color: #444;
  margin: 20px auto;
  max-width: 700px;
  position: relative;
  padding: 0 20px;
}

.testimonials-simple blockquote::before {
  content: "“";
  font-size: 60px;
  color: #00b8c6;
  position: absolute;
  left: 0;
  top: -10px;
  font-weight: 700;
  font-family: serif;
}

.testimonials-simple footer {
  margin-top: 10px;
  font-style: normal;
  font-weight: 600;
  color: #1b1b1b;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f9fcfd;
  padding: 40px 80px;
  font-family: 'Outfit', sans-serif;
  border-top: 1px solid #eee;
  flex-wrap: wrap;
  gap: 40px;
  min-height: 140px;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Logo dhe tekstet e saj */
.logo-container {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.footer-logo {
  max-height: 80px;
  width: auto;
  object-fit: contain;
}

.logo-texts p {
  font-size: 18px;
  color: #444;
  font-weight: 600;
  margin: 2px 0;
}

.footer-copy {
  font-size: 14px;
  color: #999;
  margin-top: 8px;
}

.footer-copy a {
  color: #00b8c6;
  text-decoration: none;
  margin: 0 5px;
  transition: color 0.3s ease;
}

.footer-copy a:hover {
  color: #007c89;
  text-decoration: underline;
}

/* Qendra: kontakti */
.footer-center {
  align-items: center;
  text-align: center;
}

.footer-contact {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: color 0.3s ease;
}

.footer-contact:hover {
  color: #00b8c6;
}

.footer-address {
  font-size: 18px;
  color: #444;
  margin-top: 8px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* E djathta: rrjetet sociale me ikona */
.footer-right {
  align-items: flex-end;
  text-align: right;
  display: flex;
  gap: 24px;
}

.footer-social {
  font-size: 28px;
  color: #222;
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-social:hover {
  color: #00b8c6;
}

/* Ikonat te kontaktet dhe rrjetet sociale */
.footer-contact i,
.footer-address i {
  color: #00b8c6;
  font-size: 22px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    align-items: center !important;
    text-align: center !important;
    margin-bottom: 30px;
  }

  .footer-right {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .mission-grid {
    flex-direction: column;
    gap: 40px;
  }

  .mission-text,
  .mission-image {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .mission-text h2 {
    font-size: 28px;
  }

  .mission-text p {
    font-size: 16px;
  }

  .btn-learn {
    display: block;
    margin: 20px auto 0 auto;
    text-align: center;
    width: fit-content;
  }
}

@media (max-width: 768px) {
  .about-grid {
    flex-direction: column;
    gap: 40px;
  }

  .about-text, .about-image {
    max-width: 100%;
  }

  .btn-learn {
    width: 100%;
    max-width: 300px;
    padding: 14px 20px;
    font-size: 16px;
    display: block;
    margin: 0 auto; /* qëndron në qendër */
    margin-bottom: 30px;
  }
  .about-grid {
    flex-direction: column;
    gap: 30px;
  }
  .about-text,
  .about-image {
    max-width: 100%;
  }
}



/* Animations */
@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    transform: translateX(-40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInRight {
  from {
    transform: translateX(40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 900px) {
   .hero {
    min-height: 500px; 
    height: auto;       
    padding: 50px 20px;
  }

  .hero-content {
    position: relative;
    top: auto;
    transform: none;
    flex-direction: column;
    margin: 50px auto;
    gap: 30px;
  }

  @keyframes fadeSlideInMobile {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  

  .hero-left,
  .hero-right {
    max-width: 100%;
    margin: 0;
    transform: none;
  }

  .hero-left h1 {
    font-size: 36px;
  }

  .hero-right {
  margin: 15px 0 0 0; 
}
  .hero-left h3 {
    font-size: 20px;
  }
  
  .hero-left p {
    font-size: 16px;
  }

  .btn-cta {
    padding: 12px 28px;
    font-size: 16px;
  }

  .about-grid {
    flex-direction: column;
    text-align: center;
  }

  .about-text,
  .about-image {
    flex: 1 1 100%;
  }

  .about-modern h2 {
    font-size: 30px;
  }
}

@media (max-width: 992px) {
  header {
    height: auto;
    padding: 15px 0;
  }

  .container {
    height: auto;
    padding: 0 15px;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    height: auto;
  }

  nav {
    flex-direction: column;
    gap: 10px;
    height: auto;
    width: 100%;
  }

  nav a {
    line-height: normal;
    font-size: 18px;
  }

  .call-now {
    width: 100%;
    justify-content: center;
    height: 45px;
  }

  .logo img {
    max-height: 80px;
  }
}


