/* ====== General ====== */

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    box-shadow: border-box;
}

html {
    scroll-behavior: smooth;
}

.text-white {
    color: white !important;
}

/* contact modal */

.contact-item.hover-effect {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.contact-item.hover-effect:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}




/* ====== Page Header ====== */
.page-header {
    margin-top: 60px;
    height: 180px;
    display: flex;
    align-items: center;
    background: #111;
    color: #fff;
}
.page-header h2 {
   font-size: 2rem;
    font-weight: 700;
}

.page-header nav {
    font-size: 0.95rem;
}
.page-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.page-header .breadcrumb {
    background: transparent;
}
.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: #bbb;
}

/* ====== Carousel ====== */
.slide-img-hgt {
    height: 600px;
    object-fit: cover;
}
.carousel .content-changing {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: 90%;
}
.carousel .content-changing h5,
.carousel .content-changing h1 {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}
.carousel .content-changing h1 {
    font-size: 3rem;
    font-weight: 700;
}
.carousel .content-changing h5 {
    font-size: 1.5rem;
    font-weight: 500;
}

/* Responsive carousel text */
@media (max-width: 768px) {
    .slide-img-hgt { height: 300px; }
    .carousel .content-changing h1 { font-size: 1.8rem; }
    .carousel .content-changing h5 { font-size: 1.2rem; }
}
@media (min-width: 768px) and (max-width: 991px) {
    .carousel .content-changing h1 { font-size: 2.2rem; }
}
@media (min-width: 992px) {
    .carousel .content-changing h1 { font-size: 3rem; }
}

/* ====== Dream Section ====== */
.dream-div-for-lap {
    display: flex;
    align-items: center;
    padding: 150px 0 50px;
    background-color: rgb(243, 243, 243);
}
.dream-div-for-lap h1 {
    font-size: 2.5rem;
    font-weight: 700;
}
.dream-div-for-lap p {
    font-size: 1rem;
    margin-top: 20px;
}
.dream-div-for-mobiles img {
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.dream-div-for-mobiles h1 {
    font-size: 1.8rem;
}
.dream-div-for-mobiles p {
    font-size: 0.95rem;
    margin-top: 15px;
}

/* ====== Services Section ====== */
.service-card-1 {
    border-radius: 15px;
    overflow: hidden;
    margin: auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card-1:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
}
.service-card-1 .card-img-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    transition: background-color 0.3s;
}
.service-card-1:hover .card-img-overlay {
    background-color: rgba(0, 0, 0, 0.7);
}
.service-card-1 h2 {
    font-size: 1.1rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.service-card-1:hover h2 {
    transform: scale(1.05);
    opacity: 1;
}

/* ====== Gallery Section ====== */
.gallery .card {
    position: relative;
}
.gallery .card img {
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.gallery .card img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
}
.gallery .card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery .card:hover::after {
    opacity: 1;
}

/* ====== General ====== */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* ====== Page Header ====== */
.page-header {
    position: relative;
}
.page-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
}
.breadcrumb a {
    color: #fff;
    transition: color 0.3s;
}
.breadcrumb a:hover {
    color: rgb(213,159,79);
}

/* ====== About Section ====== */
.about h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.about p {
    font-size: 1rem;
    color: #444;
}
.about img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ====== Philosophy Section ====== */
.philosophy h3 {
    font-size: 1.8rem;
    font-weight: 600;
}
.philosophy p {
    font-size: 1rem;
    color: #555;
}

/* ====== Business & Brochure Section ====== */
.business-brochure h2 {
    font-size: 1.9rem;
    font-weight: 700;
}
.business-brochure p {
    font-size: 1rem;
    color: #444;
}
.business-brochure .btn-outline-warning {
    color: rgb(213,159,79);
    border-color: rgb(213,159,79);
    font-weight: 500;
    transition: all 0.3s ease;
}
.business-brochure .btn-outline-warning:hover {
    background-color: rgb(213,159,79);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}

/* ====== Office & Map Section ====== */
.office-map h2 {
    font-size: 1.8rem;
    font-weight: 700;
}
.office-map p {
    font-size: 1rem;
    color: #444;
}
.map-responsive {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
}
.map-responsive iframe {
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border:0;
}

