   /* HERO SECTION */
.hero-ser {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
  padding: 0 16px;
}

/* Background Image */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(47, 50, 55, 0.5);
  z-index: 1;
}

.hero-content-ser {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
}

/* Heading */
.hero-ser h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 12px;
  font-weight: 700;
  color: #fff;
}

/* Paragraph */
.hero-ser p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #ededed;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Tablets */
@media (max-width: 992px) {
  .hero-ser {
    min-height: 80vh;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hero-ser {
    min-height: 110vh;
  }

  .hero-ser h1 {
    font-size: 1.8rem;
  }

  .hero-ser p {
    font-size: 0.95rem;
  }
}

    /* SERVICES DETAILS */
    .services {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  text-align: center;
}

/* Services Grid */
.services-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  width: 100%;
}

/* Card */
.service-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Title */
.service-card h3 {
  margin-bottom: 15px;
}

.service-card h3 a {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: #0B1F3B;
  font-weight: 600;
  text-decoration: none;
}

.service-card h3 a:hover {
  color: #F58520;
}

/* Text */
.service-card p {
  color: #555;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.6;
}

/* Tablet */
@media (max-width: 992px) {
  .services {
    padding: 60px 20px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .services {
    padding: 50px 15px;
  }

  .service-card {
    padding: 25px 20px;
  }
}

/*//////////// detail section */
.det-section {
  padding: 80px 20px;
  background-color: #f7f9fc;
}

.det-row {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 40px;
  border-radius: 12px;
  overflow: hidden;
}

/* LEFT (Content) */
.det-left {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 200px 20px;
}

.det-left h2 {
  color: #fff;
  font-weight: 700;
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 15px;
}

.det-left p {
  font-size: clamp(15px, 2.2vw, 20px);
  color: #efefef;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* RIGHT (Background Image) */
.det-right {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.det-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.det-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

/* Tablet */
@media (max-width: 992px) {
  .det-left {
    padding: 150px 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .det-left {
    padding: 60px 15px;
  }

  .det-left h2 {
    font-size: 22px;
  }

  .det-left p {
    font-size: 14px;
  }
}

.sub-center {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 25px;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: #14B8A6;
  font-weight: 600;
}

/* Bullet points (2-column) */
.det-list.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 40px;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 0;
}

.det-list {
  list-style: none;
  padding-left: 0;
}

.det-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: clamp(0.95rem, 2vw, 1.3rem);
  line-height: 1.6;
  color: #333;
}

.det-list i {
  color: #0B1F3B;
  font-size: 1.1rem;
  margin-top: 4px;
}

/* Center paragraph */
.center-text {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(0.95rem, 2vw, 1.3rem);
  line-height: 1.7;
  color: #555;
}

/* Tablet */
@media (max-width: 992px) {
  .sub-center {
    margin-top: 60px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .det-list.two-col {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sub-center {
    margin-top: 40px;
  }
}


    /* CONTACT SECTION */
.contact {
  padding: 80px 20px;
}

/* Section Heading */
.contact h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #333;
}


.contact .row {
  justify-content: center; 
}

/* Form column adjust */
.contact .col-lg-8 {
  max-width: 600px; 
  flex: 0 0 auto;   
}

/* FORM WRAPPER */
.form-wrapper {
border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 30px;
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
}

/* ONLY contact form */
.form-wrapper .php-email-form input,
.form-wrapper .php-email-form textarea,
.form-wrapper .php-email-form button {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.form-wrapper .php-email-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-wrapper .php-email-form button {
  background-color: #0B1F3B;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.form-wrapper .php-email-form button:hover {
  background-color: #091a30;
}

/* Tablet */
@media (max-width: 992px) {
  .form-wrapper {
    max-width: 100%;
    margin-top: 30px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .contact {
    padding: 60px 15px;
  }

  .info {
    margin-bottom: 30px;
  }
}
