
/* Section Background */
.service-details-two {
  background: linear-gradient(135deg, #f7f9fc, #eef2f6);
}

/* Service Card */
.services-box07 {
  background: #ffffff;
  border: 1px solid #e5e7eb !important;
  border-radius: 18px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Top Accent Line */
.services-box07::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0d6efd, #20c997);
}

/* Hover Effect */
.services-box07:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* Icon Styling */
.services-box07 .icon {
  width: 85px;
  height: 85px;
  margin: 0 auto 20px;
  background: #f1f5ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

/* Icon Hover */
.services-box07:hover .icon {
  background: linear-gradient(135deg, #0d6efd, #20c997);
}

.services-box07:hover .icon i {
  color: #ffffff !important;
}

/* Heading */
.services-box07 h5 {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

/* Text */
.services-box07 p {
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .services-box07 {
    padding: 30px 20px !important;
  }
}

        
.services-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #f5f9ff, #ffffff);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0a58ca;
  margin-bottom: 12px;
}

.section-title p {
  font-size: 16px;
  color: #5a6f8f;
  max-width: 700px;
  margin: 0 auto;
}

.service-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 22px;
  height: 100%;
  box-shadow: 0 12px 35px rgba(10, 88, 202, 0.12);
  transition: all 0.4s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 55px rgba(10, 88, 202, 0.25);
}

.service-img {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 20px;
}

.service-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.08);
}

.service-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0a58ca;
  margin-bottom: 12px;
  line-height: 1.4;
}

.service-card p {
  font-size: 14.5px;
  color: #6c7a92;
  line-height: 1.6;
}



.img-box {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  transition: all 0.4s ease;
}

.img-box img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.img-box:hover img {
  transform: scale(1.08);
}

/* Responsive */
@media (max-width: 991px) {
  .col {
    flex: 0 0 48% !important;
    max-width: 48% !important;
  }
}

@media (max-width: 576px) {
  .col {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}




.lux-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  text-decoration: none;
  border-radius: 60px;
  background: linear-gradient(135deg, #1a237e, #3f51b5, #5c6bc0);
  background-size: 200% 200%;
  box-shadow: 0 15px 35px rgba(26,35,126,0.35);
  transition: all 0.5s ease;
  overflow: hidden;
}

/* shine effect */
.lux-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );
  transform: skewX(-20deg);
}

.lux-btn:hover::before {
  animation: shine 0.9s ease;
}

@keyframes shine {
  100% {
    left: 130%;
  }
}

.lux-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 22px 45px rgba(26,35,126,0.5);
  background-position: right center;
}

.lux-btn:active {
  transform: translateY(-1px);
}






.about-hero {
  height: 320px;
  background-image: url("images/banner2.png"); /* apni image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark Overlay */
.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ABOUT US Text */
.about-overlay h1 {
  color: #ffffff;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero {
    height: 220px;
  }

  .about-overlay h1 {
    font-size: 36px;
    letter-spacing: 2px;
  }
}





@keyframes fadeInLeft {
    0% {opacity:0; transform:translateX(-50px);}
    100% {opacity:1; transform:translateX(0);}
}
@keyframes fadeInRight {
    0% {opacity:0; transform:translateX(50px);}
    100% {opacity:1; transform:translateX(0);}
}
.about-img img {
    max-width:100%;
}
.about-content h2 {
    font-size:2rem;
}
.about-content ul li {
    margin-bottom:10px;
}


.faq-item { border-radius:12px; margin-bottom:20px; padding:15px 20px; }
    .faq-question { font-size:18px; font-weight:600; color:#333; cursor:pointer; }
    .faq-answer { display:none; color:#555; margin-top:10px; line-height:1.6; }




      .highlight-card:hover {
        transform: translateY(-8px);
        box-shadow:0 10px 25px rgba(0,0,0,0.12);
    }




    @media(max-width:992px){
    .video-section .container { flex-direction:column; }
}
@media(max-width:480px){
    #videoModal iframe { height:250px; }
}


.grid-img {
    width: 100%;
    height: 300px; /* same height for all */
    object-fit: cover; /* ensures images fit without stretching */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.grid-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}






.services-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #f5f9ff, #ffffff);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0a58ca;
  margin-bottom: 12px;
}

.section-title p {
  font-size: 16px;
  color: #5a6f8f;
  max-width: 700px;
  margin: 0 auto;
}

.service-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 22px;
  height: 100%;
  box-shadow: 0 12px 35px rgba(10, 88, 202, 0.12);
  transition: all 0.4s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 55px rgba(10, 88, 202, 0.25);
}

.service-img {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 20px;
}

.service-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.08);
}

.service-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0a58ca;
  margin-bottom: 12px;
  line-height: 1.4;
}

.service-card p {
  font-size: 14.5px;
  color: #6c7a92;
  line-height: 1.6;
}





.about-hero {
  height: 320px;
  background-image: url("images/banner2.png"); /* apni image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark Overlay */
.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ABOUT US Text */
.about-overlay h1 {
  color: #ffffff;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero {
    height: 220px;
  }

  .about-overlay h1 {
    font-size: 36px;
    letter-spacing: 2px;
  }
}





.contact-bordered-section {
  padding: 90px 0;
  background: #f7f7f7;
}

.contact-box {
  background: #ffffff;
  border: 2px solid #ff7a00;
  border-radius: 26px;
  padding: 55px 45px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.contact-box h2 {
  font-size: 42px;
  font-weight: 700;
  color: #ff7a00;
  margin-bottom: 10px;
}

.contact-tagline {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto 30px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 35px;
  font-size: 16px;
  color: #444;
}

.contact-info i {
  color: #ff7a00;
  margin-right: 8px;
}

.contact-action {
  display: inline-block;
  padding: 14px 40px;
  background: #ff7a00;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.contact-action:hover {
  background: #e96f00;
}




