
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

/* NAVBAR */
/* NAVBAR – LOGO COMPATIBLE */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  /* Darker gradient for better visibility against hero images */
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  backdrop-filter: blur(4px);



}

.nav-container {
  max-width: 1200px;
  margin: auto;
  /* Removed top/bottom padding so the logo can touch the edges */
  padding: 0 22px; 
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px; /* This defines the exact height of your navbar */
}

/* LOGO FIX */
.nav-logo {
  
  border-radius: 50px;
  height: 100%; /* Makes the logo box as tall as the nav-container */
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 100%;    /* Fills the navbar height exactly */
  width: auto;      /* Keeps the logo's proportions correct */
  display: block;
  opacity: 1;       /* Better visibility */
  object-fit: contain; /* Ensures logo isn't stretched */
  /* Removed the background gradients from the image itself to keep it clean */
}

/* MENU BUTTON */
.menu-button {
  font-size: 30px; /* Slightly larger to match the taller navbar */
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 10px;
} 

/* DROPDOWN MENU */
.nav-menu {
  position: absolute;
  top: 75px;
  right: 20px;
  width: 220px;

  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);

  max-height: 0;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transition: all 0.4s ease;
}

.nav-menu.active {
  max-height: 500px;
  opacity: 1;
  pointer-events: auto;
}

.nav-menu ul {
  list-style: none;
}

.nav-menu ul li a {
  display: block;
  padding: 14px 20px;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  font-weight: 500;
}

.nav-menu ul li a:hover {
  background: #f2f2f2;
}




/* HERO */
.hero {
  height: 100vh;
  background: url("./images/hero.png") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 60, 0, 0.6);
}

.hero-content {
  position: relative;
  color: #fff;
  max-width: 700px;
  margin-left: 80px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 28px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  border: 2px solid #fff; 
}

.btn:hover {
  background: #fff;   /* solid grey */
  color: #000;           /* text becomes dark to stay readable */
  border-color: #fff;
}

.btn.outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn.outline:hover {
  background: #fff;   /* solid grey */
  color: #000;           /* text becomes dark to stay readable */
  border-color: #fff;
}





/* ABOUT OUR DESIGN PHILOSOPHY SECTION*/
.about {
  padding: 100px 80px;
  background: #e7e4e4fc;
}

.about-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.about-text {
  flex: 1;
}
.about-text h2 {
  font-size: 42px;
  color: #2f4f2f;
  margin-bottom: 20px;
}

.about-text p {
  max-width: 600px;
  line-height: 1.6;
  color: #313030;
}
.about-image-main {
  flex: 0 0 auto;
  width: 400px;
  height: 400px;
  overflow: hidden;
 
  position: relative;
}
.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
  transition: opacity 0.8s ease, transform 2.5s ease;
  opacity: 1;
  transform: scale(1);

}
.about-image img {
  width: 400px;
  height: 400px;
  object-fit: cover;
 
}
.dv-tabs {
  display: flex;
  gap: 30px;
  margin: 30px 0 20px;
}

.tab-btn {
  background: none;
  border: none;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  color: #777;
  padding-bottom: 6px;
  position: relative;
}

.tab-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #3c5a3c;
  transition: width 0.3s ease;
}

.tab-btn.active {
  color: #3c5a3c;
  font-weight: 600;
}

.tab-btn.active::after {
  width: 100%;
}
.dv-tab-content {
  max-width: 500px;
}

.tab-text {
  display: none;
  font-size: 15px;
  line-height: 1.7;
  color: #2d2a2a;
  animation: fadeUp 0.4s ease;
}

