/* ======================
   GLOBAL
====================== */
html {
  overflow-x: hidden;
}
* {
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* ======================
   TOP BAR
====================== */
.top-bar {
 /* A deep blue that is clearly BLUE, not black */
  background: #0a2d50; 
  color: #ffffff;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(245, 179, 53, 0.3); 
}
.top-bar span {
  font-weight: 500;
  letter-spacing: 0.2px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar .left,
.top-bar .right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-bar i {
  color: #f5b335; /* Gold icons make it look very high-end */
  font-size: 14px;
}
.top-bar .left {
  display: flex;
  align-items: center;
  gap: 105px;   /* SPACE BETWEEN ADDRESS & MARN */
}

.top-bar .addr,
.top-bar .marn-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.marn-top span {
 color: #f5b335; /* Gold MARN text for authority */
  font-weight: 700;
}


/* ======================
   HEADER
====================== */
.header {
  background: #fff;
  padding: 8px 0;
}
.header-buttons {
  transform: translateY(3px);
}
.logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;     /* CENTER EVERYTHING */
  text-align: center;
  line-height: 1.1;
}

.logo-icon {
  height: 44px;            /* balanced size */
  margin-bottom: 4px;
}

.logo-title {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #173b8c;
}

.logo-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: #4f8fbf;
}

/* ======================
   NAVBAR (MATCHED)
====================== */
/* --- ADD THIS FIRST --- */
.dropdown-toggle::after {
  display: none !important;
}
/* ---------------------- */

.custom-nav {
  background: #173b8c !important; 
  padding: 0;
  border-bottom: 2px solid #f5b335; 
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.custom-nav .navbar-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: auto;
  flex-wrap: nowrap;
}



.custom-nav .nav-link {
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 600; /* Matches the text weight */
  font-size: 13.5px;
  padding: 15px 15px !important;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}
.custom-nav .nav-link:hover {
/* Subtle light blue highlight on hover */
background: rgba(255, 255, 255, 0.05);
  color: #f5b335 !important;
 
}
/* Professional Hover Effect: Floating Gold Bar */
.custom-nav .nav-link::after {
display: none !important;
  content: none !important;
}

/* Style for the active/current page */
.active-link {
  color: #f5b335 !important;
  font-weight: 700 !important;
}


/* 3. DROPDOWN MENU STYLING */
.custom-dropdown {
  background: #08243f !important; /* Dark navy for contrast */
  border-top: 3px solid #f5b335 !important;
  border-radius: 0 0 8px 8px !important;
  padding: 10px 0;
  margin-top: 0 !important;
}

.custom-dropdown .dropdown-item {
  color: #ffffff !important;
  padding: 10px 20px;
  font-size: 14px;
}
.custom-dropdown .dropdown-item:hover {
  background: rgba(245, 179, 53, 0.1);
  color: #f5b335 !important;
}
/* 1. REMOVE THE HOVER BAR COMPLETELY */
.custom-nav .nav-link::after, 
.custom-nav .nav-link:hover::after {
  display: none !important;
  content: none !important;
  width: 0 !important;
}
.toggle-icon {
  font-size: 14px;
  -webkit-text-stroke: 1.2px #ffffff;
  display: inline-block !important;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out !important;
  line-height: 1;
  vertical-align: middle;
  margin-left: 5px;
}
/* DESKTOP TIGHT WIDTH FIX (Contact hiding at ~1200px) */
@media (max-width: 1200px) and (min-width: 992px) {
  .custom-nav .navbar-nav {
    gap: 12px;          /* reduce space between items */
    flex-wrap: nowrap; /* keep single row */
  }

  .custom-nav .nav-link {
    padding: 12px 10px !important;
    font-size: 12.5px;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }
}