/* ====== Scroll Animation ====== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}
.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

/* ====== Section Divider ====== */
.section-divider {
    height: 30px;
    background-color: #f0eee4;
}
.wave-divider svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* ====== Responsive ====== */
@media (max-width: 991px) {
    .page-header h2 {
        font-size: 1.8rem;
    }
    .about h2, .philosophy h3, .business-brochure h2, .office-map h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 767px) {
    .page-header h2 {
        font-size: 1.5rem;
    }
    .about h2, .philosophy h3, .business-brochure h2, .office-map h2 {
        font-size: 1.4rem;
    }
}


/* ====== Buttons ====== */
.btn-outline-warning {
    color: rgb(213, 159, 79);
    border-color: rgb(213, 159, 79);
    font-weight: 500;
    transition: all 0.3s ease;
}
.btn-outline-warning:hover {
    background-color: rgb(213, 159, 79);
    color: white;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* ====== Animations ====== */
.changecontent {
    display: inline-block;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    font-weight: 700;
    color: rgb(213, 159, 79);
}
.changecontent.show {
    opacity: 1;
}
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}
.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

/* ====== Modals ====== */
.modal-content {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}
.modal-header h1 {
    font-size: 1.5rem;
    font-weight: 600;
}
.modal-body a {
    color: rgb(213, 159, 79);
    text-decoration: none;
    transition: color 0.3s;
}
.modal-body a:hover {
    color: rgb(180, 130, 60);
}

/* ====== Footer ====== */
#footer {
    padding: 50px 0;
    text-align: center;
    background-color: rgb(243, 243, 243);
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
}
#footer h2 {
    font-weight: 700;
    color: rgb(50,50,50);
    margin-top: 10px;
}
#footer p {
    margin-top: 15px;
    font-size: 0.9rem;
    color: rgb(80,80,80);
}
#footer .social-links a {
    margin: 0 10px;
    font-size: 1.5rem;
    color: rgb(213,159,79);
    transition: transform 0.3s, color 0.3s;
}
#footer .social-links a:hover {
    color: rgb(180,130,60);
    transform: translateY(-3px);
}

/* ====== Navbar ====== */
.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: rgb(50,50,50);
    transition: color 0.3s;
}
.navbar-brand span {
    color: rgb(213,159,79);
}
.navbar-nav .nav-link {
    color: rgb(50,50,50);
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s, transform 0.3s;
}
.navbar-nav .nav-link:hover {
    color: rgb(213,159,79);
    transform: translateY(-2px);
}
.navbar-nav .nav-link.active {
    color: rgb(213,159,79);
    border-bottom: 2px solid rgb(213,159,79);
}

.navbar {
    transition: background-color 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
    background-color: rgba(255,255,255,0.95);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}


/* ==============================
   Global Reset & Base Styles
============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", Arial, sans-serif;
    line-height: 1.6;
    background-color: #fff;
    color: #333;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
    color: #f0a500; /* brand accent */
}


/* ==============================
   Section Basics
============================== */
section {
    padding: 60px 0;
}
.bg-dark {
    background-color: #111 !important;
}
.bg-secondary {
    background-color: #444 !important;
}
.text-light {
    color: #fff !important;
}
.text-secondary {
    color: #bbb !important;
}

/* ==============================
   About Section
============================== */
.about img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.about h2 {
    font-weight: 600;
    margin-bottom: 15px;
}

/* ==============================
   Brochure Section
============================== */
.business-brochure h2 {
    font-weight: 600;
}
.business-brochure p {
    font-size: 1.1rem;
    color: #555;
}
.business-brochure .btn {
    border-radius: 30px;
    padding: 10px 25px;
    transition: all 0.3s ease-in-out;
}

/* ==============================
   Office Address
============================== */
iframe {
    border-radius: 8px;
    width: 100%;
    height: 350px;
}

