:root {
  --primary-bg: #172a45;
  --accent: #f6c700;
  --soft: #f5f7fa;
  --text-main: #252525;
  --text-light: #fff;
  --cta: #227093;
  --cta-hover: #155a81;
  --glass-bg: rgba(20, 40, 60, 0.6);
}

body {
  font-size: 1rem;
  word-break: break-word;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: var(--soft);
}

/* ---------------- Header / Nav ---------------- */
.top-bar {
  background: var(--primary-bg) !important;
  color: var(--text-light);
  font-size: 0.98rem;
  letter-spacing: 0.05em;
}
.top-bar i { color: var(--accent); }
.top-bar .btn-warning {
  background-color: var(--accent);
  color: var(--primary-bg);
  border-radius: 30px;
  padding: 4px 18px;
  font-weight: 600;
  border: none;
  transition: background 0.2s;
}
.top-bar .btn-warning:hover {
  background-color: var(--cta);
  color: #fff;
}
.navbar {
  background: #fff;
  box-shadow: 0 1px 6px rgba(50,50,93,0.06);
}
.navbar-brand span {
  color: var(--accent);
}
.nav-btn {
  background: transparent;
  color: var(--primary-bg);
  border-radius: 25px;
  padding: 7px 22px !important;
  margin-left: 8px;
  margin-bottom: 3px;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(32,52,85,0.05);
  transition: background 0.19s, color 0.16s, box-shadow 0.21s;
}
.nav-btn:hover,
.nav-btn.active {
  background: linear-gradient(90deg, var(--accent) 80%, #ffd861 100%);
  color: var(--primary-bg) !important;
  box-shadow: 0 4px 14px #f6c70035;
  text-decoration: none;
}
@media (max-width: 991.98px) {
  .navbar-nav {flex-direction: column; align-items: flex-start;}
  .nav-btn {
    display: block;
    margin-left: 0;
    margin-bottom: 8px;
    margin-top: 4px;
    text-align: left;
    width: 100%;
    font-size: 1.05rem;
  }
}

/* ---------------- Slider ---------------- */
/* Slider: Desktop 550px, Tablet 450px, Mobile 400px */
.slider-img,
.carousel-inner,
.carousel-item {
  height: 550px !important;
  max-height: 550px !important;
  object-fit: cover !important;
}

/* Show captions even on small screens */
.carousel-caption {
  display: block !important;
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: rgba(23,42,69,0.46);
  padding: 20px 12px 16px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  color: #fff !important;
  text-align: left;
}

.carousel-caption h1, .carousel-caption h2 {
  color: #f6c700;
  font-size: 2.3rem;
  text-shadow: 1px 2px 8px #141e30;
  margin-bottom: 0.45em;
}

.carousel-caption p {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  text-shadow: 1px 1px 10px #141e30c2;
  margin-bottom:0;
}

/* Medium Screens (Tablets) */
@media (max-width: 991.98px) {
  .slider-img,
  .carousel-inner,
  .carousel-item {
    height: 450px !important;
    max-height: 450px !important;
  }
  .carousel-caption h1, .carousel-caption h2 { font-size: 1.38rem; }
  .carousel-caption p { font-size: 1rem; }
}

/* Mobile Screens */
@media (max-width: 575.98px) {
  .slider-img,
  .carousel-inner,
  .carousel-item {
    height: 400px !important;
    max-height: 400px !important;
    min-height: 220px !important;
  }
  .carousel-caption {
    font-size: 0.95em;
    left: 0; right: 0; bottom: 0;
    padding: 14px 7px 13px;
    border-radius: 0 0 8px 8px;
    background: rgba(23,42,69,0.74);
  }
  .carousel-caption h1, .carousel-caption h2 { font-size: 1.05rem;}
  .carousel-caption p { font-size: 0.95rem;}
  .carousel-control-prev, .carousel-control-next { top: 38%; }
}


/* --------------- Counting / Stat Bar --------------- */
section.bg-primary {
  background: linear-gradient(90deg, var(--primary-bg), #1d3557);
}
.counter {
  font-size: 2.3rem;
  font-weight: bold;
  color: var(--accent);
  text-shadow: 0 2px 12px #19294515;
  margin-bottom:3px;
}
section.bg-primary p {
  color: #fffefc;
  margin-bottom: 0;
  font-size:0.97em;
}
@media(max-width:767.98px){
  .counter{font-size:1.7rem;}
  .bg-primary .container{flex-direction:column; gap: 16px;}
}

/* --------------- General Section Bgs --------------- */
section, .section {
  background: var(--soft);
  width:100%;
}
h2, h3, .fw-bold { color: var(--primary-bg); }
.text-accent { color: var(--accent) !important; }

/* --------------- Services Cards + Carousel Styles --------------- */
.services-main-section,
.services-section, .process-section {
  /*background: linear-gradient(120deg, #e1eaff 0%, #dde5fd 100%);*/
background: var(--primary-bg) !important;
}

.service-big-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px #172a4522;
  margin-bottom: 8px;
  min-height: 92px;
  transition:transform 0.14s,box-shadow 0.16s;
}
.service-big-card:hover {
  transform:translateY(-5px) scale(1.04);
  box-shadow: 0 6px 30px #f6c70044;
}

.service-icon-box {
  min-width: 72px;
  min-height: 72px;
  max-width: 72px;
  max-height: 72px;
  background: linear-gradient(135deg, #f6c700 70%, #ffd861 100%);
  color: #172a45;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.7rem;
  box-shadow: 0 2px 10px #f6c70033;
}
.service-card-content h5 {
  font-size: 1.09rem;
  color: #172a45;
  margin-bottom: 4px;
}
.service-card-content p {
  color: #587094;
  font-size: 0.97rem;
  margin-bottom: 0;
}
#servicesCarousel .service-big-card {
  width: 420px;
  max-width: 98vw;
}
.carousel-control-prev,
.carousel-control-next {
  filter: drop-shadow(0 1px 2px #172a45a8);
}
@media (max-width:991.98px) {
  .service-big-card {
    flex-direction: row;
    padding: 12px 10px;
    min-height:80px;
  }
  #servicesCarousel .service-big-card {
    width: 290px;
    min-width: 180px;
    font-size:0.95em;
  }
  .service-icon-box {
    min-width: 52px; max-width:52px;
    min-height: 52px; max-height:52px;
    font-size: 1.5rem;
    margin-right:0;
  }
}
@media (max-width:575.98px){
  .service-big-card {
    flex-direction: column;
    align-items: flex-start;
    gap:7px;
    padding:10px 6px;
    min-height:40px;
  }
  .service-icon-box {
    font-size: 1.23rem;
    min-width:38px;max-width:38px;min-height:38px;max-height:38px;margin-bottom:4px;
  }
  #servicesCarousel .service-big-card {
    width:98vw;
    min-width:0;
  }
  .services-main-section .row.g-4>.col-lg-6 {width:100%;}
}

