/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Styling */
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #121212;
  color: #f0f0f0;
  line-height: 1.6;
}

/* =========================
   Navbar Styles
   ========================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1a1a1a;
  padding: 20px 60px;
  border-bottom: 1px solid #333;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}

.logo-img {
  width: 40px;
  height: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #c9a65a;
}

/* =========================
   Hero Section Styles
   ========================= */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: center;
  padding: 0 20px;
  color: #fff;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #f5f5f5;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ccc;
}

/* =========================
   Button Styles
   ========================= */
.btn {
  padding: 12px 30px;
  background-color: #c9a65a;
  color: #121212;
  border: none;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #b98f45;
}

/* =========================
   Image Slider Styles
   ========================= */
.image-slider {
  padding: 60px 30px;
  background-color: #121212;
}

.swiper-slide img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  height: 300px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* =========================
   Footer Styles
   ========================= */
.site-footer {
  background-color: #1a1a1a;
  color: #ccc;
  padding: 60px 20px 30px;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-links h4 {
  color: #f0f0f0;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #c9a65a;
}

.footer-newsletter form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-newsletter input {
  padding: 10px;
  border: none;
  border-radius: 5px;
  background: #2a2a2a;
  color: #fff;
}

.footer-newsletter button {
  padding: 10px;
  border: none;
  border-radius: 5px;
  background: #c9a65a;
  color: #121212;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer-newsletter button:hover {
  background-color: #b98f45;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
}

.ending {
  text-align: center;
}

/* =========================
   Social Icons
   ========================= */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.social-icons a {
  color: #c9a65a;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
}


/* Container for inner pages */
.container {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.about-section h1,
.portfolio-section h1,
.contact-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #f5f5f5;
}

.about-section p,
.portfolio-section p,
.contact-section p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 20px;
}

/*why choose us*/
.about-section ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #bbb;
}

.founder-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 60px;
  background-color: #1a1a1a;
  padding: 40px;
  border-radius: 16px;
  align-items: flex-start;
  justify-content: center;
}

