 /* new brand color #0020C2 */


/* GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* ================= NAVBAR AREA ================= */
.custom-navbar {
    height: 65px;
    width: 100%;
    background: #0020C2;
    padding: 0 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    z-index: 1000;
}

/* LOGO */
.nav-logo img {
    height: 48px;
    width: auto;
}

/* DESKTOP MENU */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-menu li a:hover {
    opacity: 0.75;
}

/* MOBILE BUTTON */
.mobile-toggle {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    margin-left: auto;
}

/* ================= SIDEBAR MENU ================= */
.sidebar {
    width: 260px;
    height: 100vh;
    background: #0020C2;
    padding: 25px;
    position: fixed;
    top: 0;
    right: -260px;
    transition: 0.4s ease;
    z-index: 1200;
    box-shadow: -2px 0 10px rgba(0,0,0,0.3);
}

.close-btn {
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    margin-bottom: 25px;
}

.sidebar-links {
    list-style: none;
    margin-top: 30px;
}

.sidebar-links li {
    margin: 22px 0;
}

.sidebar-links li a {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.sidebar-links li a:hover {
    opacity: 0.75;
}

/* MOBILE LOGO SMALLER */
@media (max-width: 480px) {
    .nav-logo img {
        height: 40px;
        width: auto;
    }
}


/* =========================================================
   SLIDER AREA 
   ========================================================= */
.hero-slider {
    position: relative;
    height: 90vh;
    width: 100%;
    overflow: hidden;
    margin-top: 65px; /* FIX for navbar overlap on mobile */
}

/* Each Slide */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.4s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Brand Color Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(65, 68, 255, 0.352); /* blue tint */
    z-index: 2;
}

/* MAIN CONTENT AREA */
.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

/* LEFT TEXT SECTION */
.hero-left {
    width: 50%;
    color: #fff;
}

.hero-left h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
    text-shadow: 2px 2px 3px #000000;
}

.hero-left p {
    font-size: 18px;
    max-width: 450px;
    margin-bottom: 28px;
    opacity: 0.95;
}

/* BOOK BUTTON */
.book-btn {
    display: inline-block;
    background: #fff;
    color: #0020C2;
    padding: 12px 32px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    font-size: 16px;
    box-shadow: 2px 2px 3px #000000dd;
}

.book-btn:hover {
    background: #eaeaea;
}

/* RIGHT FORM SECTION */
.hero-form {
    width: 32%;
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.28);
}

.hero-form h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #222;
    font-weight: 600;
}

.hero-form input {
    height: 46px;
    border-radius: 6px;
}

/* SUBMIT BUTTON */
.submit-btn {
    width: 100%;
    height: 45px;
    border: none;
    background: #0020C2;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s;
}

.submit-btn:hover {
    opacity: 0.88;
}

/* =========================================================
   RESPONSIVE DESIGN 
   ========================================================= */
@media (max-width: 992px) {
    .hero-slider {
        height: auto;
        padding-bottom: 40px;
    }

    .hero-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 0 20px;
    }

    .hero-left, 
    .hero-form {
        width: 95%;
    }

    .hero-left h1 {
        font-size: 38px;
    }
}

/* MOBILE FIX UPDATE */
@media (max-width: 768px) {
    .hero-slider {
        margin-top: 65px; /* navbar height fix */
    }

    .hero-left {
        margin-top: 30px; /* move caption downward */
    }
}

/* TIGHT MOBILE DEVICES */
@media (max-width: 600px) {
    .hero-left h1 {
        font-size: 30px;
    }

    .hero-left p {
        font-size: 16px;
    }

    .hero-form {
        margin-top: 25px;
        width: 100%;
        padding: 20px;
    }
}



/* ===================== ABOUT SECTION ===================== */
.about-section {
    padding: 70px 0;
    background: #F1F1EF; /* light brand background */
}

.about-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.about-content h2 {
    font-size: 34px;
    font-weight: 700;
    color: #2A2A2A; /* dark brand text */
    margin-bottom: 15px;
}

.about-content h4 {
    font-size: 22px;
    font-weight: 600;
    color: #0020C2; /* orange brand highlight */
    margin-bottom: 18px;
}

