
:root{
  --primary:#6a673f;
}

/* GLOBAL */
body{
  font-family:'Segoe UI',sans-serif;
  scroll-behavior:smooth;
}
a{text-decoration:none}

/* ================= NAVBAR ================= */
.mega-navbar{
  padding:10px 0;
  background:linear-gradient(90deg,#fff,#f6f6f1);
  font-size:14px;
}

.mega-navbar a:hover{
    font-size:15px;
}
.highlight-link{
  color:var(--primary)!important;
  font-weight:400;
  margin:0 4px;
  position:relative;
}
/*.highlight-link::after{*/
/*  content:"";*/
/*  width:0;*/
/*  height:3px;*/
/*  background:var(--primary);*/
/*  position:absolute;*/
/*  left:50%;*/
/*  bottom:-6px;*/
/*  transition:.3s;*/
/*}*/
/*.highlight-link:hover::after{*/
/*  width:100%;*/
/*  left:0;*/
/*}*/

/* SOCIAL ICONS */
.social-header i{
  color:var(--primary);
  font-size:18px;
  margin-left:12px;
  transition:.3s;
}
.social-header i:hover{transform:scale(1.2)}

/* MEGA MENU */
.mega-menu{
  width: 100%;
  left: 0;
  right: 0;
  margin-top: 18px;
  border: none;
  border-radius: 0 0 18px 18px;
  max-height: 75vh;              /* IMPORTANT */
  overflow-y: auto;              /* SCROLL */
  padding: 30px 10px;
}

.mega-menu h6{color:var(--primary);font-weight:700}
.mega-menu a{
  color:#555;
  display:block;
  padding: 5px 0;
  font-size: 14px;
  line-height: 1.4;
  transition:.3s;
}

.mega-menu a:hover{
  color:var(--primary);
  padding-left:8px;
}

/* CONTACT BUTTON */
.contact-btn{
  background:var(--primary);
  border:none;
  box-shadow:0 8px 20px rgba(106,103,63,.4);
  transition:.3s;
}
.contact-btn:hover{
  transform:translateY(-3px);
}

.mega-menu .col-md-3{
  padding: 0 20px;
  border-right: 1px solid rgba(0,0,0,.08);
}

.mega-menu .col-md-3:last-child{
  border-right: none;
}

.mega-menu h6{
  font-size: 15px;
  margin-bottom: 12px;
  padding-bottom: 6px;
  
}

.mega-col.active-col{
  background: rgba(106,103,63,.06);
  border-radius: 14px;
}

/* ================= HERO ================= */
.carousel-item{
  height:50vh;
  background-size:cover;
  background-position:center;
  position:relative;
}
.carousel-overlay{
  background:rgba(0,0,0,.55);
  position:absolute;
  inset:0;
}
.hero-content{
  position:relative;
  z-index:2;
  animation:fadeUp 1.2s ease;
}
@keyframes fadeUp{
  from{opacity:0;transform:translateY(40px)}
  to{opacity:1;transform:none}
}

/* ================= TITLES ================= */
.section-title{
  font-weight:700;
  margin-bottom:40px;
}
.section-title::after{
  content:"";
  width:70px;
  height:3px;
  background:var(--primary);
  display:block;
  margin:10px auto 0;
}

/* ================= SERVICES ================= */
.service-card{
  border:none;
  transition:.5s;
}
.service-card:hover{
  transform:translateY(-12px) scale(1.03);
  box-shadow:0 25px 45px rgba(0,0,0,.15);
}
.service-icon{
  font-size:45px;
  color:var(--primary);
}

/* ================= INFO SECTIONS ================= */
.info-box{
  padding:40px;
  border-radius:18px;
  background:#f8f9fa;
  transition:.6s;
}
.info-box:hover{
  background:var(--primary);
  color:#fff;
  transform:scale(1.03);
}

/* ================= CONTACT ================= */
.contact-box{
  background:linear-gradient(135deg,var(--primary),#4f4d2e);
  color:#fff;
  padding:50px;
  border-radius:25px;
  animation:zoomIn 1s ease;
}
@keyframes zoomIn{
  from{transform:scale(.85);opacity:0}
  to{transform:scale(1);opacity:1}
}

/* ================= FOOTER ================= */
footer{
  background:#111;
  color:#bbb;
}
footer a{color:#bbb}
footer a:hover{color:#fff}
.footer-social i{
  font-size:18px;
  margin-right:12px;
  transition:.3s;
}
.footer-social i:hover{color:var(--primary)}



/* ================= SERVICES HIGHLIGHT ================= */

.service-highlight {
  position: relative;
  overflow: hidden;
  padding-top: 40px;     /* tightened top spacing */
  padding-bottom: 70px;  /* balanced bottom spacing */
}

/* LEFT CONTENT */
.service-text-box {
  animation: fadeSlideLeft 1s ease;
}

.service-tag {
  display: inline-block;
  background: rgba(106,103,63,.1);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-lead {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
}

.service-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* CTA BUTTON */
.consultation-btn {
  background: var(--primary);
  border: none;
  box-shadow: 0 10px 25px rgba(106,103,63,.35);
  transition: .4s;
}

.consultation-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(106,103,63,.45);
}

/* RIGHT CARD */
.service-feature-card {
  background: #fff;
  border-radius: 25px;
  padding: 45px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,.12);
  animation: fadeSlideRight 1s ease;
  transition: .5s;
}

.service-feature-card:hover {
  transform: translateY(-10px);
}

/* ICON */
.icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #4f4d2e);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.icon-wrap i {
  font-size: 36px;
  color: #fff;
}

/* POINTS */
.service-points {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.service-points li {
  padding: 8px 0;
  font-weight: 500;
  color: #444;
  position: relative;
}

.service-points li::before {
  content: "✔";
  color: var(--primary);
  margin-right: 8px;
}

/* ANIMATIONS */
@keyframes fadeSlideLeft {
  from {opacity:0; transform:translateX(-40px);}
  to {opacity:1; transform:none;}
}

@keyframes fadeSlideRight {
  from {opacity:0; transform:translateX(40px);}
  to {opacity:1; transform:none;}
}



/* ================= CONTACT SECTION ================= */

.contact-section {
  background: linear-gradient(135deg, #f6f6f1, #ffffff);
}

.contact-wrapper {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.12);
}

/* LEFT INFO */
.contact-info {
  background: linear-gradient(135deg, var(--primary), #4f4d2e);
  color: #fff;
  padding: 50px 40px;
  animation: fadeLeft 1s ease;
}

.contact-info h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-intro {
  opacity: .95;
  margin-bottom: 30px;
}

.contact-details p {
  margin: 12px 0;
  font-size: 15px;
}

.contact-details i {
  margin-right: 10px;
}

/* SOCIAL */
.contact-social a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  color: #fff;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: .3s;
}

.contact-social a:hover {
  background: #fff;
  color: var(--primary);
  transform: translateY(-3px);
}

/* RIGHT FORM */
.contact-form {
  padding: 50px;
  animation: fadeRight 1s ease;
}

.form-control,
.form-select {
  border-radius: 14px;
  border: 1px solid #ddd;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 .15rem rgba(106,103,63,.25);
}

/* SUBMIT */
.submit-btn {
  background: var(--primary);
  border: none;
  box-shadow: 0 12px 30px rgba(106,103,63,.35);
  transition: .4s;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(106,103,63,.45);
}

/* ANIMATIONS */
@keyframes fadeLeft {
  from {opacity:0; transform:translateX(-40px);}
  to {opacity:1; transform:none;}
}

@keyframes fadeRight {
  from {opacity:0; transform:translateX(40px);}
  to {opacity:1; transform:none;}
}


/* ================= FOOTER ================= */

.footer-section {
  background: linear-gradient(135deg, #2f2f24, #1f1f18);
  color: #cfcfcf;
  padding: 70px 0 25px;
  font-size: 14px;
}

/* BRAND */
.footer-brand h5 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-brand p {
  line-height: 1.7;
  opacity: .9;
}

/* TITLES */
.footer-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 35px;
  height: 2px;
  background: var(--primary);
  position: absolute;
  left: 0;
  bottom: -6px;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cfcfcf;
  text-decoration: none;
  transition: .3s;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 6px;
}

/* SOCIAL */
.footer-social a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: .3s;
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-4px);
}

/* DIVIDER */
.footer-divider {
  border-color: rgba(255,255,255,.15);
  margin: 40px 0 20px;
}

/* BOTTOM */
.footer-bottom p {
  margin: 0;
  font-size: 13px;
  opacity: .85;
}




/* ===== Designer Background Enhancement ===== */

.services-bg {
  position: relative;
  overflow: hidden;
}

/* soft gradient layer */
.services-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.06),
    rgba(0,0,0,0.15)
  );
  z-index: 0;
}

