/* ---------------- NAVIGATION ---------------- */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  z-index: 1000;
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 88px;
}

.menu {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s ease;
}

.menu li a:hover {
  color: #0866f3;
}

body {
  padding-top: 120px;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f5f7fa;
}

/* ---------------- GENERAL SECTION SPACING ---------------- */
section {
  padding: 100px 40px;
}

/* ---------------- INFO SECTION ---------------- */
.info-section {
  background: #0866f3;               /* blue background */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  color: #e9f1ff;
  margin: 60px auto;
}

/* FLEX FOR THE INNER CONTAINER */
.info-container {
  display: flex;                     
  align-items: center;               
  justify-content: space-between;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;                   
}

.info-text {
  flex: 1;
  min-width: 280px;
}

 h2 {
  font-size: 42px;
  font-weight: bold;
  font-family: 'Cinzel', serif;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-align: center;
}

.info-text p {
  font-size: 17px;
  line-height: 1.8;
}

.info-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.info-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
}

/* MOBILE */
@media (max-width: 768px) {
  .info-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .info-image img {
    max-width: 90%;
  }
}
/* ---------------- WHAT WE DO ---------------- */
h1 {
  text-align: center;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
}

.icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px;
  text-align: center;
  gap: 12px;
}

.round-btn {
  width: 75px;
  min-width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #0866f3;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.round-btn:hover {
  background: #063ea8;
  transform: translateY(-8px);
}

.icon-card span {
  margin-top: 12px;
  font-weight: 500;
}

/* ---------------- ABOUT US SECTION ---------------- */
/* ABOUT US SECTION */
.about-us-section {
  background: #ffffff;
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 12px;
}

/* Heading on top, centered */
.about-us-heading {
  text-align: center;
  font-size: 36px;
  font-family: 'Cinzel', serif;
  font-weight: bold;
  margin-bottom: 50px;
}

/* FLEX CONTAINER: TEXT + IMAGES SIDE BY SIDE */
.about-us-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap; /* stack on mobile */
}

/* Text column */
.about-us-text {
  flex: 1;
  min-width: 280px;
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

/* Images column */
.about-us-images {
  flex: 1;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Each image */
.about-us-images img {
  width: 100%;
  max-width: 180px;
  height: 250px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateX(100px);
  transition: all 1s ease-out;
}

/* Slide-in active */
.about-us-images img.active {
  opacity: 1;
  transform: translateX(0);
}

/* BUTTON CENTERED */
.learn-more-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #260ff5;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s ease;
}

.about-btn:hover {
  background-color: #f50303;
}
  .about-us-images {
    justify-content: center;
  }

  .about-us-images img {
    margin-bottom: 20px;
  }
  /* ABOUT US SECTION */
.about-us-section {
  background: #ffffff;
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 12px;
}

/* Heading on top, centered */
.about-us-heading {
  text-align: center;
  font-size: 36px;
  font-family: 'Cinzel', serif;
  font-weight: bold;
  margin-bottom: 50px;
}

/* FLEX CONTAINER: TEXT + IMAGES SIDE BY SIDE */
.about-us-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap; /* stack on mobile */
}