.founder-image img {
  width: 260px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.founder-info {
  flex: 1;
  min-width: 280px;
  color: #f0f0f0;
}

.founder-info h2 {
  color: #c9a65a;
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.founder-info h4 {
  font-weight: 400;
  color: #aaa;
  margin-bottom: 20px;
  font-size: 1rem;
}

.founder-info p {
  margin-bottom: 12px;
  color: #ccc;
  line-height: 1.6;
  font-size: 0.95rem;
}


.fa-threads {
  font-family: "Font Awesome 6 Brands";
}

/* Portfolio Page */
.portfolio-section {
  padding: 80px 60px;
  background-color: #121212;
  color: #f0f0f0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 10px;
  color: #c9a65a;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 50px;
  color: #ccc;
  font-size: 1.1rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.portfolio-item {
  background-color: #1f1f1f;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.portfolio-item:hover {
  transform: translateY(-10px);
}

.portfolio-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.portfolio-info {
  padding: 20px;
}

.portfolio-info h3 {
  margin-bottom: 10px;
  color: #f0f0f0;
}

.portfolio-info p {
  color: #bbb;
  font-size: 0.95rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
  background-color: #1a1a1a;
  border-radius: 10px;
}

form label {
  font-weight: bold;
}

form input,
form textarea {
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #2a2a2a;
  color: #fff;
}

form button {
  padding: 12px;
  background-color: #c9a65a;
  color: #121212;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background-color: #b98f45;
}

#form-success {
  font-size: 1.2rem;
  background-color: #1f1f1f;
  border: 1px solid #444;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.comparison-section {
  padding: 60px 20px;
  text-align: center;
}

.comparison-row {
  display: flex;
  justify-content: center;
  gap: 30px;   /* spacing between items */
  flex-wrap: wrap; /* allows wrapping on smaller screens */
}

.comparison-container {
  flex: 1 1 300px;   /* responsive: min width 300px, grows as space allows */
  max-width: 350px;  /* prevent getting too wide */
  position: relative;
}


    .comparison-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      transition: clip-path 1s ease-in-out, filter 0.4s;
      border-radius: 10px;
    }

    .comparison-wrapper {
      position: relative;
      width: 100%;
      padding-top: 66.66%; /* 3:2 aspect ratio */
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(0,0,0,0.4);
      margin-bottom: 20px;
    }

    .comparison-wrapper img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .button-group {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    .toggle-btn {
      padding: 12px 24px;
      border: none;
      border-radius: 30px;
      font-weight: bold;
      cursor: pointer;
      background-color: #333;
      color: #ccc;
      transition: background-color 0.3s;
    }

    .toggle-btn.active {
      background-color: #c9a65a;
      color: #121212;
    }

    .coming-soon-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
  background-color: #121212;
  text-align: center;
  padding: 20px;
}

.coming-soon-container {
  max-width: 600px;
  animation: fadeIn 1.5s ease-in-out;
}

.coming-soon-container h1 {
  font-size: 2.5rem;
  color: #c9a65a;
  margin-bottom: 20px;
}

.soon-text {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 10px;
  animation: blink 1.2s infinite;
}

.coming-soon-container p {
  color: #bbb;
  font-size: 1.1rem;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.careers-section {
  background-color: #121212;
  color: #f0f0f0;
  padding: 60px 20px;
  text-align: center;
}

.careers-container {
  max-width: 900px;
  margin: 0 auto;
}

.careers-section h1 {
  font-size: 2.5rem;
  color: #c9a65a;
  margin-bottom: 20px;
}

.careers-intro {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: #fff;
}

.careers-section p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 25px;
}

.careers-section h2 {
  text-align: center;
  max-width: 600px;
  margin: 40px auto 15px;
}


.careers-benefits {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px;
  text-align: center;
  max-width: 600px;
}

.careers-benefits li {
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: #ccc;
  padding-left: 0;
  position: relative;
}

.careers-benefits li::before {
  content: "";
  display: none; 
}


.careers-coming-soon {
  color: #c9a65a;
  font-weight: bold;
  font-size: 1.2rem;
  animation: blink 1.2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.application-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 30px auto 60px;
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.application-form label {
  font-weight: bold;
  color: #f0f0f0;
  text-align: left;
}

.application-form input,
.application-form textarea {
  padding: 12px;
  border: none;
  border-radius: 6px;
  background-color: #2a2a2a;
  color: #fff;
  font-size: 1rem;
}

.application-form button {
  padding: 12px;
  border: none;
  border-radius: 30px;
  background-color: #c9a65a;
  color: #121212;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.application-form button:hover {
  background-color: #b98f45;
}


/* Responsive Fixes */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding-top: 10px;
  }

  .nav-links li a {
    padding: 10px 0;
    display: block;
    font-size: 1rem;
  }

  .hero {
    height: auto;
    padding: 100px 20px;
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn {
    font-size: 1rem;
    padding: 10px 25px;
  }

  .container {
    margin: 40px auto;
    padding: 0 15px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .portfolio-item img {
    height: auto;
  }

  form {
    padding: 15px;
  }

  form input,
  form textarea {
    font-size: 1rem;
  }

  form button {
    font-size: 1rem;
  }

  .founder-section {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }

  .founder-image img {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }

  .founder-info {
    padding: 0;
  }

  .social-icons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .social-icons a {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  footer {
    font-size: 0.8rem;
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .toggle-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }

  .before-after-card {
    padding: 15px;
  }
}

.gallery-section {
  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

.gallery-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.gallery-grid img {
  width: 100%;
  height: 250px; /* Fixed height for uniformity */
  object-fit: cover; /* Crop to fit the box */
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 80%;
  border-radius: 8px;
}

#caption {
  margin: auto;
  text-align: center;
  padding: 10px;
  color: #ccc;
  font-size: 18px;
}

.close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #bbb;
}
