:root {
  --brand:#09786d;
  --dark:#0f172a;
  --muted:#64748b;
  --soft:#f8fafc;
}

body {
  font-family:'Poppins',sans-serif;
  color:var(--dark);
}

.site-header {
  position:sticky;
  top:0;
  background:#fff;
  z-index:1000;
  box-shadow:0 6px 20px rgba(0,0,0,.06);
}

.header-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}

.brand img {height:42px;}

.main-nav {
  display:flex;
  gap:28px;
}

.main-nav a {
  text-decoration:none;
  color:var(--dark);
  font-weight:500;
}

.btn-brand {
  background:var(--brand);
  color:#fff;
  border-radius:999px;
  padding:8px 20px;
}

.mobile-menu nav a {
  display:block;
  padding:10px 0;
  color:var(--dark);
  text-decoration:none;
}

/* ===============================
   HERO / BANNER
================================ */

.hero-banner {
  height: 90vh;
  background: url('images/slider2.webp') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.45),
    rgba(15, 23, 42, 0.9)
  );
  display: flex;
  align-items: center;
}

.hero-content {
  color: #ffffff;
  max-width: 980px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 12px;
}

/* ===============================
   EMI CALCULATOR (REDESIGNED)
================================ */

.emi-card{
  background:#fff;
  border-radius:20px;
  padding:28px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.emi-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(25,198,182,.12);
  color:var(--brand);
  font-weight:600;
  font-size:.85rem;
  border:1px solid rgba(25,198,182,.25);
  white-space:nowrap;
}

.emi-inputs{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.emi-field{
  background:var(--soft);
  border-radius:16px;
  padding:14px 14px 12px;
  border:1px solid rgba(15,23,42,.06);
}

.emi-mini-input{
  width:140px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.12);
  padding:8px 10px;
  font-size:.95rem;
  text-align:right;
  outline:none;
  background:#fff;
}

.emi-mini-input:focus{
  border-color: rgba(25,198,182,.6);
  box-shadow: 0 0 0 4px rgba(25,198,182,.12);
}

.emi-hint{
  font-size:.82rem;
  color:var(--muted);
  margin-top:6px;
}

.emi-results{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
}

.emi-result-box{
  border-radius:16px;
  padding:14px 16px;
  background:linear-gradient(to bottom right, rgba(25,198,182,.10), rgba(25,198,182,.03));
  border:1px solid rgba(25,198,182,.18);
}

.emi-result-box .label{
  font-size:.85rem;
  color:var(--muted);
  margin-bottom:6px;
}

.emi-result-box .value{
  font-size:1.35rem;
  font-weight:700;
  color:#0f172a;
}

/* Desktop: 3 boxes in a row */
@media (min-width: 992px){
  .emi-results{
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile tweaks */
@media (max-width: 576px){
  .emi-card{ padding:22px; }
  .emi-mini-input{ width:120px; }
}



/* ===============================
   BUTTON HOVER – HIGH CONTRAST
================================ */

/* Primary Brand Button */
.btn-brand {
  background: var(--brand);
  color: #fff;
  border: 2px solid var(--brand);
  transition: all .3s ease;
}

.btn-brand:hover,
.btn-brand:focus {
  background: #0f172a;       /* dark contrast */
  border-color: #0f172a;
  color: #ffffff;
}

/* Outline Light Button (Hero / Dark BG) */
.btn-outline-light {
  border: 2px solid #ffffff;
  color: #ffffff;
  transition: all .3s ease;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  background: #ffffff;
  color: #0f172a;            /* dark text on light bg */
}

/* Generic Bootstrap Buttons */
.btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Subtle lift effect */
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,.2);
}

/* Service cards CTA (if added later) */
.service-overlay .btn:hover {
  background: #ffffff;
  color: #0f172a;
}

/* ===============================
   MOBILE HAMBURGER MENU COLOR
================================ */

/* Default hamburger icon color */
.navbar-toggler {
  border: 2px solid var(--brand);
  border-radius: 10px;
  padding: 6px 8px;
}

/* Custom hamburger icon */
.navbar-toggler-icon {
  background-image: none;
  position: relative;
  width: 22px;
  height: 2px;
  background-color: var(--brand);
  display: inline-block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background-color: var(--brand);
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
  top: -6px;
}

.navbar-toggler-icon::after {
  top: 6px;
}

/* Hover / focus state */
.navbar-toggler:hover,
.navbar-toggler:focus {
  background: rgba(25, 198, 182, 0.1);
  border-color: #0f172a;
}

/* If header becomes dark later */
.site-header.dark .navbar-toggler-icon,
.site-header.dark .navbar-toggler-icon::before,
.site-header.dark .navbar-toggler-icon::after {
  background-color: #ffffff;
}


