body, html {
   margin: 0;
   padding: 0;
   height: 100%;
   font-family: Arial, sans-serif;
   ;
   }

* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   scroll-behavior: smooth;
}

header {
   position: fixed;
   top: 0;
   width: 100%;
   background: #444;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 20px 10%;
   z-index: 1000;
   box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.logo img {
   height: 67px;   
   width: 140px;
   object-fit: cover;
   display: block;
   margin-right: 15px;
}
.navlist {
   list-style: none;
   display: flex;
   gap: 25px;
}
.navlist li a {
   text-decoration: none;
   color: white;
   font-size: 16px;
   transition: color 0.3s;
   position: relative;
}
.navlist li a.active,
.navlist li a:hover {
   color: #FFC815;
}
.navlist li a::after {
   content: '';
   width: 0%;
   height: 2px;
   background: #FFC815;
   position: absolute;
   left: 0;
   bottom: -5px;
   transition: width 0.3s ease;
}
.navlist li a:hover::after,
.navlist li a.active::after {
   width: 100%;
}
#menu-icon {
   font-size: 28px;
   color: #333;
   cursor: pointer;
   display: none;
}
@media (max-width: 768px) {
  .navlist {
    position: absolute;
    top: 70px;
    right: -100%;
    width: 100%;
    background: #444;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    text-align: center;
    transition: right 0.3s ease;
  }
.navlist.active {
   right: 0;
  }
#menu-icon {
   display: block;
   color: #FFC815;
  }
}



                            /*Stilizimi i Hero Section*/
