/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.ucl-header {
  width: 100%;
  background:  skyblue;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
  z-index: 1000;
  padding: 20px 0;
}

.ucl-container {
  max-width: 1300px;
  margin: auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.ucl-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ucl-logo img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  
}

.ucl-logo span {
  font-size: 35px;
  font-weight: 700;
  color: #0a4d9c; /* Blue from logo */
}

/* Navigation */
.ucl-nav {
  display: flex;
  gap: 32px;

}

.ucl-nav a {
  text-decoration: none;
  color: whitesmoke;
  font-size: 25px;
  font-weight: 500;
  transition: 0.2s;
}

.ucl-nav a {
  position: relative;
  text-decoration: none;
  color: whitesmoke;
  font-size: 30px;
  font-weight: 500;
  padding-bottom: 4px; /* space for underline */
}

.ucl-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: #0a4d9c; /* your blue */
  transition: width 0.3s ease;
}

.ucl-nav a:hover {
  color: #0a4d9c;
}

.ucl-nav a:hover::after {
  width: 100%;
}


/* Right Side */
.ucl-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.ucl-icon-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #333;
}

/* Call Box */
.ucl-call {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
}

.ucl-call div {
  white-space: nowrap;
}

.ucl-call i {
  font-size: 35px;
  color: #0a4d9c;
}

.ucl-call small {
  font-size: 25px;
  color: #666;
}

.ucl-call strong {
  font-size: 25px;
  color: whitesmoke;
}
.ucl-call-text {
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
  display: inline-block;
}

/* Hamburger */
.ucl-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
}

/* Mobile Menu */
.ucl-mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #eee;
  padding: 15px 20px;
}

.ucl-mobile-menu a {
  padding: 12px 0;
  font-size: 16px;
  color: #222;
  text-decoration: none;
  border-bottom: 1px solid #f2f2f2;
}

.ucl-mobile-menu a:last-child {
  border-bottom: none;
}

/* Responsive */
@media (max-width: 992px) {
  .ucl-nav {
    display: none;
  }

  .ucl-hamburger {
    display: block;
  }
}
/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  background: url("image1.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-left: 8%;
  color: #fff;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-content h5 {
  font-size: 35px;
  font-weight: 600;
  color: lightgray;
  margin-bottom: 10px;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: lightgray;
}

.hero-content p {
  font-size: 25px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: lightgray;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-primary,
.btn-secondary {
  padding: 24px 45px;
  font-size: 26px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s ease;
}

/* Blue button */
.btn-primary {
  background: #0a4d9c;
  color: #fff;
}

.btn-primary:hover {
  background: #083b78;
}

/* White outline button */
.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #0a4d9c;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 120px 30px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #0a4d9c;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  margin-top: 20px;
}

.trust-badge i {
  font-size: 22px;
}
/* GRID LAYOUT */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 60px 8%;
}

/* BOX STYLE */
.service-box {
  position: relative;
  padding: 40px 25px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  text-align: left;
  overflow: hidden;
  transition: 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ICON */
.service-box i {
  font-size: 42px;
  color: #0a4d9c;
  margin-bottom: 15px;
  display: block;
}

/* TEXT */
.service-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.service-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* BLUE SLIDE-IN OVERLAY */
.service-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:lightskyblue;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  z-index: 0;
}

/* HOVER EFFECT */
.service-box:hover::before {
  transform: translateX(0);
}

/* MAKE TEXT WHITE ON HOVER */
.service-box:hover h3,
.service-box:hover p,
.service-box:hover i {
  color: #ffffff;
}

/* ENSURE TEXT STAYS ABOVE OVERLAY */
.service-box * {
  position: relative;
  z-index: 2;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}