/* ==============================
   Animations
============================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==============================
   Footer
============================== */
footer {
    background: #222;
    color: #aaa;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}
footer a {
    color: #f0a500;
}

/* ==============================
   Responsive
============================== */
@media (max-width: 768px) {
    .about, .business-brochure, .office-address {
        text-align: center;
    }
    .business-brochure .btn {
        margin-top: 15px;
    }
}


/* Full height images */
.hero-img {
    height: 100vh;
    object-fit: cover;
}

/* Dark overlay */
.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    z-index: 1;
}

/* Caption styling */
.carousel-caption {
    z-index: 2;
    text-align: center;
    padding: 0 15px;
}

.carousel-caption h1 {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive font size */
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
}

.carousel-caption h5 {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: #d59f4f; /* brand color accent */
    margin-bottom: 15px;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.6);
}

/* Make indicators more modern */
.carousel-indicators [data-bs-target] {
    background-color: #d59f4f;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}


.services-section {
    background-color: #fdf8f0; /* Soft light background matching brand */
  }

  .service-card {
    background: white;
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  }

  .service-card i {
    transition: all 0.3s ease;
  }

  .service-card:hover i {
    transform: scale(1.2);
    color: #b07d3c; /* Slightly darker brand accent on hover */
  }

  .service-card h5 {
    margin-top: 10px;
    color: #333;
  }

  .service-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
  }

  /* .view-more {
    display: inline-block;
    font-weight: 600;
    color: #d59f4f;
    transition: all 0.3s ease;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
  } */

  .service-card:hover .view-more {
    color: #b07d3c;
    transform: translateX(-50%) translateY(-3px);
  }

  @media (max-width: 767px) {
    .service-card i { font-size: 2.5rem; }
    /* .view-more { font-size: 0.9rem; } */
  }

  /* dream section */

  
.dream-section {
    background-color: #f3f3f3;
  }

  .dream-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .dream-text {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  .dream-btn {
    transition: all 0.3s ease;
  }

  .dream-btn:hover {
    background-color: #d59f4f;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  }

  .dream-img {
    max-width: 100%;
    height: auto;
    transition: transform 0.5s ease;
  }

  .dream-img.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
  }

  .dream-img.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
  }

  @media (max-width: 767px) {
    .dream-title {
      font-size: 1.8rem;
    }
    .dream-text {
      font-size: 1rem;
    }
  }

@media screen and (min-width:200px) and (max-width: 991px) {
    .about-contact-btn{
        display: flex;
        justify-content: center;
    }
    
}

@media screen and (min-width: 992px) {
    .about-contact-btn{
        display: none;
    }
    
}


/* service page */
/* Dedicated styling for full Services page cards */
.service-card-lg {
  border: none;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-lg:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.service-card-lg i {
  color: #d4a017; /* Gold accent */
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .service-card-lg {
    padding: 1.5rem 1rem;
  }
  .service-card-lg h5 {
    font-size: 1.1rem;
  }
  .service-card-lg p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .service-card-lg {
    text-align: center;
  }
  .service-card-lg i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
}


/* CTA Section Styling */
.cta-section h2 {
  font-size: 2.2rem;
}

.cta-section p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .cta-section h2 {
    font-size: 1.8rem;
  }
  .cta-section p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .cta-section h2 {
    font-size: 1.5rem;
  }
  .cta-section p {
    font-size: 0.95rem;
  }
  .cta-section .btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }
}

/* Extra responsiveness for service cards */
@media (max-width: 768px) {
  .services-page .row {
    row-gap: 1.5rem; /* spacing between rows */
  }
  .services-page .service-card {
    padding: 1.5rem 1rem;
  }
  .services-page .service-card h5 {
    font-size: 1.1rem;
  }
  .services-page .service-card p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .services-page .service-card {
    text-align: center;
  }
  .services-page .service-card i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
}

/* Services Page */
.services-page {
  padding: 80px 0;
  background-color: #111; /* dark background */
  color: black;
  text-align: center;
}