.about-content p {
    font-size: 16px;
    color: #2A2A2A;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.about-list li {
    font-size: 16px;
    color: #2A2A2A;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-weight: 500;
}

/* checkmark icon */
.about-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #0020C2;
    font-weight: 700;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
    .about-content h2 {
        font-size: 28px;
    }
    .about-content h4 {
        font-size: 20px;
    }
    .about-section {
        padding: 50px 0;
    }
}


/* ===================== SERVICES SECTION ===================== */
.services-section {
    padding: 70px 0;
    background: #ffffff;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2A2A2A;
    margin-bottom: 10px;
}

.section-title p {
    color: #2A2A2A;
    margin-bottom: 40px;
    font-size: 16px;
}

/* SERVICE BOX */
.service-box {
    background: #F1F1EF;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #e0e0e0;
}

.service-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.service-box h4 {
    font-size: 20px;
    color: #2A2A2A;
    font-weight: 700;
    margin-top: 18px;
}

.service-box p {
    color: #2A2A2A;
    margin: 12px 0 18px;
    font-size: 15px;
    line-height: 1.6;
}

/* Book Button */
.service-btn {
    display: inline-block;
    padding: 10px 26px;
    background: #0020C2;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s;
    text-decoration: none;
    font-size: 15px;
}

.service-btn:hover {
    background: #4c66e8ff;
    color: white; 
}

/* Hover Effect */
.service-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.18);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
    .services-section {
        padding: 50px 0;
    }
    .service-box img {
        height: 180px;
    }
}


/* Why Choose Us Section */
.why-choose-us {
  background: #F1F1EF;
}

.section-title {
  color: #2A2A2A;
  font-weight: 700;
}

.wc-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.wc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  border-color: #0020C2;
}

.wc-icon {
  width: 60px;
  height: 60px;
  background: #0020C2;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
  font-size: 26px;
}

.wc-card h4 {
  color: #2A2A2A;
  margin-bottom: 10px;
  font-weight: 600;
}

.wc-card p {
  color: #555;
  font-size: 14px;
}



/* ========== GALLERY SECTION ========== */

.gallery-section {
    padding: 70px 0;
    background-color: #ffffff; /* light brand shade */
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2A2A2A; /* dark brand shade */
    margin-bottom: 10px;
}

.section-title p {
    color: #555;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Image box */
.gallery-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    transition: 0.4s ease;
    cursor: pointer;
    background: #fff;
}

/* Image */
.gallery-box img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.4s ease;
}

/* Hover Zoom Effect */
.gallery-box:hover img {
    transform: scale(1.12);
    opacity: 0.85;
}

/* Lightbox effect */
.gallery-box:active img {
    transform: scale(1);
}

/* Responsive Fix */
@media (max-width: 576px) {
    .gallery-box img {
        height: 200px;
    }
}



/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 70px 0;
    background: #fff;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2A2A2A;
}

.section-title p {
    margin-bottom: 40px;
    color: #555;
}

/* FAQ Card */
.faq-card {
    border: none;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    overflow: hidden;
}

/* FAQ Button */
.faq-btn {
    width: 100%;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #2A2A2A;
    padding: 18px;
    background: #F1F1EF;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.faq-btn i {
    font-size: 22px;
    color: #0020C2;
}

.faq-btn:hover {
    background: #0020C2;
    color: #fff;
}

.faq-btn:hover i {
    color: #fff;
}

/* FAQ Body */
.faq-card .card-body {
    padding: 20px;
    background: #fff;
    color: #444;
}

/* Responsive */
@media (max-width: 576px) {
    .faq-btn {
        font-size: 16px;
        padding: 14px;
    }
}



/* ========== FOOTER ========== */
.main-footer {
    background: #0020C2; /* brand orange */
    padding: 60px 0 20px;
    color: #fff;
}

.footer-logo-box .footer-logo {
    width: 160px;
    margin-bottom: 15px;
}

.footer-logo-box p {
    max-width: 280px;
    font-size: 15px;
    line-height: 1.6;
}

/* Titles */
.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