.hero-section {
  position: relative; 
  height: 70vh;
  min-height: 90vh;
  background-color: #222222;
  margin-top: 100px;
  overflow: hidden;
  scroll-behavior: smooth;
  color: white;
  padding: 40px;
  box-sizing: border-box;
}
.slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  opacity: 0;
  animation: kenburns 20s infinite;
}
.slide:nth-child(1) {
  background-image: url("http://kfkit.rometheme.pro/boile/wp-content/uploads/sites/47/2023/02/oil-tanks-X6VWPRR-e1676866613320.jpg");
  animation-delay: 0s;
}
.slide:nth-child(2) {
  background-image: url("http://kfkit.rometheme.pro/boile/wp-content/uploads/sites/47/2023/02/oil-refinery-plant-from-industry-zone-oil-and-gas-E5HABQN-e1676866622808.jpg");
  animation-delay: 10s;
}
.slide:nth-child(3) {
  background-image: url("http://kfkit.rometheme.pro/boile/wp-content/uploads/sites/47/2023/02/4.jpg");
  animation-delay: 20s;
}
@keyframes kenburns {
  0% {
    transform: scale(1.1);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: scale(1);
  }
  38% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.overlay {
   position: absolute;
   top: 0; left: 0;
   width: 100%; height: 100%;
   background-color: rgba(34, 34, 34, 0.7);
   z-index: 2;
}
.hero-content {
   max-width: 60%;
   z-index: 3;
   position: relative;
   text-align: left;
}
.hero-content h1,
.hero-content h6,
.hero-content p {
   text-align: left !important;
   margin-left: 0 !important;
   width: auto !important;
   margin-bottom: 20px;
   font-family: 'Roboto Condensed', sans-serif;
}
.hero-content h1 {
   font-size: 3.5rem;
   font-weight: 600;
   line-height: 1em;
   margin-bottom: 40px;
}
.hero-content h6 {
   font-weight: 400;
   line-height: 1em;
   font-size: 1.2rem;
   margin-bottom: 60px;
}
.hero-content p {
   border-bottom: 2px solid #FFC815;
   padding-bottom: 10px;
   font-size: 1.1rem;
   margin-top: 40px;
   display: inline-block;
}
.registration-form {
   position: absolute;
   top: 20px; 
   right: 20px;
   width: 320px;
   background: #fff;
   padding: 20px;
   border: 2px solid #FFC815;
   box-shadow: 0 4px 8px rgba(0,0,0,0.2);
   border-radius: 6px;
   z-index: 10;
   box-sizing: border-box;
   color: #222;
}
.registration-form input,
.registration-form select,
.registration-form button {
   width: 100%;
   margin-bottom: 15px;
   padding: 10px;
   font-size: 1em;
   border-radius: 4px;
   border: 1px solid #ccc;
   box-sizing: border-box;
}
.registration-form button {
   background: #FFC815;
   color: white;
   border: none;
   cursor: pointer;
   font-weight: 600;
   transition: background-color 0.3s ease;
}
.registration-form button:hover {
   background: #e6b800;
}
.phone-container {
   display: flex;
   gap: 5px;
}
.phone-container select {
   width: 30%;
   border-radius: 4px;
   padding: 10px;
   border: 1px solid #ccc;
   box-sizing: border-box;
}
.phone-container input {
   width: 70%;
   border-radius: 4px;
   padding: 10px;
   border: 1px solid #ccc;
   box-sizing: border-box;
}
.hero-button{
   cursor: pointer;
   color: #FFC815;
   background-color: transparent;
   padding: 10px 10px;
   font-size: 1rem;
   border: none;
   font-weight: 400;
   line-height: 1.2em;
   width: 35%;
   border: 2px solid orange;
   text-decoration: none;
   margin-bottom: 40px;
}
.hero-button:hover {
   background-color: #FFC815; 
   color: white;
}
#register-modal {
   display: none;
   position: fixed;
   top: 0;
   left: 0;
   width: 100vw;
   height: 100vh;
   background-color: rgba(0, 0, 0, 0.6);
   z-index: 1000;
   justify-content: center;
   align-items: center;
}
#register-modal.active {
   display: flex;
}
#register-modal .modal-content {
   background-color: #fff;
   padding: 20px 30px;
   border-radius: 10px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
   text-align: center;
   max-width: 450px;
   width: 90%;
}
#register-modal .success-icon {
   margin-bottom: 20px;
}
#register-modal .success-icon svg {
   width: 60px;
   height: 60px;
}
#register-modal .main-text {
   font-size: 14px;
   font-weight: bold;
   color: #333;
   margin-bottom: 10px;
}
#register-modal .sub-text {
   font-size: 14px;
   color: #555;
   margin-bottom: 20px;
}
#register-modal .modal-content button {
   margin: 10px 5px 0;
   padding: 8px 16px;
   border: none;
   background-color: #FFC815;
   color: white;
   border-radius: 5px;
   cursor: pointer;
}
#register-modal .modal-content button:hover {
   background-color: #FFC815; 
}
@media (max-width: 768px) {
  .hero-section {
     padding: 20px;
     height: auto;
     min-height: 120vh;
  }
.hero-content {
     max-width: 100%;
     text-align: center;
     padding-top: 20px;
  }
.hero-content h1 {
     font-size: 2rem;
     line-height: 1.2em;
     margin-bottom: 20px;
  }
.hero-content h6 {
     font-size: 1rem;
     margin-bottom: 30px;
  }

.hero-content p {
     font-size: 1rem;
     margin-top: 20px;
  }
.hero-button {
     width: 100%;
     font-size: 1rem;
     padding: 10px;
     margin-bottom: 30px;
  }
.registration-form {
    position: relative;       
    margin: 20px auto 0 auto;  
    width: 90%;               
    max-width: 320px;      
    padding: 15px;
    font-size: 0.85rem;
    height: auto;
    box-sizing: border-box;
    background: #fff;         
    border-radius: 8px;       
    box-shadow: 0 0 10px rgba(0,0,0,0.1); 
    left: 0;
    right: 0;
  }
.phone-container {
   flex-direction: column;
   gap: 10px;
  }
.phone-container select,
  .phone-container input {
    width: 100%;
  }
#register-modal .modal-content {
    padding: 15px 20px;
    width: 92%;

  }
#register-modal .main-text {
    font-size: 13px;
  }
#register-modal .sub-text {
    font-size: 13px;
  }
#register-modal .success-icon svg {
    width: 50px;
    height: 50px;
  }