/* 1. HOVER TO OPEN MENU & KEEP GOLD COLOR */
/* 2. Desktop Hover Logic */
@media (min-width: 992px) {
  /* This opens the menu on hover */
  .nav-item.dropdown:hover .dropdown-menu {
    display: block !important;
    margin-top: 0;
  }

  /* Text & Arrow turn Gold together */
  .nav-item.dropdown:hover .nav-link {
    color: #f5b335 !important;
  }

  /* Arrow flips 180 degrees */
  .nav-item.dropdown:hover .toggle-icon {
    transform: rotate(180deg) !important;
    color: #f5b335 !important;
    -webkit-text-stroke: 1.2px #f5b335 !important;
  }
}

  @media (max-width: 991px) {
  .custom-nav .nav-link {
    padding: 12px 10px !important;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
}
/* ======================
   MOBILE OVERHAUL FIX
====================== */
@media (max-width: 991px) {
  /* 1. TOP BAR: Hide Address & MARN to save space, only show phone/email */
 .top-bar .left {
    display: flex !important;
    justify-content: center;
    gap: 15px;
  }
  .top-bar .container {
    flex-direction: column;
    gap: 6px;
  }
  .top-bar .right {
    font-size: 12px;
    gap: 15px;
  }

  /* 2. HEADER: Stack logo and buttons */
  .header {
    padding: 15px 0;
  }
  .logo-title {
    font-size: 18px; /* Smaller text for mobile */
  }
  .header-buttons {
    width: 100%;
    transform: none;
  }
  .header-buttons .btn {
    width: 48%; /* Buttons sit side-by-side */
    font-size: 11px;
    padding: 10px 5px;
  }

  /* 3. HERO: Adjust text and hide floating cards */
  .hero-premium {
    padding: 40px 0;
    text-align: center;
    min-height: auto;
  }
  .hero-text-box {
    margin-top: 0;
    margin-bottom: 30px;
  }
  .hero-text-box h1 {
    font-size: 32px;
  }
  .hero-visual-box {
    margin-top: 0;
  }
  
  .hero-main-img {
    border-radius: 20px;
  }

  /* 4. NAVBAR: Style the burger menu */
  .custom-nav {
    padding: 10px 0;
  }
  .navbar-toggler {
    border-color: rgba(255,255,255,0.5);
    background-color: rgba(255,255,255,0.1);
  }
  /* Fix icon color to white */
  .navbar-toggler-icon {
    filter: invert(1) grayscale(100%) brightness(200%);
  }
}

/* Extra small screens fix (phones) */
@media (max-width: 480px) {
  /* Hide address completely (icon + text) */
 

  /* Keep phone & email */
  .top-bar .right {
    font-size: 11px;
    gap: 12px;
  }

  .top-bar .right i {
    font-size: 13px;
  }
}
/* MID-MOBILE FIX (991px to 581px) */
@media (max-width: 991px) and (min-width: 581px) {
  .header-buttons {
    width: 100%;
    gap: 8px;
  }

  .header-buttons .btn {
    flex: 1;
    font-size: 10px;
    padding: 9px 6px;
    white-space: nowrap;
  }
}
  

/* ======================
   PREMIUM HERO SECTION (NEW)
====================== */
.hero-premium {
padding: 100px 0;
  /* Reduced the last number (alpha) from 0.9 to 0.4 to make it much brighter */
  background: linear-gradient(to right, rgba(8, 36, 63, 0.7), rgba(8, 36, 63, 0.2)), 
              url("hero.png") center/cover no-repeat;
  overflow: hidden;
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
}
/* ======================
   SERVICE HERO (INNER PAGES)
====================== */
.service-hero {
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url("skilled-header.png") center center / cover no-repeat;
  
  min-height: 380px;
  display: flex;
  align-items: center;
  padding: 60px 0;
  position: relative;
}

.service-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.7);
}

.service-hero .breadcrumb-item a:hover {
  color: #0d6efd !important;
}

/* ======================
   SIDEBAR STICKY FIX
====================== */
.service-sidebar {
  top: 100px;
}

/* ======================
   MOBILE OPTIMIZATION
====================== */
@media (max-width: 768px) {
  .service-hero {
    min-height: 300px;
    padding: 40px 0;
  }

  .service-hero h1 {
    font-size: 30px;
  }
}


