.web-development-page {
  font-family: 'Poppins', sans-serif;
  color: white;
  text-align: center;
  padding: 6rem 0;
}
/* Hero Section */

.hero-section {
  position: relative;
  padding: 5rem 2rem;
  background: url("/images/Coverphotos.png") center/cover no-repeat;
  border-radius: 20px;
  box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.2);
  color: white;
}

.hero-section .row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* Left Side - Service Description */
.hero-section h1 {
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero-section .sub-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 90%;
}

/* Right Side - Quotation Form */
.quote-box {
  width: 100%;
  max-width: 450px;
  padding: 30px;
  text-align: center;
  background: rgba( 48, 48, 48, 0.25 );
box-shadow: 0 8px 32px 0 rgba(255, 255, 255, 0.37);
backdrop-filter: blur( 4px );
-webkit-backdrop-filter: blur( 4px );
border-radius: 10px;
border: 1px solid rgba( 255, 255, 255, 0.18 );
}

/* Quote Form Title */
.quote-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #FF007F;
  margin-bottom: 1rem;
}

/* Form Fields */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* Labels */
.quote-form label {
  font-size: 0.9rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 4px;
  text-align: left;
}

/* Form Inputs */
.quote-form .form-group {
  margin: 0;
}

.quote-form .form-control {
  width: 100%;
  padding: 8px;
  border: 1px solid #ffffff;
  box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-size: 0.9rem;
  background: none;
  color: white;
}

.quote-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* Smaller Textarea */
.quote-form textarea {
  resize: none;
}

/* Submit Button */
.quote-form .form-button {
  background: #FF007F;
  color: white;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.quote-form .form-button:hover {
  background: white;
  color: #101010;
}

.captcha-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.captcha-container label {
  font-size: 0.9rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.8);
  text-align: left;
}


/* ✅ Responsive Adjustments */
@media (max-width: 992px) {
  .hero-section {
      padding: 4rem 2rem;
  }

  .hero-section .row {
      flex-direction: column;
      text-align: center;
  }

  .quote-box {
      max-width: 100%;
  }

  .hero-section .sub-text {
      max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-section h1 {
      font-size: 2rem;
  }

  .hero-section .sub-text {
      font-size: 1rem;
  }

  .quote-form label {
      font-size: 0.8rem;
  }

  .quote-form .form-control {
      font-size: 0.9rem;
      padding: 8px;
  }

  .quote-form .form-button {
      padding: 8px 12px;
      font-size: 0.9rem;
  }
}



/* Responsive Text */
.glow-text {
  font-size: 3rem;

  text-transform: uppercase;
  color: #FF007F;
  text-shadow: 0 0 20px #FF007F, 0 0 40px rgba(255, 0, 127, 0.3);
}

.highlight {
  color: #ffffff;
  text-shadow: none;
}

.sub-text {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
}

/* CTA Button */
.cta-button {
  background: #101010;
  color: #FF007F;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 200;
  transition: 0.3s;
}

.cta-button:hover {
  background: white;
  color: #101010;
}

.video-links {
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 4;
  cursor: pointer;
}

.video-links span {
  color: white;
}
.video-link {
  color: white;
  font-weight: 500;
  text-decoration: none;
  padding: 0 10px;
  z-index: 4;
  cursor: pointer;
}

.video-link:hover {
  color: #FF007F;
}


/* Service Offerings */
.service-section {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 4rem;
}

.service-card {
  background: #303030;
  padding: 2rem;
  border-radius: 12px;
  width: 30%;
  min-width: 280px;
  box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.2);
  transition: 0.3s;
}

.service-card video {
  width: 40%;
}

.service-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

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

/* Process Section */
.process-section {
  margin: 6rem 0;
}

.process-title {
  font-size: 2.5rem;
  color: #FF007F;
}

.process-steps {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.process-step {
  background: #303030;
  padding: 2rem;
  border-radius: 12px;
  width: 30%;
  min-width: 200px;
  box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.2);
}

