:root{
  /* ===== NEW THEME: Brown / Light Brown / Gray / Silver / Grayish Navy Blue ===== */
  --navy:#243144;            /* grayish navy blue */
  --navy2:#1c2636;           /* deeper navy */
  --brown:#7a4b2a;           /* primary brown */
  --brown2:#b07a4a;          /* light brown */
  --silver:#c7cbd3;          /* silver */
  --gray:#8a919c;            /* medium gray */
  --bg:#f4f5f7;              /* soft gray background */
  --card:#ffffff;
  --text:#0f172a;
  --muted:#6b7280;

  --shadow: 0 18px 50px rgba(0,0,0,.12);
}

*{ box-sizing:border-box; }
html, body{
  overflow-x: hidden;
}

html,body{ scroll-behavior:smooth; }
body{
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #fff;
}

/* ===== Topbar ===== */
.topbar{
  background: linear-gradient(90deg, var(--navy2), var(--navy));
  color: rgba(255,255,255,.9);
}
.topbar-link{
  color: rgba(255,255,255,.9);
  text-decoration:none;
}
.topbar-link:hover{ color: var(--silver); }

/* ===== Navbar ===== */
.shm-nav{
  background: rgba(28,38,54,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.navbar-brand{ text-decoration:none; }

.brand-logo {
  height: 60px;   /* adjust as needed */
  width: auto;
}

.brand-title {
  font-weight: 600;
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 12px;
  opacity: 0.8;
}


/* brand badge now brown/silver */
.brand-badge{
  width:44px;height:44px;border-radius:14px;
  display:grid;place-items:center;
  background: linear-gradient(135deg, var(--brown2), var(--brown));
  color: #fff;
  box-shadow: 0 10px 26px rgba(122,75,42,.35);
}
.brand-badge i{ font-size:22px; }
.brand-badge.sm{ width:40px;height:40px;border-radius:14px; }

.brand-text .brand-title{
  font-family:"Orbitron", "Montserrat", sans-serif;
  letter-spacing:.6px;
  font-weight:700;
  color: #fff;
  line-height:1.1;
}
.brand-text .brand-title span{
  color: var(--silver);
}
.brand-text .brand-subtitle{
  font-size:12px;
  color: rgba(255,255,255,.72);
  margin-top:2px;
}

/* nav links */
.nav-link{
  color: rgba(255,255,255,.85) !important;
  font-weight:600;
  border-radius: 14px;
  padding:.55rem .9rem !important;
}
.nav-link:hover, .nav-link.active{
  color: #fff !important;
  background: linear-gradient(135deg, var(--brown2), var(--brown));
  box-shadow: 0 10px 26px rgba(122,75,42,.22);
}

/* ===== Buttons ===== */
.btn-shm{
  border:0;
  background: linear-gradient(135deg, var(--brown2), var(--brown));
  color:#fff;
  font-weight:800;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(122,75,42,.18);
}
.btn-shm:hover{
  filter: brightness(.97);
  transform: translateY(-1px);
}

.btn-outline-shm{
  border-radius:16px;
  border:2px solid rgba(122,75,42,.55) !important;
  color: var(--navy) !important;
  font-weight:800;
}
.btn-outline-shm:hover{
  background: linear-gradient(135deg, var(--brown2), var(--brown));
  color:#fff !important;
  border-color: transparent !important;
}

/* ===== Hero ===== */
.hero{ position:relative; }
.hero-img{
  height: 78vh;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.02);
}
.carousel-caption{
  text-align:left;
  left:0; right:0;
  bottom: 12%;
}
.carousel-caption::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(28,38,54,.82), rgba(28,38,54,.45), rgba(28,38,54,.10));
  z-index:0;
}
.carousel-caption > .container{ position:relative; z-index:1; }