.hero-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  width: 100%;
}
.hero-text-box {
 flex: 1;
  color: white;
  z-index: 2;
  /* Adjust this number to move it higher or lower */
  margin-top: -110px;
}
.badge-accent {
  display: inline-block;
  /* Dark navy base with a gold glow */
  background: rgba(8, 36, 63, 0.6); 
  color: #f5b335 !important; /* Brighter gold */
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 25px;
  /* Thick gold border for prominence */
  border: 2px solid #f5b335;
  box-shadow: 0 0 15px rgba(245, 179, 53, 0.3);
  backdrop-filter: blur(5px);
}

.hero-text-box h1 {
 font-size: 52px;
  font-weight: 800;
  line-height: 1.0; /* Reduced from 1.1 to save vertical space */
  margin-bottom: 15px; /* Tighter spacing to move paragraph up */
  text-shadow: 0 0 20px rgba(245, 179, 53, 0.3);
}

.hero-text-box h1 span {
  color: #f5b335; 
}

.hero-text-box p {
 font-size: 18px;
  line-height: 1.5;
  margin-bottom: 25px; /* Reduced from 35px to pull the button up */
  opacity: 0.9;
  max-width: 500px;
}
/* Optional: Slight upward nudge for the action area */
.hero-action-area {
  transform: translateY(-5px); 
}
.hero-visual-box {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  /* MOVES EVERYTHING UP */
  margin-top: -90px; 
  z-index: 5;
}
.main-map-wrapper {
  position: relative;
  width: 100%;
  max-width: 550px;
}
/* NEW: Styles for your professional image */
.hero-main-img {
 width: 100%;
  height: auto;
  border-radius: 40px; /* Big, professional rounded corners */
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
  display: block;
}
.floating-map {
 width: 100%;
  height: auto;
  /* This adds a soft golden-white glow around the map */
  filter: drop-shadow(0 0 25px rgba(245, 179, 53, 0.4)); 
  animation: mainFloat 6s ease-in-out infinite, pulseGlow 4s ease-in-out infinite;
}
.stat-card {
 position: absolute;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 20px;
  border-radius: 15px;
  color: white;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  z-index: 10;
}
.stat-card i {
  color: #f5b335;
  font-size: 20px;
}
/* Top-Right Card: Moved UP and further LEFT into the image */
.card-1 { 
  top: 5%; 
  right: 15px; 
  animation: cardFloat 5s ease-in-out infinite;
}
/* Bottom-Left Card: Moved UP and further RIGHT into the image */
.card-2 { 
  bottom: 2%; 
  left: 15px; 
  animation: cardFloat 7s ease-in-out infinite 1s;
}

@keyframes mainFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
/* New Animation for the Glow */
@keyframes pulseGlow {
  0%, 100% { filter: drop-shadow(0 0 15px rgba(245, 179, 53, 0.3)); }
  50% { filter: drop-shadow(0 0 35px rgba(245, 179, 53, 0.6)); }
}
@media (max-width: 991px) {
  .hero-premium { padding: 60px 0; text-align: center; }
  .hero-content-wrapper { flex-direction: column; }
  .hero-text-box h1 { font-size: 38px; }
  .stat-card { display: none; }
}

/* ======================
   BUTTON MATCH
====================== */
.virk1-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 25px;
  border-radius: 6px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease-in-out;
  border: 2px solid transparent;
}
/* THE NAVY BUTTON (Enquire Now) */
.virk1-btn {
  background: #08243f;
  color: #ffffff !important;
  border-color: #f5b335;
}
.virk1-btn i {
  color: #f5b335 !important; /* Gold icon for contrast */
}
/* ONLY MOVE UP — NO COLOR CHANGE */
.virk1-btn:hover {
  background: #f5b335;
  color: #08243f !important;
  transform: translateY(-3px);
}

.virk1-btn:hover i {
  color: #08243f !important; /* Icon stays visible on hover */
}

.virk-btn {
font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 25px;
  border-radius: 6px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease-in-out;
  border: 2px solid transparent;
}
/* THE GOLD BUTTON (Make an Appointment) */
.virk-btn {
  background: #f5b335;
  color: #08243f !important;
  box-shadow: 0 4px 15px rgba(245, 179, 53, 0.4);
}
.virk-btn i {
 font-size: 16px;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* HOVER EFFECT */
.virk-btn:hover {
  background: #08243f;
  color: #f5b335 !important;
  border-color: #f5b335;
  transform: translateY(-3px);
}

.virk-btn:hover i {
  color: #f5b335 !important; /* Icon switches to gold on hover */
 
}



/* ======================
   WHATSAPP FLOAT
====================== */
.whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 28px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.25);
  z-index: 999;
}
.whatsapp i {
  font-size: 28px;
}
/* WHATSAPP FLOAT WIDGET */
.wa-widget {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 9999;
}