/* subtle radial glow */
.services-bg::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(255,255,255,0.18),
    transparent 65%
  );
  top: -220px;
  right: -220px;
  z-index: 0;
}

/* keep content above background layers */
.services-bg .container {
  position: relative;
  z-index: 1;
}

/* ===== PROFESSIONAL MEGA MENU HEADINGS ===== */

.mega-menu h6{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  padding-bottom: 8px;
  
}

/* Icon badge */
.mega-menu h6 i{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #4f4d2e);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 6px 16px rgba(106,103,63,.35);
  transition: .35s;
}

/* Hover polish */
.mega-menu .col-md-3:hover h6 i{
  transform: translateY(-3px) scale(1.05);
}

/* Cleaner links */
.mega-menu a{
  position: relative;
  padding-left: 14px;
}

.mega-menu a::before{
  content: "›";
  position: absolute;
  left: 0;
  opacity: .35;
  transition: .3s;
}

.mega-menu a:hover::before{
  opacity: 1;
  color: var(--primary);
}

/* ===== SERVICES HEADER STRIP ===== */
.services-strip{
  position: fixed;
  top: 78px; /* below navbar */
  width: 100%;
  background: #fff;
  z-index: 999;
  border-top: 1px solid rgba(0,0,0,.05);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.services-strip-inner{
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.service-tab{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  position: relative;
  transition: .3s;
}

.service-tab i{
  font-size: 18px;
  color: var(--primary);
}

/* underline */
.service-tab::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: .3s;
}

.service-tab.active,
.service-tab:hover{
  color: var(--primary);
}

.service-tab.active::after,
.service-tab:hover::after{
  width: 100%;
  left: 0;
}



/* ===== FORCE MANUAL MEGA MENU CONTROL ===== */
.mega-menu{
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease;
}

.mega-menu.show{
  display: block;
  opacity: 1;
  visibility: visible;
}

/*-------------------for mobile-----------------*/
/* ===== MOBILE FIX ===== */
@media (max-width: 991px) {

  /* Hide fixed services strip */
  .services-strip {
    display: none;
  }

  /* Reset body padding added for strip */
  body {
    padding-top: 78px;
  }

  /* Disable mega menu positioning */
  .mega-menu {
    position: static !important;
    max-height: none;
    overflow: visible;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
  }

  /* Stack mega columns */
  .mega-menu .row {
    flex-direction: column;
  }

  .mega-menu .col-md-3 {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,.08);
    padding: 12px 0;
  }
}