/* Links */
.footer-links li,
.footer-contact li {
    list-style: none;
    margin-bottom: 10px;
}

.footer-links li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: #2A2A2A; /* dark color contrast */
}

/* Contact */
.footer-contact i {
    margin-right: 8px;
    color: #2A2A2A;
    font-size: 18px;
}

/* Social Icons */
.footer-social a {
    margin-right: 12px;
    font-size: 24px;
    color: #fff;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #2A2A2A;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.3);
    margin-top: 25px;
    padding-top: 15px;
}

.footer-bottom p {
    margin: 0;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 576px) {
    .footer-logo-box p {
        max-width: 100%;
    }
}

.break-email {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-all;
}



/* ========== INNER BANNER ========== */
/* ---------- Banner Section ---------- */
.inner-banner {
  width: 100%;
  height: 45vh;
  background: url('../images/slider/sl3.png') center/cover no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Orange Overlay */
.inner-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 17, 254, 0.562); /* Brand Orange with opacity */
  backdrop-filter: blur(2px);
}

/* Content */
.inner-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.inner-banner-content h1 {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.breadcrumbs {
  font-size: 16px;
  opacity: 0.95;
}

.breadcrumbs a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
}

.breadcrumbs a:hover {
  color: #2A2A2A;
}

.breadcrumbs span {
  margin: 0 8px;
  font-weight: 600;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .inner-banner {
    height: 35vh;
  }

  .inner-banner-content h1 {
    font-size: 30px;
  }

  .breadcrumbs {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .inner-banner {
    height: 32vh;
  }
  
  .inner-banner-content h1 {
    font-size: 26px;
  }
}




.about-page {
  padding: 80px 0;
  background: #F1F1EF;
}

.about-content .title {
  font-size: 34px;
  font-weight: 700;
  color: #2A2A2A;
}

.about-content .subtitle {
  font-size: 20px;
  font-weight: 500;
  color: #0020C2;
  margin-bottom: 15px;
}

.about-content .description {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 25px;
}

/* Why Choose Us */
.why-choose h5 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #2A2A2A;
  font-weight: 600;
}

.why-choose ul {
  padding: 0;
  list-style: none;
}

.why-choose ul li {
  font-size: 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: #444;
}

.why-choose ul li i {
  color: #0020C2;
  margin-right: 10px;
  font-size: 18px;
}

/* Images Section */
.about-images {
  position: relative;
}

.about-images .img-box {
  position: relative;
}

.about-images .img-1 {
  width: 90%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.about-images .img-2 {
  width: 60%;
  position: absolute;
  right: 0;
  bottom: -40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border: 5px solid #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .about-images .img-2 {
    position: relative;
    width: 70%;
    margin-top: 20px;
    bottom: 0;
  }
}

@media (max-width: 768px) {
  .about-page {
    padding: 50px 0;
  }

  .about-images .img-1,
  .about-images .img-2 {
    width: 100%;
  }

  .about-images .img-2 {
    margin-top: 15px;
    right: 0;
  }
}



/* ------------------ Services Page ------------------ */
.service-pagin {
  padding: 60px 0;
  background: #F1F1EF;
}

.service-pagin .main-title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  color: #2A2A2A;
  margin-bottom: 10px;
}

.service-pagin .sub-title {
  text-align: center;
  color: #555;
  font-size: 17px;
  margin-bottom: 40px;
}

.service-box {
  margin-bottom: 30px;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding-bottom: 25px;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  padding: 18px 20px 5px;
  color: #2A2A2A;
}

.service-card p {
  font-size: 15px;
  padding: 0 20px;
  color: #444;
}

.service-card ul {
  list-style: none;
  padding: 10px 20px;
  margin: 0;
}

.service-card ul li {
  font-size: 14px;
  color: #333;
  margin: 5px 0;
  display: flex;
  align-items: center;
}

.service-card ul li::before {
  content: "✔";
  color: #0020C2;
  font-weight: 700;
  margin-right: 7px;
}

.service-btn {
  display: inline-block;
  margin: 10px 20px 0;
  background: #0020C2;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.service-btn:hover {
  opacity: 0.85;
}