.wa-float {
  width: 55px;
  height: 55px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,.25);
}

.wa-popup {
 position: absolute;
  bottom: 75px;
  right: 0;
  width: 330px; /* Slightly wider */
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  overflow: hidden;
  display: none;
}

.wa-header {
 background: #0d8a72;
  color: #fff;
  padding: 15px 20px; /* More breathing room */
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wa-footer {
  font-size: 11px;
  color: #888;
  text-align: center;
  padding: 8px 0;
  background: #f0f0f0;
}
.wa-close {
  cursor: pointer;
  font-size: 22px;
}

.wa-body {
  padding: 0; /* REMOVE PADDING HERE */
}

.wa-body p {
  margin: 0 0 10px;
  font-size: 14px;
}

.wa-qr {
  width: 160px;
  margin: 10px auto;
}

.wa-chat-btn {
  display: inline-block;
  background: #25d366;
  color: #fff;
  padding: 8px 16px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
}
.wa-input {
  width: 100%;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid #ddd;
  margin: 10px 0;
  outline: none;
}
/* chat area */

 .wa-chat-area {
  background-color: #e5ddd5;
  background-image: url("https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png");
  background-size: 350px;
  padding: 20px;
  height: 180px; /* INCREASED HEIGHT */
  overflow-y: auto;
  display: flex;
  flex-direction: column;

}
/* Today label */
.wa-day {
  text-align: center;
  font-size: 13px;
  color: #555;
  margin: 10px 0;
  font-weight: 600;
}
/* time */
.wa-msg-time {
  font-size: 11px;
  color: #999;
  text-align: right;
  margin-top: 2px;
}
/* bot message bubble */
.wa-msg {
  background: #ffffff;
  padding: 8px 12px;
  border-radius: 0 12px 12px 12px; /* Rounded corners except top-left */
  box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  max-width: 85%;
  position: relative;
  align-self: flex-start; /* Keeps it on the left */
  margin-bottom: 10px;
}
/* bot name */
.wa-msg-name {
  font-size: 11px;
  font-weight: 700;
  color: #999; /* Light grey like image 2 */
  text-transform: uppercase;
  margin-bottom: 2px;
}

/* message text */
.wa-msg-text {
  font-size: 15px;
  color: #333;
  line-height: 1.4;
}



/* input bar */
.wa-input-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: #f0f0f0;
}

/* message input */
.wa-input-bar input {
  border-radius: 20px;
  border: 1px solid #e0e0e0;
  padding: 10px 15px;
}
/* round send button */
.wa-send {
 width: 45px;
  height: 45px;
  border-radius: 50% !important; /* Forces it to be a circle */
  border: none;
  background: #0d8a72;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0; /* Prevents squishing */
}




.phone-float {
  position: fixed;
  left: 20px;
  bottom: 25px;
  width: 50px;
  height: 50px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 999;
}


/* ======================
   RESPONSIVE
====================== */
/* ======================
   THE MOBILE REPAIR (991px to 480px)
====================== */


@media (max-width: 991px) {
  /* Fix Top Bar text from overlapping */
  .top-bar .left, .top-bar .right {
    display: flex !important;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    text-align: center;
  }
  
  .top-bar .container {
    flex-direction: column !important;
    gap: 5px;
  }

  /* Fix Lengthy Buttons - Side by Side */
  .header-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 10px;
    width: 90%; /* Keeps them from touching screen edges */
    margin: 15px auto 0 auto;
  }

  .header-buttons .btn, .header-buttons .virk1-btn, .header-buttons .virk-btn {
    flex: 1; /* Makes them equal width */
    font-size: 10px !important; /* Smaller text so it fits */
    padding: 10px 4px !important;
    white-space: nowrap; /* Prevents text from jumping to 2 lines */
    min-width: 0; 
  }

  /* Fix Menu Not Opening */
  .navbar-collapse {
    background: #173b8c; /* Matches your nav color */
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
  }
}