/*--------------------mobile end--------------------*/
@media (max-width: 991px) {

  .mega-menu h6 {
    cursor: pointer;
  }

  .mega-menu a {
    display: none;
  }

  .mega-col.active-col a {
    display: block;
  }
}

/*----------extra policed css-------*/

/* ===== ONE ROW SERVICES ===== */



/*-------------menu -------------------*/

/* ===== DROPDOWN MENU (NOT MEGA) ===== */

.dropdown-menu {
  border-radius: 16px;
  border: none;
  padding: 12px 0;
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
  min-width: 260px;
}

.dropdown-menu a {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 22px;
  color: #444;
  transition: .3s;
}

.dropdown-menu a:hover {
  background: rgba(106,103,63,.08);
  color: var(--primary);
}

/* DESKTOP HOVER */
@media (min-width: 992px) {
  .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/*----------for dual menu-------------*/

.two-column-dropdown {
  width: 560px;
  border-radius: 12px;
}

.two-column-dropdown li {
  list-style: none;
}

.two-column-dropdown .dropdown-item {
  font-size: 14px;
  padding: 8px 12px;
  white-space: normal;
}

.two-column-dropdown .dropdown-item:hover {
  background-color: #f5f5f5;
}

/*------------------------------new services------------------------------*/




.services-premium {
  padding: 60px 0;
  background: linear-gradient(180deg, #fbfaf8 0%, #f3f2ee 100%);
}

.services-header h2 {
  /*font-family: "Playfair Display", serif;*/
  /*font-size: 40px;*/
  /*font-weight: 600;*/
  letter-spacing: 0.5px;
  color: #1f2933;
  text-align: center;
}

.services-header p {
  font-size: 16px;
  color: #6b7280;
  margin-top: 8px;
  text-align: center;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.06);
}

/* BOX */
.service-box {
  padding: 48px 50px;
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #fbfbfa 100%);
  transition: all 0.35s ease;
}

/* DIVIDERS */
.service-box:nth-child(odd) {
  border-right: 1px solid #e5e7eb;
}
.service-box:nth-child(-n+2) {
  border-bottom: 1px solid #e5e7eb;
}

/* HEADING */
.service-box h4 {
  font-size: 14px;
  letter-spacing: 1.6px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
  position: relative;
  /*padding-left: 14px;*/
}

.service-box h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 16px;
  /*background: linear-gradient(180deg, #b45309, #92400e);*/
  border-radius: 2px;
}