/* ------------ Responsive ------------ */
@media (max-width: 768px) {
  .service-pagin .main-title {
    font-size: 30px;
  }
  .service-card img {
    height: 180px;
  }
}


/* ------------------ Get a Quote Page ------------------ */
.get-quote-section {
  padding: 70px 0;
  background: #F1F1EF;
}

.quote-title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  color: #2A2A2A;
}

.quote-subtitle {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.quote-form {
  background: #fff;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.quote-form label {
  font-weight: 600;
  color: #2A2A2A;
}

.quote-form .form-control {
  height: 45px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.quote-form textarea.form-control {
  height: auto;
}

.quote-btn {
  background: #0020C2;
  color: #fff;
  border: none;
  padding: 12px 35px;
  border-radius: 6px;
  font-size: 17px;
  font-weight: 600;
  transition: 0.3s;
}

.quote-btn:hover {
  opacity: 0.85;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .quote-title {
    font-size: 30px;
  }
  .quote-form {
    padding: 25px;
  }
}




.contact-section {
  background: #f4f7fc;
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  color: #222;
}

.contact-card {
  background: #ffffff;
  border-radius: 12px;
  transition: .3s;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.custom-link {
  color: #0020C2;
  font-weight: 600;
  text-decoration: none;
}

.custom-link:hover {
  text-decoration: underline;
}

.map-container iframe {
  border-radius: 12px;
}

.enquiry-form {
  background: #ffffff;
  border-radius: 12px;
}

.submit-btn {
  background: #0020C2;
  color: #fff;
  padding: 10px 25px;
  border-radius: 8px;
  border: none;
  transition: .3s;
}

.submit-btn:hover {
  background: #e64a19;
}


/* Floating CALL Button */
.floating-call {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #0020C2;
  color: white;
  font-size: 26px;
  width: 55px;
  height: 55px;
  line-height: 55px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0px 10px 20px rgba(0,0,0,0.25);
  z-index: 999;
  transition: 0.3s;
  animation: pulse 1.5s infinite;
}

/* Floating WHATSAPP Button */
.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25D366;
  color: white;
  font-size: 28px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0px 10px 20px rgba(0,0,0,0.25);
  z-index: 999;
  transition: 0.3s;
  animation: pulse 1.5s infinite;
}

/* Hover Effect */
.floating-call:hover,
.floating-whatsapp:hover {
  transform: scale(1.15);
}

/* Attractive Pulse Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive Fix for Small Screens */
@media (max-width: 480px) {
  .floating-call, .floating-whatsapp {
    width: 50px;
    height: 50px;
    font-size: 22px;
    line-height: 50px;
  }

  .floating-call { left: 15px; }
  .floating-whatsapp { right: 15px; }
}


/* ===================== GALLERY PAGE ===================== */
.gallery-pagin {
    background: #fff;
}

.gallery-pagin .section-title {
    font-size: 38px;
    font-weight: 700;
    color: #2A2A2A;
    text-transform: uppercase;
}

.gallery-pagin .section-subtitle {
    max-width: 700px;
    margin: auto;
    color: #555;
}

/* Gallery Box */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    animation: fadeIn 0.7s ease-in-out;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 10px;
}

/* Hover Zoom Effect */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* Fade-in Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .gallery-item img {
        height: 200px;
    }
}



/* ================= PRELOADER ================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff; 
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo Container */
.preloader-content {
    animation: fadeIn 0.3s ease-in-out;
}

/* Logo Zoom Animation */
.preloader-logo {
    width: 140px;
    height: auto;
    animation: logoZoom 1.4s infinite ease-in-out;
}

/* Zoom Animation */
@keyframes logoZoom {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.18); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

/* Fade-in effect */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}