.tab-text.active {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* WHAT DO WE DO */
.what-we-do {
  padding: 20px 80px ;
  background: #fff;
}

.section-title {
  font-size: 64px;
  font-weight: 500;
  color: #3c5a3c;
  margin-bottom: 0px;
}

/* SLIDER WRAPPER */
.services-slider-wrapper {
  position: relative;
  padding-top: 40px; /* 🔥 SPACE FOR NUMBERS */
}

/* SLIDER GRID */
.services-grid {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;

  scrollbar-width: none;
  -ms-overflow-style: none;
}

.services-grid::-webkit-scrollbar {
  display: none;
}

/* SERVICE CARD */
.service-card {
  flex: 0 0 320px;
  min-height: 520px;
  padding: 30px 25px;
  border: 1.5px solid #000;
  background: #fff;
  position: relative;
  scroll-snap-align: start;
  cursor: pointer;

  margin-top: 40px; /* 🔥 PUSH CARD DOWN */

  transition: transform 0.35s ease,
              border-color 0.35s ease,
              box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #3c5a3c;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* NUMBER */
.service-number {
  position: absolute;
  top: -50px;       /* now SAFE */
  right: 20px;
  font-size: 80px;
  font-weight: bold;
  color: #000;
  background: #fff;
  padding: 0 10px;
  z-index: 5;
  transition: color 0.35s ease;
}

.service-card:hover .service-number {
  color: #3c5a3c;
}

/* TEXT */
.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  letter-spacing: 1px;
  transition: color 0.35s ease;
}

.service-card:hover h3 {
  color: #3c5a3c;
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #222;
  margin-bottom: 30px;
}

/* IMAGE */
.service-card img {
  width: 100%;
  max-height: 160px;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.service-card:hover img {
  opacity: 1;
  transform: translateY(-5px);
}

/* SLIDER BUTTONS */
.slider-btn {
  position: absolute;
  background: #3c5a3c;
  color: #fff;
  border: none;
  font-size: 20px;
  padding: 6px 14px;
  cursor: pointer;
  z-index: 10;
}

.slider-btn.left {
  left: -60px;
}

.slider-btn.right {
  right: -60px;
}


/* OUR APPROACH */
.our-approach {
  padding: 40px 80px;
  background: #eae5e5;
}

.section-heading {
  text-align: center;
  font-size: 40px;
  color: #3c5a3c;
  margin-bottom: 60px;
}

.approach-wrapper {
  max-width: 850px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

.approach-image img {
  width: 420px;
  border-radius: 20px;
}

.approach-points {
  flex: 1;
}

.point {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
  align-items: flex-start;
}

.icon-box img {
 width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50px;
  background: #eae5e5 !important;

}

.icon-box {
 flex-shrink: 0;
  width: 80px;       /* Controlled size */
  height: 80px;
  margin-top: 2px;
  
  display: flex;
  align-items: center;
  
}
.point h4 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #3c5a3c; /* Heading color matches icon color */
  text-align: center;
}

.point p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  text-align:center;
}







/* OUR SHOWCASE*/

/* UPDATED SHOWCASE SLIDER */
.showcase {
  padding: 60px 0;
  overflow: hidden; 
  background: #fff;
}

.showcase-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.showcase-track {
  display: flex;
  /* (Image Width + Gap) * Total Images */
  width: calc((400px + 20px) * 12); 
  gap: 20px;
  animation: scroll 25s linear infinite;
}

/* Pause on hover so users can look at a project */
.showcase-track:hover {
  animation-play-state: paused;
}

.showcase-track img {
  width: 400px; 
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.showcase-track img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* THE INFINITE LOOP MATH */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Moves by exactly half the track: (Width + Gap) * 6 original images */
    transform: translateX(calc(-420px * 6));
  }
}






/* STATS BAR */
.stats {
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  gap: 120px;
  padding: 40px 0;
}

.stat h3 {
  font-size: 36px;
}

.stat p {
  font-size: 14px;
  opacity: 0.8;
}






/* GET IN TOUCH CONTACT SECTION */
.social-links img {
  width: 40px;          /* increase size here */
  height: 40px;
  object-fit:contain;
  vertical-align: middle;
}