/* TEXT */
.service-box p {
  font-size: 15.5px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* LINK */
.service-box span {
  font-size: 14px;
  font-weight: 600;
  color: #1f2933;
  letter-spacing: 0.3px;
}

/* HOVER (optional but premium) */
/*.service-box:hover {*/
  /*background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);*/
/*  transform: translateY(-4px);*/
/*}*/

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-box {
    border-right: none !important;
  }
}

.process-step {
  transition: 
   /* box-shadow 0.35s ease,*/
    transform 0.35s ease,
    border-color 0.35s ease;
  border: 1px solid transparent;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 65px rgba(0,0,0,0.12);
  border-color: rgba(161,98,7,0.25);
}


.process-step i {
  transition: color 0.35s ease;
}

.process-step:hover i {
  color: #d97706; /* warm premium gold */
}


.process-step i {
  transition: color 0.35s ease;
}

.process-step:hover i {
  color: #d97706; /* warm premium gold */
}

.process-line {
  transition: background 0.35s ease;
}

.process-step:hover + .process-line,
.process-line:hover {
  background: linear-gradient(to right, #92400e, #f59e0b);
}

.process-step {
  cursor: default;
}




/* ================= OUR APPROACH ================= */


.approach-executive {
  padding: 60px 0;
  background: linear-gradient(180deg, #fafaf9, #f2f1ed);
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: #1f2933;
}

.section-header p {
  color: #6b7280;
  margin-top: 6px;
}

/* PROCESS */
.process-wrapper {
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

/* STEP */
.process-step {
  text-align: center;
  padding: 26px 30px;
  /* background: #ffffff; */
  border-radius: 14px;
/*  box-shadow: 0 18px 45px rgba(0,0,0,0.08);*/
  min-width: 220px;
}

.process-step i {
  font-size: 28px;
  color: #a16207;
  margin-bottom: 10px;
  display: block;
}

.process-step h4 {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

/* LINE */
.process-line {
  width: 70px;
  height: 2px;
  background: linear-gradient(to right, #a16207, #d97706);
  position: relative;
}

.process-line::after {
  content: "➜";
  position: absolute;
  right: -8px;
  top: -11px;
  color: #a16207;
}

/* LOOP NOTE */
.loop-note {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: #6b7280;
  font-style: italic;
}

/* MOBILE */
@media(max-width:992px){
  .process-wrapper {
    flex-direction: column;
  }
  .process-line {
    width: 2px;
    height: 40px;
  }
  .process-line::after {
    content: "↓";
    top: auto;
    bottom: -12px;
    right: -6px;
  }
}




/* RIGHT SIDE STICKY CONTAINER */
.right-service-scroll {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);

  position: sticky;
  top: 90px; /* header height */

  /* ❌ remove scroll from parent */
  overflow: hidden;
}

/* TITLE */
.right-service-scroll h5 {
  font-weight: 600;
  margin-bottom: 14px;
  color: #2b2b2b;
}

/* ONLY THIS SCROLLS */
.scroll-list {
  max-height: calc(100vh - 170px); /* viewport aware */
  overflow-y: auto;
  padding-right: 8px;
}

/* LINKS */
.scroll-list a {
  display: block;
  padding: 12px 0;
  font-size: 14.5px;
  color: #555;
  border-bottom: 1px solid #eee;
  transition: 0.3s ease;
}

.scroll-list a:hover {
  color: #6a673f;
  padding-left: 6px;
}

/* CUSTOM SCROLLBAR */
.scroll-list::-webkit-scrollbar {
  width: 6px;
}

.scroll-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.scroll-list::-webkit-scrollbar-thumb {
  background: #6a673f;
  border-radius: 10px;
}

.scroll-list::-webkit-scrollbar-thumb:hover {
  background: #585531;
}

/* MOBILE */
@media (max-width: 991px) {
  .right-service-scroll {
    position: relative;
    top: auto;
  }

  .scroll-list {
    max-height: none;
    overflow: visible;
  }
}

/*-----------------reducee space beetween sections------/
section {
  padding-top: 60px;
  padding-bottom: 60px;
}
//--------------------------end---------------------//

/*----------------------------sub pages------starts from here --------------------------------*/


:root{
  --primary:#6a673f;
}

/* GLOBAL */
body{
  font-family:'Segoe UI',sans-serif;
  scroll-behavior:smooth;
}
a{text-decoration:none}

/* ================= NAVBAR ================= */


/* SOCIAL ICONS */
.social-header i{
  color:var(--primary);
  font-size:18px;
  margin-left:12px;
  transition:.3s;
}
.social-header i:hover{transform:scale(1.2)}

/* MEGA MENU */
.mega-menu{
  width: 100%;
  left: 0;
  right: 0;
  margin-top: 18px;
  border: none;
  border-radius: 0 0 18px 18px;
  max-height: 75vh;              /* IMPORTANT */
  overflow-y: auto;              /* SCROLL */
  padding: 30px 10px;
}

.mega-menu h6{color:var(--primary);font-weight:700}
.mega-menu a{
  color:#555;
  display:block;
  padding: 5px 0;
  font-size: 14px;
  line-height: 1.4;
  transition:.3s;
}

.mega-menu a:hover{
  color:var(--primary);
  padding-left:8px;
}

/* CONTACT BUTTON */
.contact-btn{
  background:var(--primary);
  border:none;
  box-shadow:0 8px 20px rgba(106,103,63,.4);
  transition:.3s;
}
.contact-btn:hover{
  transform:translateY(-3px);
}

.mega-menu .col-md-3{
  padding: 0 20px;
  border-right: 1px solid rgba(0,0,0,.08);
}

.mega-menu .col-md-3:last-child{
  border-right: none;
}

.mega-menu h6{
  font-size: 15px;
  margin-bottom: 12px;
  padding-bottom: 6px;
  
}

.mega-col.active-col{
  background: rgba(106,103,63,.06);
  border-radius: 14px;
}

/* ================= HERO ================= */




/*.carousel-item{*/
/*  height:85vh;*/
/*  background-size:cover;*/
/*  background-position:center;*/
/*  position:relative;*/
/*}*/
/*.carousel-overlay{*/
/*  background:rgba(0,0,0,.55);*/
/*  position:absolute;*/
/*  inset:0;*/
/*}*/
/*.hero-content{*/
/*  position:relative;*/
/*  z-index:2;*/
/*  animation:fadeUp 1.2s ease;*/
/*}*/
/*@keyframes fadeUp{*/
/*  from{opacity:0;transform:translateY(40px)}*/
/*  to{opacity:1;transform:none}*/
/*}*/






/* ================= TITLES ================= */
.section-title{
  font-weight:700;
  margin-bottom:40px;
}
.section-title::after{
  content:"";
  width:70px;
  height:3px;
  background:var(--primary);
  display:block;
  margin:10px auto 0;
}

/* ================= SERVICES ================= */
.service-card{
  border:none;
  transition:.5s;
}
.service-card:hover{
  transform:translateY(-12px) scale(1.03);
  box-shadow:0 25px 45px rgba(0,0,0,.15);
}
.service-icon{
  font-size:45px;
  color:var(--primary);
}

/* ================= INFO SECTIONS ================= */
.info-box{
  padding:40px;
  border-radius:18px;
  background:#f8f9fa;
  transition:.6s;
}
.info-box:hover{
  background:var(--primary);
  color:#fff;
  transform:scale(1.03);
}

/* ================= CONTACT ================= */
.contact-box{
  background:linear-gradient(135deg,var(--primary),#4f4d2e);
  color:#fff;
  padding:50px;
  border-radius:25px;
  animation:zoomIn 1s ease;
}
@keyframes zoomIn{
  from{transform:scale(.85);opacity:0}
  to{transform:scale(1);opacity:1}
}

/* ================= FOOTER ================= */
footer{
  background:#111;
  color:#bbb;
}
footer a{color:#bbb}
footer a:hover{color:#fff}
.footer-social i{
  font-size:18px;
  margin-right:12px;
  transition:.3s;
}
.footer-social i:hover{color:var(--primary)}



/* ================= SERVICES HIGHLIGHT ================= */

.service-highlight {
  position: relative;
  overflow: hidden;
  padding-top: 40px;     /* tightened top spacing */
  padding-bottom: 70px;  /* balanced bottom spacing */
}

/* LEFT CONTENT */
.service-text-box {
  animation: fadeSlideLeft 1s ease;
}

.service-tag {
  display: inline-block;
  background: rgba(106,103,63,.1);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-lead {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
}

.service-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* CTA BUTTON */
.consultation-btn {
  background: var(--primary);
  border: none;
  box-shadow: 0 10px 25px rgba(106,103,63,.35);
  transition: .4s;
}

.consultation-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(106,103,63,.45);
}

/* RIGHT CARD */
.service-feature-card {
  background: #fff;
  border-radius: 25px;
  padding: 45px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,.12);
  animation: fadeSlideRight 1s ease;
  transition: .5s;
}

.service-feature-card:hover {
  transform: translateY(-10px);
}

/* ICON */
.icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #4f4d2e);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.icon-wrap i {
  font-size: 36px;
  color: #fff;
}

/* POINTS */
.service-points {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.service-points li {
  padding: 8px 0;
  font-weight: 500;
  color: #444;
  position: relative;
}

.service-points li::before {
  content: "✔";
  color: var(--primary);
  margin-right: 8px;
}

/* ANIMATIONS */
@keyframes fadeSlideLeft {
  from {opacity:0; transform:translateX(-40px);}
  to {opacity:1; transform:none;}
}

@keyframes fadeSlideRight {
  from {opacity:0; transform:translateX(40px);}
  to {opacity:1; transform:none;}
}



/* ================= CONTACT SECTION ================= */

.contact-section {
  background: linear-gradient(135deg, #f6f6f1, #ffffff);
}

.contact-wrapper {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.12);
}

/* LEFT INFO */
.contact-info {
  background: linear-gradient(135deg, var(--primary), #4f4d2e);
  color: #fff;
  padding: 50px 40px;
  animation: fadeLeft 1s ease;
}

.contact-info h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-intro {
  opacity: .95;
  margin-bottom: 30px;
}

.contact-details p {
  margin: 12px 0;
  font-size: 15px;
}

.contact-details i {
  margin-right: 10px;
}

/* SOCIAL */
.contact-social a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  color: #fff;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: .3s;
}

.contact-social a:hover {
  background: #fff;
  color: var(--primary);
  transform: translateY(-3px);
}

/* RIGHT FORM */
.contact-form {
  padding: 50px;
  animation: fadeRight 1s ease;
}

.form-control,
.form-select {
  border-radius: 14px;
  border: 1px solid #ddd;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 .15rem rgba(106,103,63,.25);
}

/* SUBMIT */
.submit-btn {
  background: var(--primary);
  border: none;
  box-shadow: 0 12px 30px rgba(106,103,63,.35);
  transition: .4s;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(106,103,63,.45);
}

/* ANIMATIONS */
@keyframes fadeLeft {
  from {opacity:0; transform:translateX(-40px);}
  to {opacity:1; transform:none;}
}

@keyframes fadeRight {
  from {opacity:0; transform:translateX(40px);}
  to {opacity:1; transform:none;}
}


/* ================= FOOTER ================= */

.footer-section {
  background: linear-gradient(135deg, #2f2f24, #1f1f18);
  color: #cfcfcf;
  padding: 70px 0 25px;
  font-size: 14px;
}

/* BRAND */
.footer-brand h5 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-brand p {
  line-height: 1.7;
  opacity: .9;
}

/* TITLES */
.footer-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 35px;
  height: 2px;
  background: var(--primary);
  position: absolute;
  left: 0;
  bottom: -6px;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cfcfcf;
  text-decoration: none;
  transition: .3s;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 6px;
}

/* SOCIAL */
.footer-social a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: .3s;
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-4px);
}

/* DIVIDER */
.footer-divider {
  border-color: rgba(255,255,255,.15);
  margin: 40px 0 20px;
}

/* BOTTOM */
.footer-bottom p {
  margin: 0;
  font-size: 13px;
  opacity: .85;
}




/* ===== Designer Background Enhancement ===== */

.services-bg {
  position: relative;
  overflow: hidden;
}

/* soft gradient layer */
.services-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.06),
    rgba(0,0,0,0.15)
  );
  z-index: 0;
}

/* subtle radial glow */
.services-bg::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(255,255,255,0.18),
    transparent 65%
  );
  top: -220px;
  right: -220px;
  z-index: 0;
}