/* List/General */
.service-list {
  font-size: 1.07rem;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom:0;
}
.service-list .list-group-item {
  border: none;
  border-bottom: 1px solid #edf0fa;
  color: #356;
  background: #fff;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.17s;
  text-align:left;
}
.service-list .list-group-item:last-child { border-bottom: none; }
.service-list .list-group-item:hover { background: #f5f7fa; }
.service-list i {
  font-size: 1.15em;
  vertical-align: middle;
}

/* --------------- Process Steps Cards --------------- */
.process-section { padding-bottom:24px;}
.process-card {
  border: none;
  border-radius: 20px;
  box-shadow: 0 3px 18px rgba(23,42,69,0.11);
  background: #fff;
  transition: transform 0.19s, box-shadow 0.19s;
}
.process-card:hover {
  transform: translateY(-7px) scale(1.045);
  box-shadow: 0 6px 38px #f6c70044;
}
.process-card .text-accent {
  color: var(--accent);
  background: rgba(246,199,0,0.10);
  border-radius: 50%;
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
  font-size: 2.13rem;
}
.process-card h5 {
  color: var(--primary-bg);
  font-size: 1.05rem;
}
.process-card p {
  color: #5470b3;
  font-size: 0.97rem;
  margin-bottom: 0.7em;
}
@media (max-width: 991.98px){
  .process-section .col-md-2, .process-section .col-sm-6 {max-width:100%;flex:0 0 100%;}
  .process-section .card{margin-bottom:18px;}
}

/* --------------- Enquiry Vertical Button --------------- */
.enquiry-vertical-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10001;
  background: var(--accent, #f6c700);
  color: var(--primary-bg, #172a45);
  border: none;
  border-radius: 30px 0 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 17px 10px 17px 8px;
  min-width: 44px;
  font-size: 1.27rem;
  font-weight: 600;
  box-shadow: 0 2px 22px #f6c70033, 0 3px 12px #22355a0a;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.16s;
}
.enquiry-vertical-btn:hover {
  background: var(--cta-hover, #155a81);
  color: #fff;
  transform: translateY(-50%) scale(1.07);
}
.enquiry-vertical-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 2px;
  font-size: 1.08em;
  font-weight: 600;
  color: inherit;
}
@media (max-width: 767.98px) {
  .enquiry-vertical-btn {
    padding: 8px 6px 8px 5px;
    font-size: 1.07rem;
    min-width: 38px;
    right: 0;
    top: 70%;
  }
  .enquiry-vertical-label {
    font-size: 0.95em;
    letter-spacing: 1px;
  }
}

/* --------------- Footer --------------- */
.custom-footer {
  background: linear-gradient(95deg, #172a45 70%, #23355a 100%);
  color: #fff;
  font-size: 1rem;
}
.footer-title {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.footer-about {
  color: #e1eaff;
  font-size: 1rem;
}
.footer-contact p, .footer-contact a {
  color: #e1eaff;
  font-size: 0.95rem;
  margin-bottom: 0.7em;
  word-break: break-word;
}
.footer-contact a i, .footer-contact i {
  color: var(--accent);
  margin-right: 6px;
}
.footer-social a {
  display: inline-block;
  background: rgba(246,199,0,0.12);
  color: var(--accent);
  font-size: 1.25rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  margin-right: 4px;
  transition: background 0.18s, color 0.15s;
  margin-bottom:4px;
}
.footer-social a:hover {
  background: var(--accent);
  color: var(--primary-bg);
}
.footer-enquiry {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 24px #172a4530;
}
.footer-enquiry .form-control, .footer-enquiry .btn {
  border-radius: 15px;
  font-size: 0.96rem;
  margin-bottom: 3px;
}
.footer-enquiry .btn-primary {
  font-weight: 700;
  background: var(--cta);
  border: none;
  transition: background 0.18s;
}
.footer-enquiry .btn-primary:hover {
  background: var(--cta-hover);
  color: #fff;
}
.footer-copyright {
  font-size: 0.95rem;
  color: #dde5fd !important;
}
@media (max-width:991.98px) {
  .custom-footer .row > div { margin-bottom: 30px; }
}
@media (max-width:767.98px) {
  .custom-footer { font-size: 0.99rem;}
  .footer-title { font-size: 1.12rem;}
}
@media (max-width:575.98px) {
  .custom-footer { padding-bottom: 36px;}
  .footer-about, .footer-contact, .footer-enquiry { font-size: 0.93rem;}
}

/* --------------- Fixed WhatsApp & Brochure Buttons --------------- */
.fixed-buttons {
  position:fixed;
  right:18px; bottom:18px;
  z-index:9999; display:flex;
  flex-direction:column; gap:15px;
}
.fixed-buttons a {
  width:52px; height:52px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:2rem; text-decoration:none;
  box-shadow:0 2px 22px #25d36633;
  transition:0.2s;
}
.fixed-buttons a:last-child {
  font-size:1.7rem;
  background:#f6c700; color:#172a45; box-shadow:0 2px 22px #f6c70033;
}
.fixed-buttons a:first-child { background:#25d366; color:#fff; }
.fixed-buttons a:hover {
  filter: brightness(1.1);
  transform: scale(1.11);
}
@media (max-width: 575.98px) {
  .fixed-buttons { right:10px; bottom:10px; gap:12px;}
  .fixed-buttons a { width:46px; height:46px; font-size:1.5rem;}
}
.commitment-section {
  background: linear-gradient(120deg,#172a45 40%, #e1eaff 120%);
}
.commitment-title {
  color: #f6c700;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 12px #172a45c0, 0 1px 0 #fff5;
  font-size:2.15rem;
}
.commitment-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 28px #1c274120;
  transition: background 0.17s, color 0.19s;
  border: none;
}
.commitment-card:hover {
  background: linear-gradient(130deg,#f6c700 70%, #ffd861 100%);
  color: #172a45;
  box-shadow: 0 2px 34px #f6c70077;
}
.commitment-card:hover .commitment-icon {
  filter: brightness(1.15) drop-shadow(0 3px 6px #f6c700aa);
}
.commitment-card h5, .commitment-card p {
  transition: color 0.18s;
}
.commitment-card:hover h5, .commitment-card:hover p {
  color: #172a45;
}
.commitment-icon {
  width: 68px; height: 68px;
  margin: 0 auto 8px auto;
  border-radius: 50%;
  font-size: 2.09rem;
  display: flex; align-items: center; justify-content: center;
  background: #f6c70025;
  color: #f6c700;
  transition: background 0.17s, color 0.17s, filter 0.18s;
}
.exp-bg { background: linear-gradient(140deg, #fff5d8 40%, #f6c700 120%); color: #c79116;}
.int-bg { background: linear-gradient(120deg, #e1eaff 40%, #155a81 120%); color: #13527b;}
.clr-bg { background: linear-gradient(120deg, #fff 30%, #1d3557 120%); color: #3989e9;}
@media (max-width: 991.98px) {
  .commitment-title { font-size:1.5rem;}
  .commitment-card{padding:1.4em 0.8em;}
}
@media (max-width: 767.98px) {
  .commitment-section {padding-top:2em; padding-bottom:2em;}
}
@media (max-width: 575.98px) {
  .commitment-title{font-size:1.08rem;}
  .commitment-card { padding:0.8em 0.3em;}
  .commitment-icon { font-size:1.1rem; width:41px; height:41px; }
}