.social-links span {
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
}

.social-links img,
.social-links i {
  transition: transform 0.3s ease;
}

.social-links img:hover,
.social-links i:hover {
  transform: scale(1.15);
}


.contact-section {
  padding: 90px 100px;
  background: #fff;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.contact-left {
  width: 45%;
}

.contact-left h2 {
  font-size: 42px;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.contact-left p {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
}

.social-links span {
  margin-right: 25px;
  font-size: 14px;
  cursor: pointer;
  
}

/* FORM CARD */
.contact-form-card {
  width: 45%;
  background: #f6f6f6;
  padding: 40px;
  border-radius: 25px;
}

.row {
  display: flex;
  gap: 25px;
}

.field {
  width: 100%;
  margin-bottom: 25px;
}

.field label {
  font-size: 13px;
  display: block;
  margin-bottom: 5px;
}

.field input,
.field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #000;
  background: transparent;
  padding: 6px 0;
  outline: none;
  resize: none;
}

.contact-btn {
  margin-top: 10px;
  background: #2f4f3e;
  color: #fff;
  border: none;
  padding: 12px 45px;
  border-radius: 25px;
  cursor: pointer;
}






/* FOOTER */
.footer {
  background: #000;
  padding: 50px 100px;
  color: #fff;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}
.footer-col.brand img {
  height: 100px;
  width: 300px;
  object-fit: contain;

  background: transparent;
  padding: 0;
  box-shadow: none;
}

.footer-col h4 {
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: #ccc;
  font-size: 14px;
  margin-bottom: 10px;
  text-decoration: none;
}

.footer-col.brand p {
  font-size: 14px;
  line-height: 1.7;
  margin: 20px 0;
}

.footer-social span {
  display: inline-block;
  align-items: center;
  margin-right: 15px;
  font-size: 14px;
  cursor: pointer;
}

.subscribe input {
  width: 100%;
  padding: 10px;
  border-radius: 20px;
  border: none;
  margin-bottom: 12px;
}

.subscribe button {
  width: 100%;
  background: #4f7c3a;
  border: none;
  padding: 10px;
  color: #fff;
  border-radius: 20px;
}
.footer-social {
  display: flex;
  align-items: center;
}

.footer-social a {
  display: inline-block;   /* override block */
}
.footer-social img {
  width: 40px !important; 
  height: 40px !important;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-social img:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.6));
}





/* URBANESTT INTERIOR $ DEVELOPER */
.about-section {
  padding: 45px 100px;
  background: #fff;
}

.about-label {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-left h2 {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 20px;
}

.about-desc {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #333;
}

/* Tabs */
.about-tabs {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}

.about-tab-content {
  display: none;
  font-size: 14px;
  line-height: 1.8;
}

.about-tab-content.active {
  display: block;
}

.about-tab-btn {
  background: none;
  border: none;
  font-weight: 600;
  cursor: pointer;
  padding-bottom: 6px;
}

.about-tab-btn.active {
  border-bottom: 2px solid #000;
}

.about-tabs {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}

.tab-btn {
  background: none;
  border: none;
  font-weight: 600;
  cursor: pointer;
  padding-bottom: 5px;
}

.tab-btn.active {
  border-bottom: 2px solid #000;
}

/* Content */
.tab-content {
  display: none;
  font-size: 14px;
  line-height: 1.8;
}

.tab-content.active {
  display: block;
}

/* Image */
.about-right img {
  width: 100%;
  border-radius: 12px;
}


.about-banner {
  background: #eae5e5;
  padding-bottom: 80px;
}

.about-heading {
  text-align: center;
  padding: 60px 0 40px;
}

.about-heading h2 {
  font-size: 48px;
  font-family: serif;
  color: #5f7f4a;
  font-weight: 400;
}

/* use different class instead of .about-image to avoid override */
.about-banner-image {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.about-banner-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 0;
}

.about-banner-image h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 90px;
  color: #ffffff;
  font-family: serif;
  font-weight: 400;
  letter-spacing: 2px;
}





