* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html { scroll-behavior: smooth; }
body {
  font-family: "Poppins", sans-serif;
  color: #fff;
  overflow-x: hidden;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 8px 50px;
  display: flex;
  align-items: center;
  background: transparent;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 100;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo {
  height: 80px;
}
.company-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
}
.company-tagline {
  font-size: 0.8rem;
  color: #ffffff;
  letter-spacing: 3px;
}
.navbar {
  margin-left: auto; /* push nav to right side */
}

.navbar ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
}

.navbar a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  transition: all 0.3s ease;
}

.navbar a:hover {
  color: #ffd700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

/* SIGNUP BUTTON STYLE */
.signup-btn {
  background-color: #ffd700;
  color: #000;
  padding: 8px 18px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.signup-btn:hover {
  background-color: #fff;
  color: #000;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  height: 100vh;
  background: url("image7.jpg") center/cover no-repeat;
  display: flex; justify-content: center; align-items: center; text-align: center;
}
.overlay {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.content { z-index: 1; max-width: 800px; }
.title {
  font-size: 3rem; font-weight: 700; color: #ffd700;
}
.description { margin-top: 15px; font-size: 1.1rem; color: #f5f5f5; }
.address {
  margin-top: 25px; display: inline-flex; align-items: center;
  background: rgba(255, 215, 0, 0.1); border-radius: 25px; padding: 10px 20px;
}
.address i { color: #ffd700; margin-right: 10px; }

/* ABOUT SECTION */
.about-section {
  background: #fff; color: #222; padding: 60px 80px 20px;
}
.about-container {
  display: flex; justify-content: space-between; align-items: center; gap: 50px;
}
.about-images { flex: 1; display: flex; gap: 20px; }
.about-images img {
  width: 32%; height: 420px; border-radius: 10px; object-fit: cover;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.about-text { flex: 1; }
.about-title { font-size: 2.8rem; color: #111; margin-bottom: 20px; }
.about-title span { color: #ffd700; }
.about-description { font-size: 1.1rem; color: #555; }

/* STATS SECTION */
.stats-section {
  background: #fff; color: #111; padding: 20px 80px 60px;
}
.stats-container {
  display: flex; justify-content: space-between; align-items: center;
}
.stats-right {
  display: flex; gap: 60px;
}
.number {
  font-size: 2.4rem; font-weight: 700; color: #ffd700; margin-right: 6px;
}

/* INFINITE SCROLL */
/* INFINITE SCROLL SECTION */
.infinite-scroll-section {
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 30px 0;
}

.scroll-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scroll-track {
  display: flex;
  gap: 15px;
  animation: scrollInfinite 120s linear infinite;
}

.scroll-track img {
  height: 250px;
  width: auto;
  border-radius: 10px;
  flex-shrink: 0;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.scroll-track img:hover {
  transform: scale(1.08);
}

@keyframes scrollInfinite {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


/* OWNER SECTION */
.owner-section {
  background: #fff; text-align: center; padding: 80px 40px;
}
.owner-title { margin-top: 1px; font-size: 2.8rem; color: #000; margin-bottom: 40px; }
.owner-image {
  width: 220px; height: 220px; border-radius: 50%; border: 5px solid #ffd700;
}
.highlight {
  font-weight: 700;  /* bold */
  color: #000;       /* black */
}

.owner-name { color: #ffd700; margin-top: 10px; font-size: 1.6rem; margin-bottom: 20px;}
.owner-description { color: #000; line-height: 1.8; max-width: 700px; margin: auto; }

/* SERVICES SECTION */
.services-section {
  width: 100%;
  background: #fff;
  color: #222;
  padding: 100px 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* LEFT SIDE IMAGES */
.services-images {
  display: flex;
  flex: 1;
  gap: 20px;
  justify-content: center;
}

.services-images img {
  width: 45%;
  height: 350px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* RIGHT SIDE TEXT */
.services-text {
  flex: 1;
  text-align: left;
}

.services-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.services-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  max-width: 550px;
}

.services-text .highlight {
  color: #ffb400;
  font-weight: 600;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .services-container {
    flex-direction: column;
    text-align: center;
  }

  .services-images {
    flex-direction: row;
     display: flex;
  flex: 1;
  gap: 30px;
    justify-content: center;
  }

  .services-images img {
    width: 50%;
    height: 500px;
    
  }

  .services-text p {
    margin: 0 auto;
  }
}
.contact-info {
  margin-top: 25px;
}

.contact-info p {
  font-size: 1rem;
  margin: 8px 0;
}

.contact-info a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* COMMENT SECTION */
.comment-section {
  background: #f9f9f9;
  padding: 60px 80px;
  color: #222;
}
.comment-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}
.comment-form {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.comment-form h2 {
  color: #222; margin-bottom: 20px; font-weight: 700;
}
.comment-form label {
  display: block; margin-bottom: 8px; color: #333; font-weight: 500;
}
.comment-form input, .comment-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 15px;
}
.comment-form button {
  background: #ffd700;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}
.comment-display {
  flex: 1;
}
.comment-display h2 {
  color: #222; margin-bottom: 20px;
}
.comment {
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.comment h4 { color: #111; margin-bottom: 8px; }
.comment p { color: #333; margin-bottom: 10px; }
.comment button {
  background: none;
  border: none;
  color: #007bff;
  cursor: pointer;
  margin-right: 10px;
}
.comment button:hover { text-decoration: underline; }
/* INFINITE SCROLLING TEXT */
.infinite-text-section {
  background: #fff;
  border-top: 2px solid #ffd700;
  border-bottom: 2px solid #ffd700;
  padding: 15px 0;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.infinite-text {
  display: flex;
  align-items: center;
}

.scroll-content {
  display: inline-block;
  white-space: nowrap;
  font-size: 1.3rem;
  font-weight: 600;
  color: #111;
  animation: scrollInfinite 25s linear infinite;
}

.scroll-content span {
  margin-right: 100px;
  letter-spacing: 1px;
}

/* Smooth infinite scrolling animation */
@keyframes scrollInfinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Contact Section */
.contact-section {
  width: 100%;
  background: #f5f5f5;
  padding: 80px 0;
  display: flex;
  justify-content: flex-end;
}

.contact-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 1200px;
  width: 100%;
  gap: 20px; /* small gap between image and card */
  margin-right: 60px; /* pushes everything to the right */
}

/* Left Empty Space (optional, can adjust for alignment) */
.contact-empty {
  flex: 1;
}

/* Left Image */
.contact-image img {
  width: 340px;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

/* Contact Card */
.contact-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 340px;
  color: #111;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

/* Title */
.contact-card h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 25px;
  color: #111;
}

/* Contact Items */
.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.contact-item i {
  font-size: 26px;
  color: #ffd700;
  margin-bottom: 8px;
}

.contact-item h3 {
  font-size: 18px;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 5px;
}

.contact-item p a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.contact-item p a:hover {
  color: #ffd700;
}

/* Responsive Design */
@media (max-width: 900px) {
  .contact-section {
    background-color: #FFF9C4; /* 🌼 light yellow background */
  }
  .contact-container {
    flex-direction: column;
    
    align-items: center;
    justify-content: center;
    margin-right: 0;
    gap: 30px;
  }

  .contact-image img {
  width: 1000px;   /* increase this value (default ~300px) */
  height: auto;
  border-radius: 10px; /* optional rounded corners */
  object-fit: cover;
}
  .contact-card {
    width: 90%;
    height: auto;
  }
}