#register-modal .modal-content button {
    padding: 6px 12px;
    font-size: 13px;
  }
}
   

                    /*Stilizimi i Videos*/
                    section.video {
  /* Hapësira mes kësaj seksioni dhe atij sipër */
 display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem; /* hapësirë mes videos dhe tekstit */
  padding: 2rem 1rem;
  flex-wrap: wrap; /
}

.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}

.video-container video {
  width: 450px;       /* më e vogël se 640px */
  height: 370px;      /* ruan përpjesëtimin 16:9 */
  max-width: 100%;    /* siguron që të mos dalë jashtë në ekrane më të vogla */
  display: block;
  object-fit: cover;
  border: none;
}
.text-desc {
  flex: 1;
  max-width: 500px;
  padding: 1rem;
  background-color: #fff;
  font-size: 1.26rem;
  line-height: 1.6;
  color: #000;
  display: flex;
  text-align: justify;
  align-items: center; /* për ta qendruar tekstin vertikalisht në mes */
  font-family: 'Source Sans Pro';
}

@media (max-width: 767px) {
  .video-container video {
    width: 80vw;     /* 90% e gjerësisë së ekranit */
    height: 380px;    /* Lartësia përshtatet automatikisht */
  }

  section.video {
   padding-top: 0;
  }
.text-desc {
    text-align: justify;
    max-width: 88vw;
    color: #000;
    line-height: 20px;
    padding-top: 0;
    font-family: 'Source Sans Pro';
    margin-top: 7px;
  }
}



                     /*Stilizimi i why-choose-us(integration, ccus, careers)*/
.why-choose-us1{
   padding: 6em 1em 3em 1em;
}
.icc-section {
   display: flex;              
   border-radius: 0px;                 
   padding: 2em 2em 2em 2em;
   gap: 20px;
   scrollbar-width: smooth;
   margin-top: 60px;
}
.icc-section i{
   margin: -63px 0 0 0;
   border: 2px solid #FFC815;
   border-radius: 50%;
   background-color: #FFC815;
   width: 60px;
   height: 60px;
   display: flex;
   align-items: center;
   margin-top: -70px;
   justify-content: center;
}
.integrating-sustainability{
   padding: 2em 2em 2em 2em;
   border: 2px 0 0 2px solid #FFC815;
   border-top: 2px solid #FFC815;
   border-left: 2px solid #FFC815;
   box-shadow: 8px 8px 30px -10px rgba(0, 0, 0, 0.2);
   }
.integrating-sustainability h4{
   text-align: left;
   margin-bottom: 15px;
   font-family: 'Roboto Condensed';
   font-size: 1.8rem;
   font-weight: 600;
   line-height: 1.1em;
   color: black;
   }
.integrating-sustainability:hover{
   background-color: #f7f7f7;
}
.integrating-sustainability p{
   font-family: 'Source Sans Pro', sans-serif;
   font-size: 1rem;
   font-weight: 400;
   line-height: 1.6em;
   margin: 0;
   color: black;
}
.ccus-technology{
   padding: 2em 2em 2em 2em;
   border: 2px 0 0 2px solid #FFC815;
   border-top: 2px solid #FFC815;
   border-left: 2px solid #FFC815;
   box-shadow: 8px 8px 30px -10px rgba(0, 0, 0, 0.2);
}
.ccus-technology h4{
   text-align: left;
   margin-bottom: 15px;
   font-family: 'Roboto Condensed';
   font-size: 1.8rem;
   font-weight: 600;
   line-height: 1.1em;
   color: black;
}
.ccus-technology p{
   font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6em;
  margin: 0;
  color: black;
}
.ccus-technology:hover{
    background-color: #f7f7f7;
}
.careers{
 padding: 2em 2em 2em 2em;
    border: 2px 0 0 2px solid #FFC815;
    border-top: 2px solid #FFC815;
 border-left: 2px solid #FFC815;
    box-shadow: 8px 8px 30px -10px rgba(0, 0, 0, 0.2);
}
.careers h4{
 text-align: left;
    margin-bottom: 15px;
    font-family: 'Roboto Condensed';
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.1em;
  color: black;
}
.careers p{
   font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6em;
  margin: 0;
  color: black;
}
.careers:hover{
     background-color: #f7f7f7;
}
@media (max-width: 767px) {
  .icc-section {
   flex-direction: column;
   align-items: center;
   margin-top: -40px;
   max-width: 100%;
   }
.icc-section > div {
   width: 100%;
   margin-bottom: 2rem;
   }
}


                                    /*Stilizimi i information (under about us)*/