/* keep content above background layers */
.services-bg .container {
  position: relative;
  z-index: 1;
}

/* ===== PROFESSIONAL MEGA MENU HEADINGS ===== */

.mega-menu h6{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  padding-bottom: 8px;
  
}

/* Icon badge */
.mega-menu h6 i{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #4f4d2e);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 6px 16px rgba(106,103,63,.35);
  transition: .35s;
}

/* Hover polish */
.mega-menu .col-md-3:hover h6 i{
  transform: translateY(-3px) scale(1.05);
}

/* Cleaner links */
.mega-menu a{
  position: relative;
  padding-left: 14px;
}

.mega-menu a::before{
  content: "›";
  position: absolute;
  left: 0;
  opacity: .35;
  transition: .3s;
}

.mega-menu a:hover::before{
  opacity: 1;
  color: var(--primary);
}

/* ===== SERVICES HEADER STRIP ===== */
.services-strip{
  position: fixed;
  top: 78px; /* below navbar */
  width: 100%;
  background: #fff;
  z-index: 999;
  border-top: 1px solid rgba(0,0,0,.05);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.services-strip-inner{
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.service-tab{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  position: relative;
  transition: .3s;
}

.service-tab i{
  font-size: 18px;
  color: var(--primary);
}

/* underline */
.service-tab::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: .3s;
}

.service-tab.active,
.service-tab:hover{
  color: var(--primary);
}

.service-tab.active::after,
.service-tab:hover::after{
  width: 100%;
  left: 0;
}

/* spacing fix for page */

/* ===== FORCE MANUAL MEGA MENU CONTROL ===== */
.mega-menu{
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease;
}

.mega-menu.show{
  display: block;
  opacity: 1;
  visibility: visible;
}


/*----------------------service page--------------------*/

/* PAGE HEADER */
.page-header{
  background:linear-gradient(135deg,var(--primary),#4f4d2e);
  color:#fff;
  padding: 30px 0px 20px;
}

/* SIDEBAR */
.service-sidebar{
  background:#fff;
  border-radius:18px;
  padding:25px;
  box-shadow:0 20px 40px rgba(0,0,0,.08);
  position:sticky;
  top:110px;
}
.service-sidebar h5{
  color:var(--primary);
  font-weight:700;
  margin-bottom:20px;
}
.service-sidebar a{
  display:block;
  padding:10px 12px;
  border-radius:10px;
  color:#444;
  font-size:14px;
  transition:.3s;
}
.service-sidebar a:hover,
.service-sidebar a.active{
  background:rgba(106,103,63,.1);
  color:var(--primary);
  padding-left:18px;
}

/* CONTENT */
.service-content{
  background:#fff;
  border-radius:22px;
  padding:45px;
  box-shadow:0 30px 60px rgba(0,0,0,.1);
}
.service-content h3{
  color:var(--primary);
  font-weight:700;
  margin-top:40px;
}
.service-content h4{
  color:#333;
  font-weight:600;
  margin-top:30px;
}
.service-content p{
  color:#555;
  line-height:1.8;
}

.highlight-box{
  background:rgba(106,103,63,.08);
  border-left:4px solid var(--primary);
  padding:20px;
  border-radius:12px;
  margin:25px 0;
}

/*-------------------for mobile-----------------*/
/* ===== MOBILE FIX ===== */
@media (max-width: 991px) {

  /* Hide fixed services strip */
  .services-strip {
    display: none;
  }

  /* Reset body padding added for strip */
  body {
    padding-top: 78px;
  }

  /* Disable mega menu positioning */
  .mega-menu {
    position: static !important;
    max-height: none;
    overflow: visible;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
  }

  /* Stack mega columns */
  .mega-menu .row {
    flex-direction: column;
  }

  .mega-menu .col-md-3 {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,.08);
    padding: 12px 0;
  }
}

/*--------------------mobile end--------------------*/
@media (max-width: 991px) {

  .mega-menu h6 {
    cursor: pointer;
  }

  .mega-menu a {
    display: none;
  }

  .mega-col.active-col a {
    display: block;
  }
}

/*----------extra policed css-------*/
/* ===== DROPDOWN MENU (NOT MEGA) ===== */

.dropdown-menu {
  border-radius: 16px;
  border: none;
  padding: 12px 0;
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
  min-width: 260px;
}

.dropdown-menu a {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 22px;
  color: #444;
  transition: .3s;
}

.dropdown-menu a:hover {
  background: rgba(106,103,63,.08);
  color: var(--primary);
}

/* DESKTOP HOVER */
@media (min-width: 992px) {
  .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/*----------for dual menu-------------*/

.two-column-dropdown {
  width: 560px;
  border-radius: 12px;
}

.two-column-dropdown li {
  list-style: none;
}

.two-column-dropdown .dropdown-item {
  font-size: 12px;
  padding: 8px 12px;
  white-space: normal;
}

.two-column-dropdown .dropdown-item:hover {
  background-color: #f5f5f5;
}