.hero-card{
  max-width: 720px;
  padding: 28px;
  border-radius: 26px;
  background: rgba(28,38,54,.56);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.hero-kicker{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(199,203,211,.15);
  color: var(--silver);
  font-weight:800;
  letter-spacing:.3px;
  font-size: 13px;
}
.hero-title{
  font-family:"Orbitron", "Montserrat", sans-serif;
  color:#fff;
  margin-top: 14px;
  font-weight: 800;
  line-height:1.15;
}
.hero-title span{ color: var(--silver); }
.hero-text{
  color: rgba(255,255,255,.85);
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 16px;
}

/* Quick cards */
.quick-strip{
  position:relative;
  margin-top: -36px;
  z-index: 10;
}
.quick-card{
  background: var(--card);
  border-radius: 22px;
  padding: 16px 14px;
  display:flex;
  gap:12px;
  align-items:center;
  box-shadow: 0 16px 44px rgba(0,0,0,.10);
  border: 1px solid rgba(2,6,23,.06);
}
.quick-card i{
  width:42px;height:42px;border-radius:14px;
  display:grid;place-items:center;
  background: linear-gradient(135deg, rgba(176,122,74,.22), rgba(199,203,211,.22));
  color: var(--navy);
  font-size: 20px;
}
.qc-title{ font-weight: 900; color:#0b1220; }
.qc-sub{ font-size: 12px; color: var(--muted); }

/* ===== Sections ===== */
.section-pad{
  padding: 84px 0;
}
.section-alt{ background: var(--bg); }

.section-head{
  text-align:center;
  margin-bottom: 34px;
}
.section-badge{
  display:inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(176,122,74,.16);
  color: var(--navy);
  font-weight: 900;
  letter-spacing:.3px;
  margin-bottom: 10px;
}
.section-title{
  font-family:"Orbitron", "Montserrat", sans-serif;
  font-weight: 800;
  margin-bottom: 10px;
}
.section-subtitle{
  color: var(--muted);
  max-width: 780px;
  margin: 0 auto;
}

/* ===== About ===== */
/* ===== Updated About (Left text + Right Image) ===== */
.about-title{
  font-family:"Orbitron","Montserrat",sans-serif;
  font-weight: 900;
  color: var(--navy2);
}

.about-para{
  color: var(--muted);
  line-height: 1.75;
  font-weight: 500;
}

.about-image-wrap{
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(2,6,23,.08);
  background: linear-gradient(135deg, rgba(176,122,74,.12), rgba(199,203,211,.18));
}

.about-image{
  width: 100%;
  height: 520px;
  object-fit: cover;
  display:block;
  transform: scale(1.02);
  transition: transform .25s ease;
  filter: contrast(1.04) saturate(1.02);
}

.about-image-wrap:hover .about-image{
  transform: scale(1.06);
}

.about-image-wrap::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(28,38,54,.15), rgba(28,38,54,.55));
  pointer-events:none;
}

.about-image-badge{
  position:absolute;
  left: 16px;
  bottom: 16px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(176,122,74,.92), rgba(122,75,42,.92));
  border: 1px solid rgba(255,255,255,.20);
  backdrop-filter: blur(8px);
}

/* Responsive image height */
@media (max-width: 991px){
  .about-image{ height: 360px; }
}
@media (max-width: 575px){
  .about-image{ height: 280px; }
}


/* ===== Services ===== */
/* ===== Services (with image + icon rotate) ===== */
.service-card{
  background: var(--card);
  border-radius: 26px;
  overflow: hidden; /* important for image rounding */
  height: 100%;
  box-shadow: 0 18px 48px rgba(0,0,0,.10);
  border: 1px solid rgba(2,6,23,.06);
  transition: transform .22s ease, box-shadow .22s ease;
}

.service-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(0,0,0,.16);
}

.service-img{
  position: relative;
  height: auto;
  overflow: hidden;
}

.service-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .30s ease;
  filter: contrast(1.05) saturate(1.02);
}

.service-card:hover .service-img img{
  transform: scale(1.10);
}

/* optional overlay for premium look */
.service-img::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(28,38,54,.45));
  pointer-events:none;
}

.service-body{
  padding: 22px;
}

.service-icon{
  width:54px;
  height:54px;
  border-radius: 20px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, rgba(176,122,74,.22), rgba(199,203,211,.22));
  color: var(--navy);
  font-size: 24px;
  margin-top: -42px;      /* pulls icon over image (stylish) */
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,.55);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  transition: transform .55s ease;  /* smooth rotation */
}

/* 360 degree rotation on hover */
.service-card:hover .service-icon{
  transform: rotate(360deg) scale(1.05);
}

.service-card h5{
  font-weight: 900;
  color: var(--navy2);
  margin-bottom: 10px;
}
.service-card p{
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.7;
}

/* responsive image height */
@media (max-width: 575px){
  .service-img{ height: 165px; }
}