.information {
  max-width: 900px;
  margin: 2em auto;
  padding: 6em 1em 6em 1em;
  background-color: #f9f9f9;
  border-radius: 10px;
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column; 
  gap: 1.5em;
  justify-content: center;
  align-items: center;
}
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.show {
  opacity: 1;
  transform: translateY(0);
}
.why-us h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #333;
 text-align: center;
}
.why-us p {
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #444;
}






                                  /*Stilizimi i about section (About-us)*/
.about-section{
  padding: 6em 1em 3em 1em;
  background-color: #f8f8f8;
}
.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
}
.text-content {
  flex: 1 1 400px;
}
.text-content h2{
  border-bottom: 2px solid #FFC815;
  display: inline-block;
  margin-bottom: 0px;
  margin-left: 40px;
}
.text-content h3{
  font-size: 25px;
  font-weight: bold;
  font-family: 'Roboto Condensed';
  margin-left: 40px;
  margin-top: 20px;
}
.text-content h4{
  color: #FFC815;
  margin-top: 20px;
  font-family: 'Roboto Condensed';
  margin-left: 40px;
  }
.text-content p{
  margin-top: 20px;
  font-family: 'Source Sans Pro';
  margin-left: 40px;
  margin-bottom: 30px;
}
.image-content {
  .image-content {
  display: flex;
  justify-content: center; 
  align-items: center;     
  position: relative;
  right: 0;               
  margin-left: 0;          
}

}
.image-content img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  display: block;
  margin-top: 40px;
}
.overlay-box {
  position: absolute;
  top: 90px;
  left: -30px;
  background-color: #FFC815;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.overlay-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.overlay-box li {
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 1rem;
}
.about-button{
  cursor: pointer;
  color: #FFC815;
  background-color: transparent;
  padding: 10px 10px;
  font-size: 1rem;
  border: none;
  font-weight: 400;
  line-height: 1.2em;
  width: 35%;
  border: 2px solid orange;
  text-decoration: none;
  margin-left: 40px;
}
.about-button:hover {
  background-color: #FFC815; 
  color: white;
}
@keyframes slideInLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.image-content.animate {
  animation: slideInLeft 1s ease-out forwards;
  opacity: 1;
  transform: translateX(0);
}
.about-button {
    display: block;
    margin: 20px auto 0 auto;
    width: max-content;
    margin-left: 40px;
  }
@media (max-width: 767px) {
  .text-content {
    padding: 0 10px;
    text-align: center;
  }
.text-content h2,
  .text-content h3,
  .text-content h4 {
    margin: 0 auto;
    padding: 0;
    text-align: center;
    margin-bottom: 8px;
  }
.text-content p {
    margin: 0;
    padding: 0 ;
    width: 100%;
    text-align: justify;
  
  }
.about-button {
    display: inline-block;
    margin: 20px auto;
    padding: 10px 20px;
    text-align: center;
    align-items: center;
  }
.image-content {
  display: flex;
  justify-content: center;
  align-items: center;    
  width: 100%;
  position: relative;
}

.image-content img {
  max-width: 400px;
  width: 100%;
  height: auto;
}

.overlay-box {
  position: absolute;
  top: 80px;
  left: -20px;
  width: 180px;
  background-color: #FFC815;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  border-radius: 10px;
}

.overlay-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}
.overlay-box li {
  margin-bottom: 5px;
}
}





                                     /*Stilizimi i Our Services*/