/* WHY CHOOSE URBANESTT */
.why-choose {
  padding: 50px 100px;
  background: rgb(209, 207, 207);
}

.why-choose h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.choose-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.choose-card {
  background: #6f8f55;
  color: #fff;
  padding: 25px;
  border-radius: 16px;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.choose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.choose-card h4 {
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}

.choose-card p {
  position: relative;
  z-index: 2;
}

/* HOVER EFFECTS */
.choose-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(111, 143, 85, 0.4),
    0 0 0 1px rgba(255,255,255,0.2);
  background: #7aa05e;  /* slightly lighter green */
}

.choose-card:hover::before {
  opacity: 1;
}

.choose-card:hover h4 {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}






/* STATS */
.stats {
  background: #000;
  color: #fff;
  display: flex;
  justify-content: space-around;
  padding: 40px 0;
}

.stat h3 {
  font-size: 60px;
}

.stat p {
  font-size: 40px;
}

.tab-section {
  padding: 80px 100px;
  background: #fff;
}

.tabs {
  text-align: center;
  margin-bottom: 50px;
}

.tabs span {
  margin: 0 20px;
  font-size: 20px;
  cursor: pointer;
  padding-bottom: 6px;
}

.tabs .active {
  border-bottom: 2px solid #1f3d2b;
}

.tab-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.tab-card {
  height: 380px;
  background: #5f7f4a;
  border-radius: 30px;
}

.stats {
  background: #000;
  color: #fff;
  display: flex;
  justify-content: space-around;
  padding: 60px 0;
  text-align: center;
}

.stats h2 {
  font-size: 48px;
  margin-bottom: 10px;
}

.stats p {
  font-size: 14px;
}

/*last contact cards*/

.contact-cards {
  padding: 80px 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  background: #f2eeee;
}

.contact-card {
  background: #5f7f4a;
  color: #fff;
  border-radius: 30px;
  padding: 40px 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;        /* image blends with green bg */
  transition: opacity 0.4s ease;
  z-index: 1;
}

.contact-card-content {
  position: relative;
  z-index: 2;          /* text stays on top */
}

.contact-card h3 {
  margin-bottom: 20px;
  font-size: 20px;
  position: relative;
  z-index: 3;
}
.contact-card p,
.contact-card a {
  position: relative;
  z-index: 3;
}

.contact-card a {
  color: #fff;
  text-decoration: underline;
}

/* HOVER EFFECTS */
.contact-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(95, 127, 74, 0.4);
}

.contact-card:hover::before {
  opacity: 0.6;        /* image more visible on hover */
}


/* ABOUT US PAGE */

.about-banner {
  background: #ffffff;
  padding-top: 100px;   /* ✅ space below navbar */
  padding-bottom: 0px;
}

.about-heading {
  text-align: center;
  padding: 60px 0 40px;
}

.about-heading h2 {
  font-size: 100px;
  font-family: serif;
  color: #557d3c;
  font-weight: 400;
}

.about-image {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden; /* ✅ required for overlay */
}

/* ✅ subtle dark overlay for better text visibility */
.about-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.about-image img {
  width: 100%;
  height: 500px;              /* ✅ increased image size */
  object-fit: cover;
  border-radius: 0;
  position: relative;
  z-index: 0;
}

.about-image h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  font-size: 110px;           /* ✅ bigger text */
  font-family: "Playfair Display", serif;
  font-weight: 600;           /* ✅ bolder */
  letter-spacing: 3px;
  text-transform: uppercase;

  color: #ffffff;
  text-shadow: 0 8px 25px rgba(0, 0, 0, 0.45);
  z-index: 2;
}


/* blog page sloder*/

.category-section {
  padding: 50px 60px 0px;
  background: #fff;
}

.tabs {
  text-align: center;
  margin-bottom: 50px;
}