.hero-title {
  font-family: 'Italiana', serif;
  font-size: clamp(2.6rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.95;
  max-width: 820px;
  margin: 0 auto;
}

/* HERO TAGS */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
}

.hero-tag i {
  font-size: 0.95rem;
}

/* CTA */
.hero-cta .btn {
  border-radius: 999px;
  padding: 10px 26px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-banner {
    height: 85vh;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-cta .btn {
    display: block;
    width: 100%;
    margin-bottom: 12px;
  }
}

.hero * {color:#fff;}

.section {padding:80px 0;}
.bg-soft {background:var(--soft);}

.section-title {
  font-family:'Italiana',serif;
  font-size:2.3rem;
}

.section-intro {
  max-width:850px;
  color:var(--muted);
}

.service-card {
  background:#fff;
  padding:26px;
  border-radius:20px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.service-card img {
  height:56px;
  margin-bottom:14px;
}

.calc-box {
  background:var(--soft);
  padding:30px;
  border-radius:20px;
}

/* ===============================
   SERVICES – FULL IMAGE GRID
================================ */

.service-box {
  position: relative;
  height: 320px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  transition: transform .4s ease;
}

.service-box:hover {
  transform: translateY(-6px);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.75),
    rgba(0,0,0,.25)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: #fff;
}

.service-overlay h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.service-overlay p {
  font-size: .95rem;
  opacity: .9;
  margin: 0;
}

/* Responsive height */
@media (max-width: 768px) {
  .service-box {
    height: 260px;
  }
}


.footer {
  background:#0b1324;
  color:#cbd5e1;
  padding:50px 0;
}

.footer-logo {height:40px;}

[data-animate] {
  opacity:0;
  transform:translateY(20px);
  transition:.8s ease;
}
[data-animate].show {
  opacity:1;
  transform:none;
}

.sticky-ctas {
  position:fixed;
  right:20px;
  bottom:40px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.cta-btn {
  padding:10px 14px;
  border-radius:999px;
  color:#fff;
  text-decoration:none;
  font-weight:500;
}

.cta-btn.whatsapp {background:#25d366;}
.cta-btn.call {background:var(--brand);}

.mobile-cta {
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  display:flex;
}

.mobile-cta a {
  flex:1;
  padding:14px;
  text-align:center;
  color:#fff;
  text-decoration:none;
}

.mobile-cta a:first-child {background:#25d366;}
.mobile-cta a:last-child {background:var(--brand);}


/* ===============================
   OUR GOALS
================================ */

.goals-section {
  background: #ffffff;
}

.goals-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.goals-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}

.goal-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(25,198,182,.12);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.goals-list h6 {
  margin: 0 0 4px;
  font-weight: 600;
}

.goals-list p {
  margin: 0;
  font-size: .95rem;
  color: var(--muted);
}

.goals-image img {
  width: 100%;
  object-fit: cover;
}

/* Mobile spacing */
@media (max-width: 768px) {
  .goals-section {
    text-align: left;
  }
}

/* ===============================
   CONTACT & MAP SECTION
================================ */

.contact-section {
  padding-bottom: 0;
}

.contact-left {
  background: linear-gradient(
    to bottom right,
    rgba(25,198,182,.08),
    rgba(25,198,182,.02)
  );
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: .95rem;
}

.contact-details i {
  color: var(--brand);
  font-size: 1.1rem;
}

.map-box {
  border-radius: 14px;
  overflow: hidden;
}

.contact-right .form-control {
  border-radius: 12px;
  padding: 10px 14px;
}

/* Mobile spacing */
@media (max-width: 768px) {
  .contact-left,
  .contact-right {
    padding: 24px !important;
  }
}

/* ===============================
   FOOTER (BLACK THEME)
================================ */

.site-footer {
  background: #000;
  color: #cbd5e1;
  margin-top: 80px;
}

/* CTA STRIP */
.footer-cta {
  text-align: center;
  padding: 60px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-cta h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 10px;
}

.footer-cta p {
  max-width: 700px;
  margin: 0 auto 25px;
  color: #94a3b8;
}

.footer-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  background: #fbbf24;
  color: #000;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

.btn-cta-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
}

/* MAIN FOOTER */
.footer-main {
  padding: 60px 0;
}

.footer-brand {
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-title {
  color: #fff;
  margin-bottom: 14px;
  font-weight: 600;
}

.footer-text {
  font-size: .95rem;
  color: #94a3b8;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: .95rem;
}

.footer-links a:hover {
  color: #fff;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all .3s ease;
}

.footer-social a:hover {
  background: #fbbf24;
  color: #000;
}

/* COPYRIGHT */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  padding: 18px;
  font-size: .85rem;
  color: #94a3b8;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-main {
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}

/* ================= BREADCRUMB ================= */
.breadcrumb-section{
  background: linear-gradient(135deg, #19c6b6, #0fb9a8);
  color:#fff;
  padding:60px 0;
}

.breadcrumb{
  background:none;
}

.breadcrumb a{
  color:rgba(255,255,255,.85);
  text-decoration:none;
}

.breadcrumb a:hover{
  color:#fff;
}

.breadcrumb-title{
  font-size:2.4rem;
  font-weight:600;
}

.breadcrumb-subtitle{
  max-width:640px;
  opacity:.9;
}

/* ================= INFO CARDS ================= */
.info-card{
  background:#fff;
  padding:28px;
  border-radius:18px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.info-card i{
  font-size:2rem;
  color:var(--brand);
  margin-bottom:10px;
  display:inline-block;
}

/* ================= WHY CARDS ================= */
.why-card{
  background:#fff;
  padding:26px;
  border-radius:16px;
  text-align:center;
  height:100%;
  box-shadow:0 8px 22px rgba(0,0,0,.06);
}

.why-card i{
  font-size:1.8rem;
  color:var(--brand);
  margin-bottom:10px;
}


/* ================= SERVICE CARDS ================= */
.service-card{
  background:#fff;
  padding:28px;
  border-radius:18px;
  height:100%;
  text-align:center;
  box-shadow:0 10px 26px rgba(0,0,0,.08);
}

.service-card i{
  font-size:2.2rem;
  color:var(--brand);
  margin-bottom:12px;
}

.service-card h5{
  font-weight:600;
  margin-bottom:8px;
}

.service-card p{
  font-size:.95rem;
  color:#64748b;
}

/* ================= ENQUIRY MODAL ================= */
.enquiry-modal{
  border-radius:20px;
  padding:10px;
}

.enquiry-modal .modal-title{
  font-weight:600;
  font-size:1.25rem;
}

.enquiry-modal .form-control,
.enquiry-modal .form-select{
  border-radius:12px;
  padding:10px 14px;
}

.enquiry-modal .form-control:focus,
.enquiry-modal .form-select:focus{
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(25,198,182,.15);
}

/* ================= BLOGS ================= */
.blog-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  height:100%;
  box-shadow:0 10px 28px rgba(0,0,0,.08);
  transition:.3s ease;
}

.blog-card:hover{
  transform:translateY(-6px);
}

.blog-image img{
  width:100%;
  height:180px;
  object-fit:cover;
}

.blog-content{
  padding:18px;
}

.blog-category{
  display:inline-block;
  font-size:.75rem;
  font-weight:600;
  color:#0f766e;
  background:rgba(25,198,182,.15);
  padding:4px 10px;
  border-radius:999px;
  margin-bottom:8px;
}

.blog-content h5{
  font-size:1.05rem;
  font-weight:600;
  margin-bottom:8px;
}

.blog-content p{
  font-size:.9rem;
  color:#64748b;
  margin-bottom:12px;
}

.blog-link{
  font-size:.9rem;
  font-weight:600;
  color:var(--brand);
  text-decoration:none;
}

.blog-link:hover{
  text-decoration:underline;
}

/* Mobile */
@media (max-width:576px){
  .blog-image img{ height:160px; }
}

/* ================= CONTACT PAGE ================= */
.contact-info-box,
.contact-form-box{
  background:#fff;
  padding:32px;
  border-radius:20px;
  height:100%;
  box-shadow:0 10px 28px rgba(0,0,0,.08);
}

.contact-info-list{
  list-style:none;
  padding:0;
  margin:0;
}

.contact-info-list li{
  display:flex;
  gap:12px;
  margin-bottom:14px;
  color:#475569;
}

.contact-info-list i{
  font-size:1.2rem;
  color:var(--brand);
}

.btn-outline-brand{
  border:2px solid var(--brand);
  color:var(--brand);
  background:transparent;
}

.btn-outline-brand:hover{
  background:var(--brand);
  color:#fff;
}

.map-section{
  margin-top:60px;
}

/* ================= CHANNEL PARTNER ================= */
.partner-benefits{
  list-style:none;
  padding:0;
  margin:0;
}

.partner-benefits li{
  display:flex;
  gap:10px;
  margin-bottom:10px;
  color:#475569;
}

.partner-benefits i{
  color:var(--brand);
  font-size:1.1rem;
}

.partner-form-box{
  background:#fff;
  padding:36px;
  border-radius:22px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

/* ================= FEEDBACK PAGE ================= */
.feedback-box{
  background:#fff;
  padding:36px;
  border-radius:22px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.rating-group{
  display:flex;
  flex-direction:column;
  gap:8px;
  font-size:.95rem;
}

.rating-group label{
  cursor:pointer;
}

.rating-group input{
  margin-right:6px;
}