.our-services {
  padding: 6em 1em 3em 1em;
  background-color: #fff;
  font-family: 'Roboto Condensed', sans-serif;
  color: #000;
  text-align: center;
}
.header-row h4,
.header-row h2 {
  margin: 0 auto 1em;
  max-width: 900px;
}
.header-row h4 {
   display: inline-block;
  font-weight: 400;
  font-size: 1.5rem;
  border-bottom: 2px solid #FFC815;
  padding-bottom: 0.3em;
  color: #333;
}
.header-row h2 {
  font-weight: 700;
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 2em;
}
.our-services-section {
  display: flex;
  flex-wrap: wrap; 
  justify-content: center;
  gap: 20px;
  margin-bottom: 3em;
}
.service-box {
  flex: 0 1 calc(33.333% - 20px);
  box-sizing: border-box;
  padding: 2em;
  border-top: 2px solid #FFC815;
  border-left: 2px solid #FFC815;
  box-shadow: 8px 8px 30px -10px rgba(0, 0, 0, 0.2);
  background-color: white;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  cursor: default;
  text-align: left;
 opacity: 0;              
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.service-box.visible {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.6s ease forwards;
}
.service-box:hover {
  background-color: #f7f7f7;
}
.service-box i {
  border: 2px solid #FFC815;
  border-radius: 50%;
  background-color: #FFC815;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -60px;
  margin-bottom: 1em;
  color: white;
  font-size: 30px;
}
.service-box h4 {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: 600;
  color: black;
}
.service-box p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6em;
  margin: 0;
  color: black;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 767px) {
  .our-services-section {
    flex-direction: column;
    gap: 1.5em;
  }
.service-box {
    flex: 1 1 100% !important;
    margin-bottom: 0;
  }
.header-row h4,
  .header-row h2 {
    max-width: 100%;
  }
}




                                   /*Stilizimi i Our-Partners*/
 .our-partners {
  padding: 70px 10px;     
  margin-bottom: 90px;    
  background-color: #f8f8f8; 
}
.our-partners-title {
  text-align: center; 
  margin-bottom: 30px;
}
.our-partners-title h4 {
  display: inline-block;
  font-weight: 400;
  font-size: 1.5rem;
  border-bottom: 2px solid #FFC815;
  padding-bottom: 0.3em;
  color: #333;
  margin-bottom: 20px;
}
.partners-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.carousel-track1 {
  display: flex;
  width: calc(250px * 8);
  animation: scroll 20s linear infinite;
}
.carousel-track1 img {
  height: 300px;
  width: auto;
  margin-right: 20px;
  object-fit: contain;
  background: #fff;
  
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


                                  


                                /* Stilizimi i mission-vision */
.mission-vision {
  width: 100%;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.mission-vision .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 70%;
  margin: 0 auto 30px auto;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.mission-vision-content {
  display: flex;
  justify-content: flex-start; 
  flex-wrap: nowrap; 
  width: 100%;
  gap: 20px; 
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.mission-vision .text-content {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mission h2 {
  border: none;
}
.vision h2 {
  border: none;
}
.mission-vision .mission,
.mission-vision .vision {
  width: 100%;
  max-width: 400px;
  padding: 2em 1.5em;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  border-left: 2px solid #FFC815;
  border-top: 2px solid #FFC815;
  border-radius: 3px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
  gap: 2rem;
  background-color: white;
  color: black;
}
.arrow-to-form {
  flex-shrink: 0;        
  color: #FFC815;         
  font-weight: bold;
  font-size: 70px;         
  margin-left: 2px;
  margin-right: 400px;
  display: flex;
  align-items: center;
  user-select: none;
  position: relative;
  z-index: 2;
  align-self: center;
}
.arrow-to-form::before {
  content: "=>";
}
.mission-vision #registration-form-clone {
  flex: 0 1 35%;
  max-width: 35%;
  background: #fff;
  padding: 20px;
  border: 2px solid #FFC815;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-sizing: border-box;
  color: #222;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.mission-vision #registration-form-clone input,
.mission-vision #registration-form-clone select,
.mission-vision #registration-form-clone button {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  font-size: 1em;
  border-radius: 4px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
.mission-vision #registration-form-clone button {
  background: #FFC815;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.mission-vision #registration-form-clone button:hover {
  background: #e6b800;
}
.mission-vision #registration-form-clone .phone-container {
  display: flex;
  gap: 5px;
}
.mission-vision #registration-form-clone .phone-container select {
  width: 30%;
  border-radius: 4px;
  padding: 10px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
.mission-vision #registration-form-clone .phone-container input {
  width: 70%;
  border-radius: 4px;
  padding: 10px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .mission-vision .container {
    width: 90%;
  }
.mission-vision-content {
    flex-direction: column;
    gap: 30px;
  }
.arrow-to-form {
    display: none;
  }
.mission-vision .text-content,
  .mission-vision #registration-form-clone {
    flex: 1 1 100%;
    max-width: 100%;
  }
.mission-vision #registration-form-clone {
    margin-top: 0;
    margin-left: 0; 
  }
}




              

                                                 /*Stilizimi i Review*/