/* Text column */
.about-us-text {
  flex: 1;
  min-width: 280px;
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

/* Images column */
.about-us-images {
  flex: 1;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Each image */
.about-us-images img {
  width: 100%;
  max-width: 180px;
  height: 250px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateX(100px);
  transition: all 1s ease-out;
}

/* Slide-in active */
.about-us-images img.active {
  opacity: 1;
  transform: translateX(0);
}

/* BUTTON CENTERED */
.about-us-button {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}


  .about-us-images {
    justify-content: center;
  }

  .about-us-images img {
    margin-bottom: 20px;
  }

  const aboutImages = document.querySelectorAll('.slide-in-right');

const observer= new IntersectionObserver((entries) => {
  entries.forEach(entry => {
    if(entry.isIntersecting){
      entry.target.classList.add('active');
    }
  });
}, { threshold: 0.5 });

aboutImages.forEach(img => observer.observe(img));

/* ---------------- CONTACT SECTION ---------------- */
.contact-section {
  background: #ffffff;
  padding: 80px 40px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-top {
  text-align: center;
  margin-bottom: 60px;
}

.contact-top h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.contact-top p {
  max-width: 600px;
  margin: 0 auto;
  color: #ffffff;
}

.contact-content {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* LOGO CARD */
.contact-left {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.contact-logo {
  max-width: 180px;
  height: auto;
  display: block;
}

/* FORM SIDE */
.contact-right {
  flex: 1;
}

.contact-right form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-right input,
.contact-right textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.contact-right input:focus,
.contact-right textarea:focus {
  outline: none;
  border-color: #0866f3;
}

.contact-btn {
  background: #0866f3;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-btn:hover {
  background-color: #063ea8;
  transform: translateY(-2px);
}

/* ---------------- SLIDE-IN ANIMATION ---------------- */
.slide-in-right {
  opacity: 0;
  transform: translateX(80px);
  animation: slideInRight 1s ease forwards;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(80px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 900px) {
  .info-section,
  .about-us-content,
  .contact-content {
    flex-direction: column;
    text-align: center;
  }

  .info-image img,
  .info-images img,
  .contact-logo {
    width: 80%;
    margin-bottom: 20px;
  }
}

/* ---------------- INFO SECTION/ABOUT US ---------------- */
.info-section3 {
  background: #0866f3;               /* blue background */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  color: #e9f1ff;
  margin: 60px auto;
}

/* FLEX FOR THE INNER CONTAINER */
.info-container3 {
  display: flex;                     
  align-items: center;               
  justify-content: space-between;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap; 
  

}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.info-text3 {
  flex: 1;
  min-width: 280px;
}

 h2 {
  font-size: 42px;
  font-weight: bold;
  font-family: 'Cinzel', serif;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-align: center;
}

.info-text3 p {
  font-size: 17px;
  line-height: 1.8;
}

.info-image3 {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.info-image3 img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
}

/* MOBILE */
@media (max-width: 768px) {
  .info-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .info-image img {
    max-width: 90%;
  }
}

.three-columns {
  display: grid;
  gap: 30px; /* space between columns */
  grid-template-columns:repeat(3, 1fr)
}

.column {
  flex: 1; /* makes all 3 equal width */
  background: rgb(255, 254, 254);
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  color: #050505;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .three-columns {
    grid-template-columns:1fr
  }
}

.info-section4 {
  background: #eee8e8;               
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  margin: 60px auto;
}

/* FLEX FOR THE INNER CONTAINER */
.info-container4 {
  display: flex;                     
  align-items: center;               
  justify-content: space-between;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;                   
}

.info-text4 {
  flex: 1;
  min-width: 280px;
}

 h2 {
  font-size: 42px;
  font-weight: bold;
  font-family: 'Cinzel', serif;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-align: center;
}

.info-text4 p {
  font-size: 17px;
  line-height: 1.8;
}

.info-image4 {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.info-image4 img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
}

/* MOBILE */
@media (max-width: 768px) {
  .info-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .info-image4 img {
    max-width: 90%;
  }
}

.info-section5 {
  background: #0866f3;               /* blue background */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  color: #e9f1ff;
  margin: 60px auto;
}

/* FLEX FOR THE INNER CONTAINER */
.info-container5 {
  display: flex;                     
  align-items: center;               
  justify-content: space-between;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;                   
}

.info-text5 {
  flex: 1;
  min-width: 280px;
}

h2 {
  font-size: 42px;
  font-weight: bold;
  font-family: 'Cinzel', serif;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-align: center;
}

.info-text5 p {
  font-size: 17px;
  line-height: 1.8;
}

.info-image5 {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.info-image5 img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
}

/* MOBILE */
@media (max-width: 768px) {
  .info-container5 {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .info-image5 img {
    max-width: 90%;
  }
}

/*CONTACT ICONS*/
.contact-icons {
  display: flex;
  justify-content: center;
  gap: 50px; /* space between icons */
  text-align: center;
  margin: 40px 0;
}

.contact-item i {
  font-size: 28px;
  color: #056ef8; /* change to your brand color */
  margin-bottom: 10px;
}

.contact-item p {
  margin: 0;
  font-size: 14px;
}

/*SERVICES OFFERD*/
/* SERVICES SECTION */
.info-section6 {
  padding: 100px 40px;
  background: #f9f9f9;
}

.info-section6 h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 60px;
}

/* Each Service Row */
.service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 80px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Alternate Layout */
.service:nth-child(even) {
  flex-direction: row-reverse;
}

/* Text Side */
.info-text {
  flex: 1;
}

.info-text p {
  margin-top: 15px;
  line-height: 1.6;
  color: #444;
}

/* Image Side */
.info-image {
  flex: 1;
}

.info-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Icon Card */
.icon-card {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon-card span {
  font-size: 20px;
  font-weight: 600;
}

/* Round Icon */
.round {
  width: 70px;
  height: 70px;
  background: #0747f5;
  min-width: 70px;
  min-height: 70px;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 22px;
  transition: 0.3s ease;
}

.round:hover {
  background: #444;
  transform: scale(1.1);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .service {
    flex-direction: column !important;
    text-align: center;
  }

  .icon-card {
    justify-content: center;
  }
}

/* POPUP OVERLAY */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
  z-index: 9999;
}

/* SHOW POPUP */
.popup-overlay.active {
  visibility: visible;
  opacity: 1;
}

/* POPUP BOX */
.popup-box {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  position: relative;
  animation: pop 0.3s ease;
}

/* Close Button */
.close-popup {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 22px;
  cursor: pointer;
}

/* Animation */
@keyframes pop {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}