/* Very Small Phones (Under 480px) */
@media (max-width: 480px) {
  .top-bar .container {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .top-bar .left {
    flex-direction: column;
    gap: 4px;
  }

  .top-bar span {
    font-size: 11px;
  }
}
/* FORCE ADDRESS VISIBLE ON ALL SCREEN SIZES */
.top-bar .left,
.top-bar .addr {
  display: flex !important;
  align-items: center;
}
/* ======================
   MOBILE NAVBAR & HEADER FIX (991px to 480px)
====================== */
@media (max-width: 991px) {
  /* 2️⃣ Reduce navbar height */
  .custom-nav {
    padding: 6px 0;
  }

  /* 3️⃣ Center logo + text properly */
  .logo-wrap {
    gap: 2px;
  }

  .logo-title {
    font-size: 17px;
    line-height: 1.2;
  }

  .logo-tagline {
    font-size: 11px;
  }

  /* 4️⃣ Fix buttons height & width */
  .header-buttons {
    width: 100%;
    gap: 8px;
    margin-top: 8px;
  }

  .header-buttons .btn {
    padding: 8px 10px !important; /* reduce height */
    font-size: 11px !important;
    line-height: 1.2;
    height: auto;
  }

  /* 5️⃣ Prevent buttons from becoming too tall */
  .header-buttons i {
    font-size: 14px;
  }
}
@media (min-width: 992px) {

  /* Center menu properly on wide screens */
  .custom-nav .navbar-collapse {
    display: flex;
    justify-content: center;
  }

  /* Neutralize container padding effect */
  .custom-nav .container-fluid {
    padding-left: 24px;
    padding-right: 24px;
  }
}
/* FIX: Header buttons too wide on mobile (991px–480px) */
@media (max-width: 991px) {

  .header-buttons {
    width: auto !important;
    max-width: 360px;     /* controls total width */
    margin: 10px auto 0;
    gap: 8px;
  }

  .header-buttons .btn,
  .header-buttons .virk1-btn,
  .header-buttons .virk-btn {
    flex: 0 0 auto !important;
    width: auto !important;
    padding: 8px 12px !important;
    font-size: 11px !important;
    white-space: nowrap;
  }
}
/* MOBILE: chevron gold when dropdown is OPEN */
@media (max-width: 991px) {

  .nav-link.dropdown-toggle[aria-expanded="true"] .toggle-icon {
    color: #f5b335 !important;
    -webkit-text-stroke: 1.2px #f5b335 !important;
    transform: rotate(180deg);
  }

}
/* FIX: Hero button overlapping image on mobile */
@media (max-width: 991px) {

  .hero-text-box {
    margin-top: 0 !important;   /* remove desktop negative offset */
  }

  .hero-action-area {
    transform: none !important; /* stop floating upward */
    margin-bottom: 20px;        /* space before image */
  }

}
/* ✅ FORCE DESKTOP-STYLE FLOATING CARDS ON MOBILE */
@media (max-width: 991px) {

  .hero-visual-box {
    position: relative !important;
    margin-top: 0 !important;
    z-index: 5;
  }

  .main-image-wrapper {
    position: relative !important;
  }

  .stat-card {
    display: flex !important;
    position: absolute !important;
    z-index: 10 !important;
    transform: scale(0.9); /* slightly smaller for mobile */
  }

  /* TOP RIGHT CARD */
  .card-1 {
    top: 4% !important;
    right: 10px !important;
  }

  /* BOTTOM LEFT CARD */
  .card-2 {
    bottom: 4% !important;
    left: 10px !important;
  }

}
/* MOBILE: reduce gap between hero button & image */
/* MOBILE: reduce gap between hero button & image */
@media (max-width: 991px) {

  /* Pull image a little MORE upward */
  .hero-visual-box {
    margin-top: -35px;   /* ← was -20px */
  }

  .hero-text-box {
    margin-bottom: 8px !important;
  }

  .hero-action-area {
    margin-bottom: 6px;
  }
}
/* ======================
   PREMIUM FOOTER STYLING
====================== */
.premium-footer {
  background: #08243f; /* Your deep navy */
  color: #ffffff;
  padding: 80px 0 0;
  border-top: 5px solid #f5b335; /* Gold border */
  font-family: 'Inter', sans-serif;
}

.footer-logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-logo-text span {
  color: #f5b335;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
}

.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
  /* This prevents the line from stretching across the whole screen */
  display: inline-block; 
  /* This ensures the line stays below the text */
  line-height: 1.2; 
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  /* Adjust this number to move the line further down if needed */
  bottom: -8px; 
  /* This makes the line exactly as long as the word */
  width: 100%; 
  height: 2px;
  background: #f5b335;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #f5b335;
  padding-left: 5px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #f5b335;
  text-decoration: none;
  transition: 0.3s;
}