.about-section {
  padding: 80px 8%;
  background: lightskyblue;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content h2 {
  font-size: 40px;
  font-weight: 800;
  color: #0a4d9c;
  margin-bottom: 10px;
}

.about-content > p {
  font-size: 23px;
  color: whitesmoke;
  margin-bottom: 30px;
  line-height: 1.6;
}

.feature-box {
  margin-bottom: 25px;
}

.feature-box h3 {
  font-size: 40px;
  font-weight: 700;
  color: #0a4d9c;
  margin-bottom: 6px;
}

.feature-box p {
  font-size: 23px;
  color: whitesmoke;
  line-height: 1.5;
}

/* HAPPY CUSTOMER BOX */
.happy-box {
  margin-top: 25px;
  background: #0a4d9c;
  color: #fff;
  padding: 18px 25px;
  border-radius: 10px;
  display: inline-block;
  text-align: center;
}

.happy-box h4 {
  font-size: 32px;
  font-weight: 800;
  margin: 0;
}

.happy-box span {
  font-size: 14px;
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: left;
  }
}
.service-feature-section {
  padding: 80px 8%;
  background: #ffffff;
}

.service-feature-container {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.feature-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
}

.feature-content {
  flex: 1;
  min-width: 300px;
}

.feature-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0a4d9c;
  margin-bottom: 10px;
}

.feature-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #333;
  margin-bottom: 12px;
}

.feature-list i {
  color: #0a4d9c;
  font-size: 20px;
}

.feature-bottom {
  display: flex;
  align-items: center;
  gap: 20px;
}

.read-more-btn {
  background: #0a4d9c;
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.read-more-btn:hover {
  background: #083b78;
}

.time-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f1f5ff;
  color: #0a4d9c;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 600;
}

.time-badge i {
  font-size: 20px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .service-feature-container {
    flex-direction: column;
  }
}
.coupon-section {
  padding: 80px 8%;
  background:lightskyblue;
  text-align: center;
}

.coupon-title {
  font-size: 36px;
  font-weight: 800;
  color: #0a4d9c;
  margin-bottom: 40px;
}

.coupon-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.coupon-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  width: 280px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  border-top: 6px solid;
}

.coupon-heading {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.coupon-offer {
  font-size: 32px;
  font-weight: 900;
  margin: 10px 0;
}

.coupon-desc {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.4;
}

.coupon-btn {
  display: inline-block;
  background: #0a4d9c;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.coupon-btn:hover {
  background: #083b78;
}

/* COLOR THEMES */
.best {
  border-color: #0a4d9c;
}

.best .coupon-heading {
  color: #0a4d9c;
}

.better {
  border-color: #d98c00;
}

.better .coupon-heading {
  color: #d98c00;
}

.good {
  border-color: #c62828;
}

.good .coupon-heading {
  color: #c62828;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .coupon-container {
    flex-direction: column;
    align-items: center;
  }
}
.testimonial-section {
  background: #ffffff;
  padding: 90px 8%;
  font-family: "Inter", sans-serif;
}

.testimonial-label {
  color: #0a4d9c;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-title {
  font-size: 34px;
  font-weight: 800;
  margin-top: 10px;
  color: #111;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 40px;
}

.testimonial-card {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.testimonial-stars {
  font-size: 20px;
  color:lightskyblue;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 25px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
}

.testimonial-author span {
  font-size: 14px;
  color: #777;
}

/* Responsive */
@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}


.footer {
  background: black;
  color: #dcdcdc;
  padding: 70px 8% 40px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-col {
  flex: 1;
  min-width: 230px;
  
}

.footer-logo {
  font-size: 22px;
  font-weight: 800;
  color: #0a4d9c;
  margin-bottom: 15px;
}

.footer-text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-hours {
  font-size: 15px;
  margin-bottom: 20px;
  color: #fff;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #dcdcdc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #0a4d9c;
}

.footer-times li {
  margin-bottom: 8px;
}

.footer-social a {
  display: inline-block;
  margin-right: 12px;
  font-size: 20px;
  color: #dcdcdc;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #0a4d9c;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #333;
  
}

.footer-bottom p {
  color: #888;
  font-size: 14px;
  
}
.footer-bottom a {
  color: #0a4d9c;
  text-decoration: none;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
  }
}