/* CTA */
.cta-strip{
  background: linear-gradient(135deg, rgba(28,38,54,1), rgba(36,49,68,1));
  border-radius: 28px;
  padding: 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.10);
}
.cta-strip h4{ color:#fff; font-weight: 900; margin:0; }
.cta-strip p{ color: rgba(255,255,255,.75); }
.cta-actions{ display:flex; gap: 10px; flex-wrap:wrap; }

/* ===== Why ===== */
.why-card{
  background: var(--card);
  border-radius: 26px;
  padding: 22px;
  height: 100%;
  box-shadow: 0 18px 48px rgba(0,0,0,.10);
  border: 1px solid rgba(2,6,23,.06);
}
.why-ico{
  width:52px;height:52px;border-radius: 20px;
  display:grid;place-items:center;
  background: linear-gradient(135deg, var(--brown2), var(--brown));
  color:#fff;
  font-size: 22px;
  margin-bottom: 12px;
  box-shadow: 0 16px 40px rgba(122,75,42,.18);
}
.why-card h6{ font-weight: 900; color: var(--navy2); }
.why-card p{ color: var(--muted); margin-bottom:0; }

/* ===== Achievements ===== */
.section-dark{
  background: radial-gradient(1000px 360px at 10% 0%, rgba(176,122,74,.20), transparent 65%),
              radial-gradient(1000px 360px at 90% 40%, rgba(199,203,211,.18), transparent 65%),
              linear-gradient(135deg, rgba(28,38,54,1), rgba(36,49,68,1));
}
.count-card{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  padding: 18px;
  height: 100%;
  backdrop-filter: blur(10px);
}
.count-icon{
  width:44px;height:44px;border-radius: 18px;
  display:grid;place-items:center;
  background: linear-gradient(135deg, rgba(176,122,74,.35), rgba(199,203,211,.30));
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
}
.count-num{
  font-family:"Orbitron", "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 34px;
  color: #fff;
  line-height:1;
}
.count-label{
  color: rgba(255,255,255,.75);
  font-weight: 700;
  margin-top: 6px;
}

/* ===== Gallery ===== */
.gallery-item{
  position:relative;
  overflow:hidden;
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(0,0,0,.10);
  border: 1px solid rgba(2,6,23,.06);
}
.gallery-item img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .25s ease;
}
.gallery-item:hover img{ transform: scale(1.06); }
.gallery-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, transparent 40%, rgba(28,38,54,.75));
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  padding: 14px;
  opacity:0;
  transition: opacity .2s ease;
}
.gallery-item:hover .gallery-overlay{ opacity:1; }
.gallery-cap{
  color:#fff;
  font-weight: 900;
  font-size: 14px;
}
.gallery-zoom{
  width:40px;height:40px;border-radius: 16px;
  display:grid;place-items:center;
  background: linear-gradient(135deg, var(--brown2), var(--brown));
  color:#fff;
  font-size: 18px;
}