.process-step video {
  max-width: 120px;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.5rem;
  color: #FF007F;
}

/* CTA Section */
.cta-section {
  box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.2);
  padding: 3rem;
  border-radius: 15px;
}

/* 🔹 Section Container */
.projects-container {
  max-width: 1200px;
  margin: auto;
  padding: 4rem 1rem;
  text-align: center;
}

/* 🔹 Section Title */
.section-title {
  font-size: 2.5rem;
 
  color: #FF007F;

  margin-bottom: 2rem;
}



/* ✅ Properly Centered Grid Layout */
.projects-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Ensures all cards are centered */
  gap: 2rem; /* Space between cards */
  max-width: 1100px; /* Prevents stretching */
  margin: 0 auto; /* Centers the entire grid */
}

/* 🔹 Project Card */
.project-card {
  width: 300px; /* Standard width */
  flex-grow: 1; /* Allows it to expand if necessary */
  max-width: 32%; /* Prevents too wide on larger screens */
  background: #303030;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 5px 20px rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* 🔹 Card Hover Effect */
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 25px rgba(255, 0, 127, 0.5);
}

/* 🔹 Image Styling */
.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* 🔹 Project Info */
.project-info {
  padding: 1.5rem;
  text-align: left;
}

/* 🔹 Project Title */
.project-info h3 {
  font-size: 1.5rem;
  color: #FF007F;
  margin-bottom: 0.5rem;
}

/* 🔹 Project Description */
.project-info p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

/* 🔹 Visit Project Button */
.btn-visit {
  display: inline-block;
  background: #FF007F;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

/* 🔹 Button Hover Effect */
.btn-visit:hover {
  background: white;
  color: #101010;
}



/* 🔥 FULLSCREEN MODAL STYLING 🔥 */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px; /* Add padding for better spacing */
  overflow: hidden;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content img {
  width: auto;
  height: auto;
  max-width: 80vw; /* Limits the width to 80% of viewport width */
  max-height: 80vh; /* Limits the height to 80% of viewport height */
  border-radius: 15px;
}

/* Close Button */
.close-modal {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 1rem;
  color: white;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.6);
  padding: 5px 12px;
  border-radius: 50%;
  transition: background 0.3s ease-in-out;
}

.close-modal:hover {
  background: rgba(255, 0, 127, 0.8);
}




/* ✅ RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
  .hero-section {
      padding: 4rem 2rem;
  }

  .glow-text {
      font-size: 2.5rem;
  }

  .service-section,
  .process-steps {
      flex-direction: column;
      align-items: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .projects-grid {
    justify-content: center;
  }
  .project-card {
    max-width: 45%; /* Two cards per row */
  }

  .service-card,
  .process-step {
      width: 90%;
  }
}

@media (max-width: 768px) {
  .glow-text {
      font-size: 2rem;
  }

  .sub-text {
      font-size: 1rem;
  }

  .service-card,
  .process-step {
      width: 80%;
  }

  .cta-button {
      padding: 10px 20px;
  }

  .projects-grid {
    flex-direction: column;
    align-items: center; /* Center the single column on mobile */
}
.project-card {
    max-width: 100%; /* Full width */
}

  .section-title {
    font-size: 1.8rem;
}

.project-card img {
    height: 180px;
}
}

@media (max-width: 576px) {
  .glow-text {
      font-size: 1.5rem;
  }

  .sub-text {
      font-size: 0.9rem;
  }

  .service-card,
  .process-step {
      padding: 1.5rem;
  }

  .service-card p, .process-step p{
    font-size: .9rem;
  }


  .cta-section {
      padding: 2rem;
  }
  .section-title {
    font-size: 1.5rem;
}

.project-info h3 {
    font-size: 1.3rem;
}

.btn-visit {
    padding: 8px 16px;
    font-size: 0.9rem;
}
}