.footer-socials a:hover {
  background: #f5b335;
  color: #08243f;
  transform: translateY(-3px);
}

.footer-contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact-info i {
  color: #f5b335;
  font-size: 16px;
}

.footer-marn-box {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background: rgba(245, 179, 53, 0.1);
  border: 1px solid #f5b335;
  color: #f5b335;
  font-weight: 700;
  font-size: 13px;
  border-radius: 4px;
}

.footer-bottom {
  margin-top: 60px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* Mobile responsive fix */
@media (max-width: 991px) {
  .premium-footer {
    text-align: center;
  }
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-socials {
    justify-content: center;
  }
  .footer-contact-info .contact-item {
    justify-content: center;
  }
}
/* Container to make the logo look "settled" */
.footer-logo-box {
  background: rgba(255, 255, 255, 0.05); /* Very subtle light box */
  padding: 15px;
  border-radius: 12px;
  display: inline-block;
  border: 1px solid rgba(245, 179, 53, 0.2); /* Faint gold border to match branding */
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.footer-logo-box:hover {
  transform: translateY(-5px); /* Premium hover effect */
  background: rgba(255, 255, 255, 0.08);
}

.footer-logo-box img {
  height: 55px; /* Bigger and more prominent */
  width: auto;
  display: block;
  /* Adds a soft glow so the logo colors pop against the dark navy */
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1)); 
}

/* Fix for mobile alignment */
@media (max-width: 991px) {
  .footer-logo-box {
    margin: 0 auto 20px auto;
    display: table; /* Centers the box on mobile */
  }
}
/* ======================
   MOBILE FOOTER OPTIMIZATION
====================== */
@media (max-width: 767px) {
  .premium-footer {
    padding: 40px 0 20px;
    text-align: center; /* Centers all text for mobile balance */
  }

  /* Stack columns with better spacing */
  .footer-col {
    margin-bottom: 35px;
  }

  /* Center the gold underlines */
  .footer-heading {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }

  /* Center the Social Icons */
  .footer-socials {
    justify-content: center;
    margin-top: 15px;
  }

  /* Contact Items - Ensure icons and text align in the center */
  .footer-contact-info .contact-item {
    justify-content: center;
    text-align: left; /* Keeps text readable while container is centered */
    max-width: 280px;
    margin: 0 auto 12px;
  }

  /* MARN Box centering */
  .footer-marn-box {
    display: table;
    margin: 15px auto 0;
  }

  /* Bottom Copyright Section */
  .footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
  }

  .footer-bottom .row {
    flex-direction: column-reverse; /* Puts logo above copyright text on mobile */
    gap: 15px;
  }

  /* The Logo at the bottom */
  .footer-bottom img {
    margin-top: 0;
    height: 35px;
  }
}