.services-page .section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #d4a017; /* gold */
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-box {
  background: #1a1a1a;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.service-box h3 {
  color: #d4a017;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.service-box p {
  color: #797979;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Hover effect */
.service-box:hover {
  transform: translateY(-8px);
  border: 1px solid #d4a017;
  box-shadow: 0 6px 18px rgba(212,160,23,0.3);
}


.service-icon {
  font-size: 2.5rem;
  color: #d4a017;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.service-box:hover h5 {
  color: #d4a017;
}


/* Services Intro */
.services-intro {

  color: #fff;
  padding: 120px 20px;
  text-align: center;
  border-bottom: 3px solid #d4a017;
}

.services-intro .intro-title {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #d4a017;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.services-intro .intro-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.9;
  color: #afafaf;
}


/* Process Section */
.process-section {
  background: #111;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  border-top: 3px solid #d4a017;
  border-bottom: 3px solid #d4a017;
}

.process-section .section-title {
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #d4a017;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.process-step {
  background: #1a1a1a;
  padding: 30px 20px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 380px;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.step-icon {
  font-size: 2.5rem;
  color: #d4a017;
  margin-bottom: 15px;
}

/* Process Section */
.process-section {
  background: #111;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  border-top: 3px solid #d4a017;
  border-bottom: 3px solid #d4a017;
}

.process-section .section-title {
  font-size: 2.2rem;
  margin-bottom: 60px;
  color: #d4a017;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Timeline layout for large screens */
.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  flex-wrap: wrap;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 55px;
  left: 50px;
  right: 50px;
  height: 3px;
  background: #d4a017;
  z-index: 1;
}

.process-step {
  background: #1a1a1a;
  padding: 40px 20px 30px;
  border-radius: 12px;
  width: 22%;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}



/* Step Number Circle */
.step-circle {
  width: 50px;
  height: 50px;
  background: #d4a017;
  color: #111;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  z-index: 3;
  position: relative;
}

/* Step Icon */
.step-icon {
  font-size: 2.5rem;
  color: #d4a017;
  margin-bottom: 15px;
}

/* Responsive fallback: stacked grid on mobile */
@media (max-width: 900px) {
  .process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .process-steps::before {
    display: none;
  }
  .process-step {
    width: 100%;
  }
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================
   About Our Services Section (Light Theme)
============================== */
.services-about.light-theme {
  background: #f9f9f9;
  color: #333;
  padding: 80px 20px;
  border-top: 3px solid #d4a017;
  border-bottom: 3px solid #d4a017;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.services-about.light-theme.visible {
  opacity: 1;
  transform: translateY(0);
}

.services-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.services-about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.services-about-text h2 {
  font-size: 2rem;
  color: #d4a017;
  margin-bottom: 20px;
  text-align: left;
}

.services-about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
}

/* Gold divider under heading */
.services-about.light-theme .section-divider {
  width: 80px;
  height: 3px;
  background: #d4a017;
  margin: 10px 0 25px;
}

/* ==============================
   Mobile Responsive
============================== */
@media (max-width: 900px) {
  .services-about-grid {
    grid-template-columns: 1fr;
  }
  .services-about-image {
    order: -1;
  }
  .services-about-text h2,
  .services-about-text p {
    text-align: center;
  }
  .services-about-text p {
    line-height: 1.9;
  }
  .services-about-image img {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
  }

  .process-steps {
    flex-direction: column;
    gap: 25px;
  }
  .process-step {
    flex: 1 1 100%;
  }
}

/* Tagline under heading */
.services-about-text .services-tagline {
  font-size: 1.1rem;
  color: #b07d3c; /* subtle gold accent */
  margin-bottom: 20px;
  font-weight: 500;
}

.process-tagline {
  font-size: 1.05rem;
  color: #b07d3c; /* subtle gold accent */
  margin-bottom: 30px;
  font-weight: 500;
  text-align: left;
}

@media (max-width: 900px) {
  .process-tagline {
    text-align: center;
  }
}





/* core service section in home page */


/* Section divider below heading */
.services-section .section-divider {
  border-radius: 2px;
}

/* Card hover effect (subtle) */
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
}

/* Icon scaling on scroll */
.animate-on-scroll .service-icon i {
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.5s ease;
}

.animate-on-scroll.visible .service-icon i {
  transform: scale(1);
  opacity: 1;
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .service-card {
    padding: 20px 15px;
  }
  .services-section h2 {
    font-size: 1.8rem;
  }
}


.text-gold{
    color: #d4a017 !important;
}



/* gallery section in home page */

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(51, 51, 51, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}