.tabs .tab {
  background: none;
  border: none;
  font-size: 22px;
  margin: 0 25px;
  cursor: pointer;
  padding-bottom: 8px;
  color: #222;
  position: relative;
}

.tabs .tab.active {
  font-weight: 500;
}

.tabs .tab.active::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #123a6f;
  position: absolute;
  left: 0;
  bottom: 0;
}

.slider {
  position: relative;
  overflow: visible;
}

.cards {
  display: none;
  padding-top: 20px;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  animation: slide 0.5s ease;
}

.cards.active {
  display: grid;
}

.card {
  height: 360px;
  background: #4f6f3a;
  border-radius: 35px;
  cursor: pointer;
  transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease,
    filter 0.35s ease;
}

.card:hover {
  transform: translateY(-18px) scale(1.04);
  box-shadow: 
    0 25px 40px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  filter: brightness(1.08);
}

.card {
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255, 255, 255, 0.25),
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.card:hover::after {
  transform: translateX(100%);
}

@keyframes slide {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.card-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent 0%, rgba(0,0,0,0.9) 50%);
  color: white;
  padding: 30px 25px 25px;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.card-overlay h4 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 1px;
}

.card-overlay p {
  font-size: 14px;
  opacity: 0.95;
  line-height: 1.5;
}

.card:hover .card-image img {
  transform: scale(1.08);
  filter: brightness(1.15);
}

.card:hover .card-overlay {
  transform: translateY(0);
}






/* ABOUT US Urbanestt Interior & Developer */
.about-right {
  overflow: visible;
}

.about-right img {
  width: 100%;
  border-radius: 12px;
  transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease;
  will-change: transform;
}

.about-right img:hover {
  transform: translateY(-14px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.25);
}

/* INDEX.HTML OUR APPROACH */
.approach-image {
  overflow: visible;
}

.approach-image img {
  width: 100%;
  border-radius: 20px;
  cursor: pointer;
  position: relative;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    filter 0.4s ease;
}

.approach-image img:hover {
  transform: translateY(-16px) scale(1.03);
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.3);
  filter: brightness(1.08);
}

/* INDEX.HTML ABOUT OUR DESIGN PHILOSOPHY */
.about-image-main {
  overflow: visible;
}

.about-image-main img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    filter 0.4s ease;
}

.about-image-main img:hover {
  transform: translateY(-18px) scale(1.05);
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.35);
  filter: brightness(1.08);
}

/* SHINE EFFECT FOR ABOUT IMAGE */
.about-image::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255, 255, 255, 0.35),
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 0.8s ease;
  pointer-events: none;
  z-index: 2; /* ABOVE overlay, BELOW text */
}

/* SHINE ON HOVER */
.about-image:hover::after {
  transform: translateX(100%);
}



/* services page css */

.service-section {
  padding: 50px 80px;
  background: #fff;
}

/* Tabs */
.service-tabs {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 70px;
}

.service-tab {
  background: none;
  border: none;
  font-size: 20px;
  font-family: serif;
  cursor: pointer;
  color: #333;
  position: relative;
  padding-bottom: 6px;
}

.service-tab.active {
  color: #5b7f3f;
}

.service-tab.active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #5b7f3f;
  left: 0;
  bottom: 0;
}

/* Layout */
.service-content {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* Image */
.service-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  transition: all 0.4s ease;
}

/* Text */
.service-text h2 {
  font-size: 42px;
  font-family: serif;
  color: #5b7f3f;
  margin-bottom: 20px;
}

.service-text p {
  font-size: 16px;
  line-height: 1.9;
  color: #333;
}

/* Smooth fade animation */
.fade {
  opacity: 0;
  transform: translateY(15px);
}



/*all rights reserved*/

.allRights{
      text-align: center;
      font-size: 14px;
      color: #777;
      margin: 10px 0 20px;
    }