/* --- General Heading Styles --- */
.premium-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: #08243f;
  font-size: 36px;
  margin-bottom: 10px;
}
.premium-title span { color: #f5b335; }
.section-subtitle { color: #666; font-size: 16px; max-width: 600px; margin: 0 auto; }

/* --- Authority Bar (Dark Navy) --- */
.authority-bar {
  background: #08243f;
  padding: 50px 0;
  color: #fff;
  border-bottom: 5px solid #f5b335;
}
.trust-item i {
  color: #f5b335;
  font-size: 32px;
  margin-bottom: 10px;
  display: block;
}
.trust-item p {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* --- Process Section (White) --- */
.process-section { padding: 90px 0; background: #fff; }
.process-step { text-align: center; padding: 20px; position: relative; }
.step-num {
  font-size: 70px;
  font-weight: 900;
  color: rgba(8, 36, 63, 0.04); /* Faint background number */
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.process-step h4 { color: #08243f; font-weight: 700; margin-bottom: 15px; position: relative; }
.process-step p { color: #555; font-size: 14px; line-height: 1.6; }

/* --- Services Grid (Light Grey) --- */
.services-grid-section { padding: 90px 0; background: #f9f9f9; }
.service-item-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: center;
  transition: 0.3s ease;
  height: 100%;
  border-bottom: 3px solid transparent;
}
.service-item-card:hover {
  transform: translateY(-10px);
  border-color: #f5b335;
}
.service-item-card i { font-size: 45px; color: #173b8c; margin-bottom: 20px; display: block; }
.service-item-card h4 { color: #08243f; font-weight: 700; }
.service-item-card p { font-size: 14px; color: #666; }

/* --- Mobile Fix --- */
@media (max-width: 768px) {
  .premium-title { font-size: 28px; }
  .authority-bar { padding: 30px 0; }
}
/* --- CTA Banner Styling --- */
.cta-banner {
  padding-bottom: 60px; /* Space above footer */
  background-color: #f9f9f9;
}

.cta-wrapper {
  background: linear-gradient(135deg, #08243f 0%, #173b8c 100%);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(8, 36, 63, 0.2);
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #f5b335;
}

.cta-title {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 10px;
}

.cta-title span {
  color: #f5b335;
}

.cta-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin: 0;
}

.cta-btn {
  background-color: #f5b335;
  color: #08243f !important;
  font-weight: 700;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 18px;
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-btn:hover {
  background-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Mobile responsive */
@media (max-width: 991px) {
  .cta-wrapper {
    padding: 40px 20px;
  }
  .cta-title {
    font-size: 24px;
  }
  .cta-btn {
    margin-top: 25px;
    width: 100%;
    justify-content: center;
  }
}
.sticky-top {
    z-index: 10;
}
.list-group-item {
    border: none;
    padding-left: 0;
    color: #555;
}
/* Sidebar Sticky Fix */
@media (min-width: 992px) {
    .sticky-top {
        top: 100px !important;
        z-index: 10;
    }
}

/* Breadcrumb Styling */
.breadcrumb-item + .breadcrumb-item::before {
    color: white;
}

.breadcrumb-item a {
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-item a:hover {
    color: #0d6efd !important;
}
/* ======================
   SERVICE HERO IMAGE (NO CROP – PROFESSIONAL)
====================== */
.service-hero-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Image itself */
.service-hero-img img {
  width: 100%;
  height: auto;          /* 🔥 prevents cropping */
  display: block;
}

/* Dark overlay + text */
.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.55)
  );
  display: flex;
  align-items: center;
}

/* Breadcrumb fix */
.service-hero-overlay .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.7);
}

.service-hero-overlay .breadcrumb-item a:hover {
  color: #0d6efd !important;
}

/* ======================
   MOBILE OPTIMIZATION
====================== */
@media (max-width: 768px) {

  .service-hero-overlay {
    align-items: flex-end;
    padding-bottom: 30px;
  }

  .service-hero-overlay h1 {
    font-size: 30px;
  }
}
/* ======================
   MOVE SERVICE HERO TEXT UP
====================== */
.service-hero-overlay {
  align-items: flex-start;   /* stop perfect center */
  padding-top: 120px;        /* 👈 adjust this value */
}
/* =========================
   BOOKING TYPE UI
========================= */

.booking-type-section {
  background: #f5f5f5;
  padding: 80px 0;
}

/* Wrapper */
.booking-wrapper {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
/* LEFT PANEL – BRAND STYLE */
.booking-left {

  background: #ffffff;            /* White background */
  padding: 60px 30px;
  height: 100%;

  border-right: 1px solid #eee;

  /* Gold top accent line */
  border-top: 5px solid #f5b335;
}

/* Logo */
.booking-logo {
  width: 110px;
  margin-bottom: 20px;
}

/* Company Name */
.booking-left h3 {
  font-weight: 800;
  color: #08243f;     /* Navy blue */
  margin-bottom: 10px;
}

/* Subtitle */
.booking-left p {
  color: #666;
}



/* RIGHT PANEL */
.booking-right {
  padding: 40px;
}
/* CARD */
.booking-card {

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 22px 25px;
  border: 2px solid #eee;
  border-radius: 16px;

  margin-bottom: 20px;
  transition: 0.3s;
  cursor: pointer;

  background: #fff;
}

/* ACTIVE CARD */
.booking-card.active {

  border-color: #173b8c;   /* Blue border */
  background: #f4f7ff;     /* Light blue bg */

}

/* HOVER */
.booking-card:hover {
  border-color: #f5b335;   /* Gold hover */
}
/* ICON CYLINDER */
.booking-icon {

  width: 60px;
  height: 60px;

  background: #173b8c;   /* Navy blue */
  color: #fff;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;

  /* Gold ring effect */
  box-shadow: 0 0 0 4px rgba(245,179,53,0.25);
}
/* INFO */
.booking-info {
  flex: 1;
  padding: 0 20px;
}

.booking-info h5 {
  margin: 0;
  font-weight: 700;
}

.booking-info span {
  font-size: 13px;
  color: #888;
}

.booking-meta {
  font-size: 13px;
  margin-top: 5px;
}
.booking-arrow {
  font-size: 22px;
  color: #173b8c;
}
/* =========================
   ENQUIRY FORM STYLING
========================= */

.enquiry-section {
  background: #f8f9fa;
}

.enquiry-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0,0,0,.08);
  border-top: 5px solid #f5b335; /* GOLD */
}

/* Inputs */

.enquiry-card .form-control,
.enquiry-card .form-select {
  border-radius: 10px;
  padding: 12px 14px;
}

.enquiry-card .form-control:focus,
.enquiry-card .form-select:focus {
  border-color: #173b8c;
  box-shadow: 0 0 0 .15rem rgba(23,59,140,.15);
}

/* Mobile Fix */

@media(max-width:768px){

  .enquiry-card {
    margin: 0 10px;
  }

  .enquiry-card .card-body {
    padding: 30px 20px;
  }

}
/* =========================
   COOKIE BANNER
========================= */

.cookie-banner{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  background:#0b2c4d;          /* Blue */
  color:#fff;
  padding:15px 20px;
  box-shadow:0 -2px 10px rgba(0,0,0,.2);
  z-index:9999;
  display:none;
}

.cookie-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:15px;
}

.cookie-text{
  font-size:14px;
}

.cookie-text a{
  color:#d4af37;               /* Gold */
  font-weight:600;
  text-decoration:none;
}

.cookie-text a:hover{
  text-decoration:underline;
}

/* Buttons */

.cookie-accept{
  background:#d4af37;         /* Gold */
  color:#000;
  border:none;
  padding:8px 18px;
  font-weight:600;
  border-radius:6px;
}

.cookie-decline{
  background:transparent;
  color:#fff;
  border:1px solid #fff;
  padding:8px 18px;
  border-radius:6px;
}

/* Mobile */

@media(max-width:768px){

  .cookie-container{
    flex-direction:column;
    text-align:center;
  }

}
.about-img-left {
  transform: translateX(-50px); /* move left */
}
/* =========================
   SERVICE HERO STYLING
========================= */

.service-hero-img {
    position: relative;
    height: 850px;          /* controlled height */
    overflow: hidden;
}

.service-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* prevents stretching */
}

/* Overlay */
.service-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(10,25,47,0.75),
        rgba(10,25,47,0.85)
    );
    display: flex;
    align-items: center;
}

/* Desktop: move content upward */
@media (min-width: 992px) {
    .service-hero-overlay {
        align-items: flex-start;   /* move to top */
        padding-top: 120px;        /* adjust this value */
    }
}

/* Sidebar Sticky */
.service-sidebar {
    position: sticky;
    top: 120px;
}

/* Mobile */
@media (max-width: 768px) {
    .service-hero-img {
        height: 240px;
    }
}