.new-form { background: #0c2b4a; }
.new-form .left-box { background: #08223a; min-height: 100%; }
.new-form .right-box { background: #ffffff; border-radius: 8px; box-shadow: 0 4px 18px rgba(0,0,0,0.1); }
.new-form .divider { width: 50px; height: 3px; background: #1e6bff; margin-top: 15px; display: block; }
.submit-btn { transition: 0.3s ease; }
.submit-btn:hover { transform: translateY(-2px); }


@media (max-width: 768px) {
.new-form .left-box { text-align: center; padding: 40px 20px; }
.new-form .right-box { margin-top: 20px; }
}




/* new-services.css - styles for .new-services section */
.new-services {
  background: #ffffff;
}

/* card */
.new-services .service-card {
  background: #f7fbff;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 6px 22px rgba(8,34,58,0.06);
  align-items: flex-start; /* keep icon & text aligned top on larger screens */
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  border: 1px solid rgba(12,43,74,0.03);
}

/* hover lift */
.new-services .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(8,34,58,0.10);
}

/* icon */
.new-services .service-icon {
  font-size: 42px;
  width: 66px;
  height: 66px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30,107,255,0.06);
  color: #0c2b4a;
  flex-shrink: 0;
}

/* adjust icon on small screens */
@media (max-width: 575.98px) {
  .new-services .service-card {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
  .new-services .service-icon {
    margin-bottom: 12px;
    margin-right: 0;
  }
  .new-services .service-body { width: 100%; }
}

/* title & text */
.new-services .service-title {
  font-weight: 700;
  color: #092033;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.new-services .service-text {
  color: #4b5866;
  margin-bottom: 10px;
  line-height: 1.5;
}

/* learn more link */
.new-services .learn-more {
  display: inline-block;
  color: #1e6bff;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: all 0.18s ease;
}
.new-services .learn-more:hover {
  border-bottom-color: #1e6bff;
  letter-spacing: 0.2px;
}

/* ensure cards have equal height rows on md+ */
@media (min-width: 768px) {
  .new-services .row > .col-md-6 {
    display: flex;
  }
  .new-services .row > .col-md-6 .service-card {
    flex: 1 1 auto;
  }
}



.service-newpagin .service-card {
  border: none;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.service-newpagin .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-newpagin .icon-style {
  font-size: 48px;
  color: #2c3e50;
}

.service-newpagin h4 {
  font-weight: 700;
  margin-bottom: 12px;
}

.service-newpagin p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .service-newpagin .icon-style { font-size: 40px; }
  .service-newpagin h4 { font-size: 18px; }
}



.call-action {
  background: url('../images/slider/sl1.png') center/cover no-repeat;
  position: relative;
  padding: 120px 0;
}

.call-action::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(1px);
}

.call-box {
  position: relative;
  background: #fff;
  padding: 50px 70px;
  border-radius: 20px;
  max-width: 700px;
  box-shadow: 0px 10px 40px rgba(0,0,0,0.1);
}

.call-box h2 {
  font-size: 36px;
  font-weight: 600;
  color: #1a2b49;
}

/* Responsive */
@media (max-width: 767px) {
  .call-action {
    padding: 80px 0;
  }

  .call-box {
    padding: 30px 20px;
  }

  .call-box h2 {
    font-size: 26px;
  }
}


/* new addition /////////////////////  */

.working-booking h2 {
  color: #0b3cc1;
}

.working-booking .work-box {
  transition: all 0.3s ease;
  border: 1px solid #f1f1f1;
}

.working-booking .work-box:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 25px rgba(0,0,0,0.1);
}

.working-booking .icon i {
  font-size: 32px;
  color: #6785ff;
}

@media (max-width: 767px) {
  .working-booking h2 {
    font-size: 26px;
  }
}



.city-links-section {
  background: #ffffff;
}

.city-links-section .city-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.city-links-section .city-list li {
  margin-bottom: 8px;
}

.city-links-section .city-list li a {
  color: #0033cc;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s ease;
}

.city-links-section .city-list li a:hover {
  color: #0033cc;
  margin-left: 5px;
}

.city-links-section .city-list li a.highlight {
  color: #0033cc !important;
  font-weight: 700;
}


.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 22px rgba(0,0,0,0.2);
}

.blog-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #0047b3;
    color: #fff;
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
}

.blog-content {
    padding: 20px;
}

.blog-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0c1b33;
    margin-bottom: 10px;
}

.blog-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}