section.review {
  padding: 50px 20px;
  background-color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}
section.review h4 {
 display: inline-block;
  font-weight: 400;
  font-size: 1.5rem;
  border-bottom: 2px solid #FFC815;
  padding-bottom: 0.3em;
  color: #333;
  margin-bottom: 30px;
}
.carousel-container {
  overflow: hidden;
  max-width: 100%;
  margin: auto;
  position: relative;
}
.carousel-track {
  display: inline-flex;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.review-box {
  width: 400px;
  height: 200px;
  margin-right: 30px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-card {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 2px;
  padding: 30px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
  border-top: 2px solid #f9f9f9;
  border-bottom: 2px solid #f9f9f9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 10px;
}
.review-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 15px;
  padding-bottom: 24px;
  position: relative;
}
.review-header-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.review-header-top h5 {
  margin: 0;
  font-size: 20px;
  color: #333;
}
.stars {
  display: flex;
  gap: 6px;
  margin-left: 52px; 
}
.star {
  display: inline-block;
  width: 24px;    
  height: 24px;
  background-color: #00b67a; 
  border-radius: 6px;
  position: relative;
}
.star::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;    
  height: 18px;
  transform: translate(-50%, -50%);
  background-color: white; 
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg fill="white" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 2L14.09 8.26L20.97 8.27L15.45 12.97L17.54 19.73L12 15.77L6.46 19.73L8.55 12.97L3.03 8.27L9.91 8.26L12 2Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url('data:image/svg+xml;utf8,<svg fill="white" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 2L14.09 8.26L20.97 8.27L15.45 12.97L17.54 19.73L12 15.77L6.46 19.73L8.55 12.97L3.03 8.27L9.91 8.26L12 2Z"/></svg>');
  mask-repeat: no-repeat;
  mask-position: center;
}
.star.empty::before {
  background-color: transparent; 
  border: 2px solid white;
  mask-image: none;
  -webkit-mask-image: none;
  width: 18px;    
  height: 18px;
  border-radius: 4px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.review-card p {
  font-size: 16px;
  font-style: italic;
  color: #555;
  margin: 0;
  white-space: normal; 
  word-wrap: break-word; 
  overflow-wrap: break-word;
  line-height: 1.4;
}
@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}



                                   /*Stilizimi i Last Section*/
.last-section{
   display: flex;
  align-items: center;
  justify-content: center; 
  gap: 10rem; 
  background-color: #2e2e2e;
  padding: 1rem;
  text-align: center;
  flex-wrap: wrap;
  color: white;
}
.section-last p{
 font-size: 14px;
  color: white;
}
.top i{
  padding: 10px;
  border-radius: 8px;
  font-size: 20px;
  color: white;
  background-color: #FFC815;
}
.section-last p{
  color: white;
font-family: 'Roboto Condensed';
  margin-top: 10px;
  }
.section-last .email-link {
  display: block;
  color: white; 
  margin: 10px 0;
  text-decoration: none;
}
.section-last .email-link:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  .last-section {
    padding: 20px;         
    min-height: 120px;     
    background-color: #2e2e2e; 
  }
.section-last {
    width: 100%;
    text-align: center;
  }
.section-last .top {
    margin-top: 10px;
  }
}

