* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f5dc; /* Beige background */
}

/* --- Slideshow Banner (Updated) --- */
.slideshow-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}

.slide {
  display: none;
  position: relative; /* FIXED: changed from absolute */
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.fade {
  animation: fadeEffect 1s ease-in-out;
}

@keyframes fadeEffect {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Rest of your CSS remains untouched --- */

.slideshow-text-box {
  position: absolute;
  bottom: 50px;
  left: 60px;
  z-index: 15;
  background-color: rgba(0, 0, 0, 0.6); /* black transparent */
  color: white;
  padding: 25px 30px;
  border-radius: 10px;
  max-width: 500px;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

.slideshow-text-box h1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.slideshow-text-box p {
  font-size: 16px;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
}

.site-header {
  background-color: #1E2308;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  color: white;
}

.logo {
  font-size: 28px;
  font-weight: bold;
}

/* ... (entire rest of your CSS stays the same from your original code) ... */



.site-header nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.site-header nav a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.3s;
}

.site-header nav a:hover,
.site-header nav .active {
  background-color: white;
  color: black;
}



/* Gallery Page Styling */
.gallery-page {
  padding: 100px 40px 40px; /* 100px top padding to avoid header overlap */
  text-align: center;
  background-color: #fefefe;
}

.gallery-page h2 {
  font-size: 36px;
  margin-bottom: 10px;
  font-family: 'Georgia', serif;
  color: #333;
}

.gallery-page p {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

/* Section Titles */
.gallery-section {
  margin-bottom: 60px;
}

.gallery-section h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #444;
  border-bottom: 2px solid #ddd;
  display: inline-block;
  padding-bottom: 8px;
}

/* Grid Layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Banner */
.about-banner {
  position: relative;
  height: 50vh;
  background: url('images/about-hero.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-banner .overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-banner h1 {
  color: #fff;
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

/* About Section */
.about-section {
  padding: 60px 20px;
  background-color: #fff;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  align-items: center;
  gap: 40px;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}
/* Full Screen Banner */
.hero-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.3rem;
  font-weight: 300;
}
/* Contact Banner */
.contact-banner {
  background: url('images/contact-banner.jpg') center/cover no-repeat;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-banner h1 {
  color: #fff;
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

/* Contact Section */
.contact-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.contact-container {
  max-width: 800px;
  margin: auto;
  display: flex;
  justify-content: center;
}

.contact-form {
  width: 100%;
  max-width: 600px;
  text-align: left;
}

.contact-form h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form form button {
  padding: 12px 30px;
  background-color: olive;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form form button:hover {
  background-color: #556b2f;
}

/* Contact Info Centered Below */
.contact-info {
  margin-top: 60px;
  text-align: center;
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #444;
}
/* Catalogue Hero Banner */
.catalogue-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  background: url('images/catalogue-hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalogue-hero .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalogue-hero .hero-text {
  color: white;
  text-align: center;
  z-index: 1;
}

.catalogue-hero .hero-text h1 {
  font-size: 48px;
  font-family: 'Playfair Display', serif;
}

.catalogue-hero .hero-text p {
  font-size: 20px;
}

/* Catalogue Section */
.catalogue-section {
  padding: 60px 40px;
  background-color: #fff;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-family: 'Playfair Display', serif;
  color: #4A4A2F;
  margin-bottom: 40px;
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.catalogue-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.catalogue-item:hover {
  transform: translateY(-5px);
}

.catalogue-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.catalogue-item h3 {
  padding: 15px;
  font-size: 20px;
  color: #333;
  font-weight: 500;
  text-align: center;
}
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fonts and body */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

/* Section 1 */
.intro-section {
  background-color: #f8f8f4;
}
.intro-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}
.intro-section p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #555;
}
.image-gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.image-gallery img {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.image-gallery img:hover {
  transform: scale(1.05);
}

/* Section 2 */
.features-section {
  background-color: #fff;
}
.features-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 40px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.feature {
  padding: 20px;
}
.feature i {
  font-size: 40px;
  color: #708238;
  margin-bottom: 15px;
}
.feature h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.feature p {
  font-size: 0.95rem;
  color: #666;
}

/* CTA Button */
.cta-button {
  text-align: center;
  padding: 40px 0;
}
.cta-button a {
  text-decoration: none;
  background-color: #708238;
  color: #fff;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 25px;
  transition: background-color 0.3s ease;
}
.cta-button a:hover {
  background-color: #556b2f;
}
/* Floating Contact Container */
.floating-contact {
  position: absolute;
  top: 100px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 20;
  gap: 20px;
}

/* Icon box styling (olive background) */
.icon-box {
  background-color: #3c3b26; /* olive tone like Zen */
  color: white;
  padding: 15px;
  border-radius: 8px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  transition: transform 0.3s ease;
}

.icon-box:hover {
  transform: scale(1.1);
}

/* Tooltip Styling */
.tooltip {
  position: relative;
  cursor: pointer;
}

.tooltip-text {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 50%;
  right: 130%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 5px;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}
/* Floating Icon on Left Side */
.contact-popup-icon {
  position: fixed;
  top: 180px;
  left: 20px;
  background-color: #3c3b26; /* olive */
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 1000;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.contact-popup-icon:hover {
  transform: scale(1.1);
}

/* Popup Form Container (Hidden by default) */
.contact-form-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}

/* Form Box Styling */
.contact-form-box {
  background: white;
  padding: 30px;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: #333;
  cursor: pointer;
}

/* Form Fields */
.contact-form-box h2 {
  margin-bottom: 20px;
  color: #3c3b26;
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #999;
  border-radius: 5px;
  font-size: 14px;
}

.contact-form-box button {
  background-color: #3c3b26;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 15px;
}

.contact-form-box button:hover {
  background-color: #2d2c1d;
}
.slideshow-text {
  position: absolute;
  bottom: 50px;
  left: 60px;
  z-index: 15;
  color: white;
  max-width: 500px;
  font-family: 'Arial', sans-serif;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.slideshow-text h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.slideshow-text p {
  font-size: 18px;
  line-height: 1.5;
}
.slideshow-text-box {
  position: absolute;
  bottom: 50px;
  left: 60px;
  z-index: 15;
  background-color: rgba(0, 0, 0, 0.6); /* black transparent */
  color: white;
  padding: 25px 30px;
  border-radius: 10px;
  max-width: 500px;
  font-family: 'Arial', sans-serif;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

.slideshow-text-box h1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.slideshow-text-box p {
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .slideshow-text-box {
    left: 20px;
    right: 20px;
    bottom: 30px;
    max-width: none;
    padding: 20px;
  }

  .slideshow-text-box h1 {
    font-size: 24px;
  }

  .slideshow-text-box p {
    font-size: 14px;
  }
}
.about-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.about-heading {
  font-size: 32px;
  font-weight: bold;
  color: olive;
  margin-bottom: 20px;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.divider .line {
  width: 80px;
  height: 2px;
  background-color: #aaa;
}

.divider .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #aaa;
}

.divider .dot.olive {
  background-color: olive;
}

.about-text {
  font-size: 18px;
  color: #333;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.6;
}
.services-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.services-heading {
  font-size: 32px;
  font-weight: bold;
  color: olive;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-content: center;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-card .overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  width: 100%;
  color: #fff;
  padding: 12px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}

.view-all-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 25px;
  background-color: olive;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.view-all-btn:hover {
  background-color: #556b2f;
}
/* Solutions Section */
.solutions-section {
  background-color: #fff;
  padding: 60px 20px;
}

.solutions-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  gap: 40px;
}

.solutions-image {
  flex: 1 1 45%;
}

.solutions-image img {
  width: 100%;
  border: 3px solid #ddd;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.solutions-content {
  flex: 1 1 50%;
}

.solutions-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.4;
}

.solutions-content h2 span {
 indoor-living
  color: white;
  padding: 4px 8px;
  display: inline-block;
}

.solutions-content p {
  color: #444;
  margin-bottom: 15px;
  line-height: 1.6;
}

.solutions-content ul {
  list-style: none;
  padding-left: 0;
}

.solutions-content ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: #333;
}

.solutions-content ul li::before {
  content: '✔';
  color: #c7a962;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}
.galaxy-portfolio {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.galaxy-portfolio h2 {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 60px;
  letter-spacing: 2px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}

.portfolio-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.portfolio-item img:hover {
  transform: scale(1.02);
}

.category-title {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 600;
  color: #c7a962; /* Olive color */
}
.site-footer {
  background-color: #3c3b26; /* Olive tone */
  color: white;
  padding: 60px 20px 30px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1300px;
  margin: auto;
  gap: 40px;
}

.footer-logo p {
  font-size: 15px;
  max-width: 300px;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}

.footer-contact p {
  font-size: 15px;
  margin-bottom: 10px;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  color: white;
  font-size: 20px;
  margin-right: 12px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #c7a962;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 40px;
  padding-top: 20px;
}



/* Navbar base */
/* Navbar - Keep your original background and styling */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(60, 60, 10, 0.6); /* your olive background */
  padding: 0 50px; /* horizontal padding only */
  font-family: Poppins, sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px; /* fixed height to prevent expanding */
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Logo styling */
.logo {
  font-weight: 600;
  font-size: 22px;
  color: #fff; /* white logo text */
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #fff;  /* white nav text */
  font-weight: 500;
  padding: 10px 12px;
}



/* Dropdown styles */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(255, 255, 255, 0.9); /* transparent background */
  backdrop-filter: blur(8px); /* glass effect */
  min-width: 220px;
  z-index: 1000;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.dropdown-content a {
  display: block;
  padding: 12px 18px;
  color: #000;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}


/* Half banner section */
.half-banner {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.half-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
}

.banner-text {
  position: absolute;
  bottom: 20px;
  left: 40px;
  color: #fff;
}

.banner-text h1 {
  font-size: 36px;
  font-weight: 600;
}

/* Service intro */
.service-intro {
  text-align: center;
  padding: 50px 20px;
}

.service-intro h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.service-intro p {
  font-size: 18px;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
}


.residential-gallery {
  padding: 60px 20px;
  text-align: center;
}

.residential-gallery h2 {
  font-size: 32px;
  font-family: 'Playfair Display', serif;
  color: olive;
  margin-bottom: 30px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.image-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  object-fit: cover;
  height: 240px;
}

.commercial-gallery {
  padding: 60px 20px;
  text-align: center;
}

.commercial-gallery h2 {
  font-size: 32px;
  font-family: 'Playfair Display', serif;
  color: olive;
  margin-bottom: 30px;
}

.commercial-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.commercial-image-grid img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  object-fit: cover;
}
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

/* Half Banner */
.half-banner img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}

/* Intro Section */
.intro-section {
  text-align: center;
  padding: 40px 20px;
}

.intro-section h2 {
  font-size: 2rem;
  color: #556B2F; /* Olive color */
  margin-bottom: 10px;
}

.headline-section {
  text-align: center;
  margin: 50px 20px;
}

.headline-section h1 {
  font-size: 28px;
  color: #c28853; /* Light brown similar to your screenshot */
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.intro-section p {
  max-width: 600px;
  margin: 0 auto;
  color: #444;
}

/* Gallery Section */
.gallery-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.gallery-item {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
  width: 45%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.description {
  width: 55%;
}

.description h3 {
  font-size: 1.5rem;
  color: #556B2F;
  margin-bottom: 10px;
}

.description p {
  color: #555;
  font-size: 1rem;
}
/* Logo Image */
/* Logo Image */
.logo-image {
  width: 130px;   /* Increase this to make logo larger */
  height: auto;   /* Keeps aspect ratio */
  object-fit: contain; /* Prevents distortion */
}
.logo {
  display: block;
  margin-top: 20px;  /* Move logo downwards */
}

.floating-contact {
  position: fixed;
  top: 120px;             /* Increase this value as needed */
  right: 10px;            /* Keep it on the right */
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.icon-box {
  font-size: 20px;
  color: white;
  background-color:#3c3b26;   /* Example color */
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
}

.service-button-container {
  text-align: center;
  margin-top: 20px;
}

.service-button {
  display: inline-block;
  padding: 12px 28px;
  background-color: olive;
  color: white;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.service-button:hover {
  background-color: #556b2f; /* darker olive on hover */
}
