
/* ------------------------ First Section ----------------------- */

.image-section {
    background-image: url('/assets/images/home/Sec1-BG-Image.png');
    background-size: cover;
    background-position: center;
    height: 95vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}
  
.image-content {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
    color: #fff;
}

.image-content h4 {
  font-size: 35px;
  font-weight: 300;
  margin-bottom: 10px;
}

.image-content h1 {
    font-size: 80px;
    font-weight: 600;
    margin-top: -30px;
}

.image-content h1 span{
  color: #FFB22C;
}

.image-content h2 {
  font-size: 60px;
  font-weight: 600;
  color: #FFB22C;
}

.image-content h2 span{
  color: #fff;
}
  
.image-content h5 {
  font-size: 25px;
  font-weight: 200;
  color: #FFB22C;
  margin-top: -15px;
}

.image-content p {
  width: 700px;
  font-size: 16px;
  font-weight: 200;
  text-align: center;
  color:#AFAFAF;
  margin-top: 20px;
}

.sec1-btn{
  margin-top: 30px;
  display: flex;
  gap: 10px;
}

.cta-button1 button {
  background-color: #FFB22C;
  color: black;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cta-button1 button:hover {
  background-color: #ffa200;
}

.sec1-btn>div button {
  background-color: #fff;
}

#sec1-btn button{
  color: white;
  background-color: transparent;
  border: solid 1px white;
}

#sec1-btn button:hover{
  color: #FFB22C;
  border: solid 1px #FFB22C;
}

.sec1-social{
  margin-top: 30px;
  display: flex;
  gap: 10px;
}

.sec1-social>img{
  width: 30px;
  transition: transform 0.3s ease;
}

.sec1-social img:hover{
  transform: scale(1.1);
}

.down-arrow{
  margin-top: 80px;
  width: 30px;
  animation: bounce 1.5s ease-in-out infinite;
}

@keyframes bounce {
  0% {
      transform: translateY(0); /* Start position */
  }
  50% {
      transform: translateY(10px); /* Move down */
  }
  100% {
      transform: translateY(0); /* Back to the original position */
  }
}



@media (max-width: 768px) {
  .image-content p {
    width: 80vw;
  }

}

@media (max-width: 687px) {
  .image-content h4 {
    font-size: 5vw;
  }
  
  .image-content h1 {
      font-size: 11vw;
  }
  
  .image-content h2 {
    font-size: 9vw;
  }
    
  .image-content h5 {
    font-size: 4vw;
  }
  
  .image-content p {
    font-size: 3vw;
  }

}

@media (max-width: 425px) {
  .image-content h4 {
    margin-bottom: 2px;
  }
  

  .image-content h1 {
    margin-top: -10px;
  }
  
  .image-content h2 {
    margin-top: -8px;
  }
    
  .image-content h5 {
    margin-top: 10px;
  }
  
  .image-content p {
    margin-top: 10px;
  }
  

}

@media (max-width: 375px) {
  .image-content h1 {
    font-size: 10px;
   
  }
}

/* ------------------------ End of First Section ----------------------- */



/* ------------------------ Second Section ----------------------- */

.second-section{
    padding: 50px;
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.topic-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.topic-section h2{
  font-size: 20px;
  font-weight: 400;
  color: #FFB22C;
}

.topic-section h1{
  font-size: 50px;
  font-weight: 600;
  color: white;
  margin-top: -15px;
}



.services-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.service-card {
  background: #121516;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: solid 1px #343434;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  margin-top: 10px;
  font-weight: 300;
  color: white;
}

.service-card p {
  font-size: 12px;
  color: #A8A8A8;
  width: 80%; /* Adjust width for better centering */
  max-width: 230px; /* Prevents paragraph from becoming too wide */
  text-align: center; /* Centers text */
  margin: 0 auto 10px auto; /* Centers block inside the card */
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .services-container {
      grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }
}

@media (max-width: 768px) {
  .services {
      padding: 50px 40px;
  }
  .services-container {
      grid-template-columns: repeat(1, 1fr); /* 1 column on mobile */
      width: 100%;
  }
}

@media (max-width: 425px) {
  .topic-section h2{
    font-size: 15px;
  }
  
  .topic-section h1{
    font-size: 40px;
    font-weight: 600;
    color: white;
    margin-top: -15px;
  }
}

/* ------------------------ End of Second Section ----------------------- */



/* ------------------------ Third Section ----------------------- */

.about-section {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 250px;
  gap: 50px;
}

.about-image {
  width: 50%;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.about-text {
  width: 50%;
  color: white;
}

.about-text h2 {
  font-size: 20px;
  font-weight: 400;
  color: #FFB22C;
}

.about-text h1 {
  font-size: 50px;
  font-weight: 600;
  color: white;
  margin-top: -15px;
}

.about-text p {
  font-size: 12px;
  color: #A8A8A8;
  line-height: 1.6;
  margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-section {
      padding: 50px 80px;
      gap: 30px;
  }
}

@media (max-width: 768px) {
  .about-section {
      flex-direction: column;
      text-align: center;
      padding: 50px 40px;
  }

  .about-image {
      display: none; /* Hide the image on small screens */
  }

  .about-text {
      width: 100%;
  }
}



@media (max-width: 425px) {
  .about-text h2{
    font-size: 15px;
  }
  
  .about-text h1{
    font-size: 40px;
    font-weight: 600;
    color: white;
    margin-top: -15px;
  }
}

/* ------------------------ End of Third Section ----------------------- */


/* ------------------------ Fourth Section ----------------------- */

.fourth-section{
  margin-top: 60px;
}

.gallery-section {
  padding: 20px 250px;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 images per row */
  gap: 20px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05); /* Zoom on hover */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .gallery-container {
      grid-template-columns: repeat(2, 1fr); /* 2 images per row on tablets */
  }
}

@media (max-width: 768px) {
  .gallery-section {
      padding: 50px 40px;
  }
  .gallery-container {
      grid-template-columns: repeat(1, 1fr); /* 1 image per row on mobile */
  }
}

/* ------------------------ End of Fourth Section ----------------------- */