/* ===== Contact ===== */
.contact-card{
  background: var(--card);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 18px 48px rgba(0,0,0,.10);
  border: 1px solid rgba(2,6,23,.06);
}
.contact-item{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(2,6,23,.06);
}
.contact-item:last-child{ border-bottom: 0; }
.contact-ico{
  width:44px;height:44px;border-radius: 18px;
  display:grid;place-items:center;
  background: linear-gradient(135deg, rgba(176,122,74,.22), rgba(199,203,211,.22));
  color: var(--navy);
  font-size: 18px;
}
.c-title{ font-size: 12px; color: var(--muted); font-weight: 800; }
.c-value{ font-weight: 900; color:#0b1220; }
.c-value a{ color: var(--navy); text-decoration:none; }
.c-value a:hover{ color: var(--brown); }

.form-control, .form-select{
  border-radius: 16px;
  padding: .8rem .9rem;
  border: 1px solid rgba(2,6,23,.12);
}
.form-control:focus, .form-select:focus{
  border-color: rgba(122,75,42,.55);
  box-shadow: 0 0 0 .25rem rgba(122,75,42,.18);
}

/* ===== Map ===== */
.map-wrap iframe{
  width: 100%;
  height: 420px;
  border: 0;
  display:block;
}

/* ===== Footer ===== */
.footer{
  background: linear-gradient(135deg, rgba(28,38,54,1), rgba(36,49,68,1));
  color: rgba(255,255,255,.86);
  padding: 70px 0 28px;
}
.footer-title{
  font-weight: 900;
  color: var(--silver);
  margin-bottom: 14px;
}
.footer-text{ color: rgba(255,255,255,.72); }
.footer-links, .footer-contact{
  list-style:none;
  padding-left:0;
  margin:0;
  display:grid;
  gap: 10px;
}
.footer-links a{
  color: rgba(255,255,255,.80);
  text-decoration:none;
  font-weight: 700;
}
.footer-links a:hover{ color: var(--silver); }

.footer-contact li{
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.footer-contact i{ color: var(--brown2); margin-top:2px; }
.footer-contact a{ color: rgba(255,255,255,.85); text-decoration:none; font-weight: 800; }
.footer-contact a:hover{ color: var(--silver); }

.footer-social{ display:flex; gap:10px; }
.social-btn{
  width:42px;height:42px;border-radius: 16px;
  display:grid;place-items:center;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  color:#fff;
  text-decoration:none;
}
.social-btn:hover{
  background: linear-gradient(135deg, var(--brown2), var(--brown));
  color:#fff;
  border-color: transparent;
}

.footer-hr{ border-color: rgba(255,255,255,.12); }
.footer-bottom{ color: rgba(255,255,255,.72); }

.brand-logo {
  height: 45px;   /* adjust as needed */
  width: auto;
  display: block;
}
.brand-logo {
  height: 35px; /* slightly smaller for footer */
  width: auto;
}

.brand-title {
  font-weight: 600;
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 12px;
  opacity: 0.8;
}


/* ===== Floating Buttons ===== */
.float-actions{
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 9999;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.float-btn{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 999px;
  color:#fff;
  text-decoration:none;
  font-weight: 900;
  box-shadow: 0 14px 40px rgba(0,0,0,.22);
  position:relative;
  overflow:hidden;
}
.float-btn i{ font-size: 20px; }
.float-btn .float-text{ font-size: 14px; }
.float-actions{
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 9999;
  display:flex;
  flex-direction:column;
  gap: 10px;

  /* prevents any accidental overflow issues */
  max-width: calc(100vw - 24px);
}

/* base button */
.float-btn{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 999px;
  color:#fff;
  text-decoration:none;
  font-weight: 900;
  box-shadow: 0 14px 40px rgba(0,0,0,.22);
  position:relative;
  overflow:hidden;

  /* important: prevents horizontal stretch */
  white-space: nowrap;
  max-width: 100%;
}

.float-btn i{ font-size: 20px; }
.float-btn .float-text{ font-size: 14px; }

/* shimmer glow */
.float-btn::after{
  content:"";
  position:absolute;
  width: 140px;
  height: 140px;
  top: -60px;
  left: -70px;
  background: radial-gradient(circle, rgba(255,255,255,.32), transparent 60%);
  transform: rotate(25deg);
  animation: shimmer 2.4s infinite linear;
  pointer-events:none;
}

/* ✅ MOBILE FIX */
@media (max-width: 575px){
  .float-actions{
    right: 12px;
    bottom: 12px;
    gap: 10px;
  }

  /* make them perfect circular icons on mobile */
  .float-btn{
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 18px;
  }

  /* shimmer removed on mobile to stop overflow/extra space */
  .float-btn::after{
    display:none;
  }
}

/* WhatsApp remains green for brand recognition */
.float-btn.whatsapp{
  background: linear-gradient(135deg, #25D366, #1aa84f);
}

/* Call button matches new brown theme */
.float-btn.call{
  background: linear-gradient(135deg, var(--brown2), var(--brown));
}

/* Glow animation */
.float-btn::after{
  content:"";
  position:absolute;
  width: 140px;
  height: 140px;
  top: -60px;
  left: -70px;
  background: radial-gradient(circle, rgba(255,255,255,.32), transparent 60%);
  transform: rotate(25deg);
  animation: shimmer 2.4s infinite linear;
}
@keyframes shimmer{
  0%{ transform: translateX(-30px) rotate(25deg); opacity:.2; }
  50%{ opacity:.55; }
  100%{ transform: translateX(220px) rotate(25deg); opacity:.2; }
}

/* ===== Back to top ===== */
.to-top{
  position: fixed;
  left: 16px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  border: 0;
  display:grid;
  place-items:center;
  background: rgba(28,38,54,.92);
  color: #fff;
  box-shadow: 0 14px 40px rgba(0,0,0,.22);
  opacity:0;
  pointer-events:none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 9999;
}
.to-top.show{
  opacity:1;
  pointer-events:auto;
  transform: translateY(-2px);
}
.to-top i{ font-size: 22px; }

/* ===== Responsive ===== */
@media (max-width: 991px){
  .hero-img{ height: 70vh; }
  .carousel-caption{ bottom: 8%; }
  .hero-card{ padding: 18px; border-radius: 22px; }
  .cta-strip{ flex-direction:column; align-items:flex-start; }
  .info-row{ grid-template-columns: 105px 1fr; }
  .brand-text .brand-title{ font-size: 15px;}
}
@media(max-width:767px)
{
	.mb-ds-nn {
		display:none!important
	}
	.jf-cn-cntr
	{
		justify-content:center!important;
	}
	
	}
@media (max-width: 575px){
  .hero-img{ height: 68vh; }
  .hero-title{ font-size: 28px; }
  .hero-text{ font-size: 14px; }
  .section-pad{ padding: 62px 0; }
  .gallery-item img{ height: 190px; }
  .float-btn{ padding: 12px 14px; }
  .brand-text .brand-title{ font-size: 12px;}
  .brand-text .brand-subtitle {
    font-size: 11px;
    color: rgba(255, 255, 255, .72);
    margin-top: 2px;
}
}
