:root {
  --primary: #0a5c36;
  --secondary: #0d7242;
  --accent: #2e8b57;
  --gold: #d4af37;
  --light: #f8f9fa;
  --dark: #1a1a1a;
  --gray: #666;
  --light-gray: #e9ecef;
  --white: #ffffff;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* IMPORTANT: Ensure menu stays hidden normally */
.ga-dropdown-menu {
    display: none !important;      /* force hide */
    position: absolute;
    top: 100%;
    left: 0;
    width: 330px;
    background: rgb(77, 161, 77);
    padding: 0;
    margin: 0;
    z-index: 999;
    border-radius: 4px;
}

/* Only show on hover */
.ga-dropdown:hover .ga-dropdown-menu {
    display: block !important;     /* show on hover */
}

/* Parent list style */
.ga-dropdown {
    position: relative;
    margin-top: -5px;
}

.ga-dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* icon rotation */
.ga-drop-icon {
    font-size: 10px;
    transition: .3s ease;
}

.ga-dropdown:hover .ga-drop-icon {
    transform: rotate(180deg);
}

/* Dropdown items */
.ga-dropdown-menu li a {
    display: block;
    padding: 12px 15px;
    color: black;
    font-size: 13px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: .3s;
}

.ga-dropdown-menu li a:hover {
    background: #111;
    padding-left: 18px;
    color: white;
}


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary);
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.section-title h2:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--gold);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-title p {
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.btn:hover {
  background: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
}

/* Header Styles */
.header-top {
  background: var(--primary);
  color: white;
  padding: 12px 0;
  font-size: 0.9rem;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-contact {
  display: flex;
  gap: 25px;
}

.header-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-contact i {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: white;
  font-size: 1rem;
}

.social-links a:hover {
  color: var(--gold);
}

.main-header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  /* padding: 0; */
}

.logo-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text h1 {
  font-size: 2rem;
  color: var(--primary);
  margin: 0;
  line-height: 1.2;
}

.logo-text span {
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
}

.logo-tagline {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  margin-top: 5px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.main-nav a {
  color: var(--dark);
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  padding: 5px 0;
}

.main-nav a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary);
  bottom: 0;
  left: 0;
  transition: var(--transition);
}

.main-nav a:hover:after,
.main-nav a.active:after {
  width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(34, 33, 33, 0.7), rgba(32, 31, 31, 0.7)), url('/user_assets/img/banner.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 160px 0 100px;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: white;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Projects Section */
.projects-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 25px;
  background: var(--light-gray);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: white;
}

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

.project-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.project-image {
  height: 250px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-content {
  padding: 25px;
}

.project-content h4 {
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 10px;
}

.project-content p {
  color: var(--gray);
  margin-bottom: 20px;

}

.project-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--light-gray);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
}

.meta-item i {
  color: var(--primary);
}

.project-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

/* Stats Section */
.stats {
  background: linear-gradient(rgba(10, 92, 54, 0.9), rgba(10, 92, 54, 0.9)), url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: white;
}

.stat-item p {
  font-size: 1.1rem;
  opacity: 0.9;
}


/* Contact Section */
.contact {
  background: var(--light);
}

.contact-content {
  display: flex;
  gap: 50px;
}

.contact-info {
  flex: 1;
}

.contact-form {
  flex: 1;
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--light-gray);
  border-radius: 5px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.contact-details {
  margin-top: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Footer */
footer {
  background: var(--dark);
  color: white;
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-column h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background: var(--primary);
  bottom: 0;
  left: 0;
}

.footer-logo {
  margin-bottom: 10px;
}

.footer-logo h2 {
  color: white;
  font-size: 2rem;
  margin: 0;
}

.footer-logo span {
  color: var(--accent);
}

.footer-column p {
  opacity: 0.8;
  margin-bottom: 25px;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  opacity: 0.8;
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent);
  padding-left: 5px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-5px);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .main-nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow);
    z-index: 1000;
  }

  .main-nav.active ul {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .about-content,
  .contact-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 0 80px;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .section-padding {
    padding: 60px 0;
  }

  .header-top .container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .header-contact {
    flex-direction: column;
    gap: 10px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .logo-text h1 {
    font-size: 1.5rem;
  }

  .logo-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .contact-form {
    padding: 30px 20px;
  }
}



/* Unique class section */
/* MAIN SECTION */
.ga-about-section {
  padding: 80px 0;
  background: #f8f9fa;
}

/* Heading */
.ga-about-heading .ga-about-subtitle {
  text-transform: uppercase;
  font-weight: 600;
  color: #006838;
  letter-spacing: 2px;
}

.ga-about-heading .ga-about-title {
  font-size: 34px;
  font-weight: 800;
  color: #222;
  margin-top: 10px;
}

.ga-about-line {
  width: 80px;
  height: 3px;
  background: #006838;
  margin: 0px auto 0;
  margin-top: -15px;
}

/* TEXT BLOCK */
.ga-about-text {
  padding-right: 20px;
}

.ga-about-main {
  font-size: 17px;
  color: #444;
  font-weight: 500;
  line-height: 1.8;
}

.ga-about-points {
  margin-top: 25px;
}

.ga-about-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.ga-about-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.12);
}

.ga-icon {
  width: 55px;
  height: 55px;
  background: #006838;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 22px;
  transition: 0.3s ease;
}

.ga-about-item:hover .ga-icon {
  background: #d4af37;
  transform: rotateY(180deg);
}

.ga-about-info h4 {
  font-size: 17px;
  margin: 0 0 4px;
  color: #222;
  font-weight: 700;
}

.ga-about-info p {
  color: #666;
  font-size: 14px;
  margin: 0;
}

/* READ MORE BUTTON */
.ga-about-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 10px 28px;
  background: #006838;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 6px;
  transition: 0.3s ease;
  text-transform: uppercase;
  font-size: 13px;
}

.ga-about-btn:hover {
  background: #004d28;
}

/* IMAGE */
.ga-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: 0.4s ease;
}

.ga-about-image img:hover {
  transform: scale(1.03);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ga-about-title {
    font-size: 28px;
  }

  .ga-about-text {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .ga-icon {
    width: 50px;
    height: 50px;
    font-size: 19px;
  }
}







.ga-services {
  padding: 40px 0;
  background: #f5f5f5;
}

.services-heading {
  margin-bottom: 40px;
  position: relative;

}

.services-heading h3 {
  font-size: 20px;
  font-weight: 600;
  color: #006838;
  margin: 0;
}

.services-heading h1 {
  font-size: 38px;
  font-weight: 800;
  margin: 5px 0;
  color: #006838;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.view-all-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 20px;
  border: 1px solid #006838;
  font-size: 13px;
  text-decoration: none;
  color: #006838;
  transition: 0.3s;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.view-all-btn:hover {
  background: #006838;
  color: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card h3 {
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  background: #fff;
  color: #333;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

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

.service-card:hover img {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ga-services {
    padding: 60px 0;
  }

  .services-heading h1 {
    font-size: 40px;
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-heading h1 {
    font-size: 34px;
  }

  .services-heading h3 {
    font-size: 18px;
  }

  .view-all-btn {
    padding: 8px 15px;
    font-size: 12px;
  }
}



/* =====================
   ABOUT PAGE BANNER
===================== */
.ga-about-banner {
    width: 100%;
    height: 350px;
    background: url('https://images.unsplash.com/photo-1501183638710-841dd1904471?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
    position: relative;
}

.ga-about-banner-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ga-about-banner-title {
    font-size: 38px;
    color: #2eb456;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ga-about-banner-subtitle {
    color: #eee;
    font-size: 18px;
    margin-top: 10px;
}

.ga-about-info-split {
    padding: 70px 0;
    background: #fff;
}

.ga-info-left p {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 12px;
}

.ga-info-left h3 {
    color: #006838;
    font-size: 20px;
    font-weight: 700;
    margin-top: 25px;
}

.ga-info-list {
    padding-left: 20px;
    margin: 15px 0;
}

.ga-info-list li {
    font-size: 15px;
    margin-bottom: 6px;
}

/* RIGHT IMAGE GRID */
.ga-info-images-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 18px;
}

.ga-info-img img {
    width: 100%;
    height: 350px; /* ⬅ HEIGHT INCREASED */
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: 0.4s ease;
}

.ga-info-img img:hover {
    transform: scale(1.06);
}

/* Responsive */
@media (max-width: 992px) {
    .ga-info-images-grid {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .ga-info-images-grid {
        grid-template-columns: 1fr;
    }
    .ga-info-img img {
        height: 200px;
    }
}


/* Responsive */
@media (max-width: 768px) {
    .ga-about-banner-title {
        font-size: 34px;
    }
    .ga-about-full {
        padding: 50px 0;
    }
}



/* Banner */
.service-banner {
    padding: 80px 0 50px;
    background: #f6f6f6;
}

.service-title {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.2;
    color: #555;
}

.service-title span {
    font-weight: 800;
    color: #222;
}

.service-sub {
    color: #d62828;
    font-size: 28px;
    margin-top: 10px;
}

/* Content */
.service-content {
    padding: 40px 0 80px;
}

.service-content p {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 18px;
}
.service-content b{
  font-weight: bold;
  color: #201f1f;
}

.section-heading {
    font-size: 26px;
    font-weight: 700;
    margin: 35px 0 20px;
    color: #222;
}

.last-text {
    margin-top: 20px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .service-title {
        font-size: 32px;
    }
    .service-sub {
        font-size: 22px;
    }
}

/* Full Banner Image with Blur */
.service-banner-img {
    position: relative;
    width: 100%;
    height: 350px;
    background-image: url('https://media.licdn.com/dms/image/v2/D5612AQFi4-nPi8lhQQ/article-cover_image-shrink_720_1280/article-cover_image-shrink_720_1280/0/1714655830982?e=2147483647&v=beta&t=ssGiidxgA74UsDmi63jIte_cJ4tWQ0vak3zfdOG8D-I');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Blur Layer */
.service-banner-img::before {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(3px);   /* BLUR AMOUNT */
    -webkit-backdrop-filter: blur(6px);
}

/* Dark Overlay */
.service-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

/* Heading */
.service-banner-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: #fff;
    padding-top: 40px;
}

.service-banner-content h1 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 5px;
}

.service-banner-content h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 5px;
}

.service-banner-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: white;
    letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .service-banner-img { height: 260px; }
    .service-banner-content h1 { font-size: 30px; }
    .service-banner-content h2 { font-size: 34px; }
    .service-banner-content h3 { font-size: 18px; }
}


/* ----- BANNER ----- */
.projects-banner {
    position: relative;
    height: 360px;
    background-image: url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.projects-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(4px);
}

.projects-banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.projects-banner-content h1 {
    font-size: 46px;
    font-weight: 800;
    letter-spacing: 1px;
}

.projects-banner-content p {
    margin-top: 8px;
    font-size: 16px;
    opacity: .9;
}

/* ----- PROJECTS BOX ----- */
.project-box {
    padding: 30px 0;
}

.project-box .row {
    align-items: stretch !important; /* SAME HEIGHT FIX */
}

.project-text {
    background: #111;
    padding: 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-text h2 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.project-text p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.project-btn {
    margin-top: 20px;
    width: 150px;
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    transition: 0.3s;
}

.project-btn:hover {
    background: #fff;
    color: #111;
}

/* RIGHT IMAGE SAME HEIGHT */
.project-img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
}

/* Remove padding between sections */
.container-fluid .col-lg-6 {
    padding: 0 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .project-img { min-height: 260px; }
    .project-text { padding: 30px; }
    .projects-banner-content h1 { font-size: 32px; }
}




    /* Testimonials Section Styles */
    .simple-testimonials {
        padding: 50px 0;
        background: #f8f9fa;
        position: relative;
    }
    
    .section-title {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .section-title h2 {
        font-size: 36px;
        font-weight: 700;
        color: #333;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }
    
    .section-title h2:after {
        content: '';
        position: absolute;
        width: 80px;
        height: 3px;
        background: #006838;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .section-title p {
        color: #666;
        font-size: 18px;
        max-width: 600px;
        margin: 20px auto 0;
    }
    
    /* Testimonial Wrapper */
    .testi-wrapper {
        position: relative;
        max-width: 800px;
        margin: 0 auto 40px;
        min-height: 300px;
    }
    
    /* Testimonial Card */
    .testi-card {
        display: none;
        background: #fff;
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.5s ease;
        opacity: 0;
        transform: translateY(20px);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
    }
    
    .testi-card.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
        position: relative;
    }
    
    .testi-quote {
        color: #006838;
        font-size: 30px;
        margin-bottom: 20px;
        opacity: 0.2;
    }
    
    .testi-text {
        font-style: italic;
        color: #555;
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 30px;
        position: relative;
        z-index: 1;
    }
    
    /* Author Info */
    .testi-author {
        display: flex;
        align-items: center;
        padding-top: 20px;
        border-top: 1px solid #eee;
    }
    
    .testi-author img {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 20px;
        border: 3px solid #006838;
    }
    
    .author-info h4 {
        font-size: 18px;
        font-weight: 700;
        color: #333;
        margin-bottom: 5px;
    }
    
    .author-info span {
        color: #666;
        font-size: 15px;
    }
    
    /* Navigation Controls */
    .testi-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
        margin-top: 40px;
    }
    
    .arrow {
        background: #006838;
        color: #fff;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        border: none;
        font-size: 18px;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 104, 56, 0.2);
    }
    
    .arrow:hover {
        background: #004225;
        transform: scale(1.1);
    }
    
    .arrow:active {
        transform: scale(0.95);
    }
    
    /* Dots Navigation */
    .dots {
        display: flex;
        gap: 15px;
        align-items: center;
    }
    
    .dots .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #ddd;
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
        padding: 0;
    }
    
    .dots .dot.active {
        background: #006838;
        transform: scale(1.3);
    }
    
    .dots .dot:hover {
        background: #006838;
    }
    
    /* Responsive Styles */
    @media (max-width: 991px) {
        .simple-testimonials {
            padding: 80px 0;
        }
        
        .section-title h2 {
            font-size: 32px;
        }
        
        .testi-card {
            padding: 35px 30px;
        }
    }
    
    @media (max-width: 768px) {
        .simple-testimonials {
            padding: 60px 0;
        }
        
        .section-title h2 {
            font-size: 28px;
        }
        
        .section-title p {
            font-size: 16px;
        }
        
        .testi-card {
            padding: 30px 25px;
        }
        
        .testi-text {
            font-size: 16px;
        }
        
        .testi-author img {
            width: 60px;
            height: 60px;
        }
        
        .author-info h4 {
            font-size: 16px;
        }
    }
    
    @media (max-width: 576px) {
        .testi-wrapper {
            margin-bottom: 30px;
        }
        
        .testi-card {
            padding: 25px 20px;
        }
        
        .testi-text {
            font-size: 15px;
        }
        
        .testi-author {
            flex-direction: column;
            text-align: center;
        }
        
        .testi-author img {
            margin-right: 0;
            margin-bottom: 15px;
        }
        
        .testi-controls {
            gap: 20px;
        }
        
        .arrow {
            width: 45px;
            height: 45px;
            font-size: 16px;
        }
        
        .dots {
            gap: 12px;
        }
    }



  /* TOP BANNER */
.testimonial-banner {
    position: relative;
    height: 380px;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(2px);
}

.banner-content {
    position: relative;
    text-align: center;
    color: #fff;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 800;
}

.banner-content p {
    font-size: 18px;
    margin-top: 8px;
    opacity: 0.9;
}

/* PAGE LAYOUT */
.premium-testimonials {
    padding: 80px 0;
    background: #f4f4f4;
}

.left-intro-box {
    background: #fff;
    padding: 40px;
    border-left: 5px solid #006838;
    margin-bottom: 40px;
}

.left-intro-box h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
}

.left-intro-box h2 span {
    color: #006838;
}

.left-intro-box p {
    margin-top: 20px;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

/* GRID */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

/* DARK TESTIMONIAL CARD */
.testi-dark-card {
    background: #1a1a1a;
    padding: 30px;
    color: #fff;
    border-radius: 6px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

.testi-dark-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: #ffd700;
    font-size: 18px;
    margin-bottom: 12px;
}

.testi-dark-card p {
    color: #ddd;
    line-height: 1.7;
    font-size: 15px;
}

.testi-dark-card h4 {
    margin-top: 20px;
    font-size: 17px;
    font-weight: 700;
}

.testi-dark-card span {
    font-size: 13px;
    opacity: 0.8;
}




/* TOP BANNER */
.contact-top-banner {
    position: relative;
    height: 350px;
    background: url('https://t3.ftcdn.net/jpg/05/30/96/04/360_F_530960431_c8fPd3HansYvrSJ4fJxZqp9OhjQmYoll.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-top-banner .banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(2px);
}

.contact-top-banner .banner-content {
    position: relative;
    text-align: center;
    color: #fff;
}

.contact-top-banner h1 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 1px;
}

.contact-top-banner p {
    font-size: 18px;
    margin-top: 8px;
    opacity: 0.9;
}

/* MAIN SECTION */
.contact-page {
    position: relative;
    padding: 80px 0 30px;
}

.contact-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.contact-form-box {
    background: #fff;
    padding: 40px;
    flex: 1;
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
    border-radius: 8px;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-info-text {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* FORM */
.form-row {
    display: flex;
    gap: 20px;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.input-group label {
    color: #444;
    font-size: 14px;
    margin-bottom: 5px;
}

.input-group input,
.input-group textarea {
    border: none;
    border-bottom: 1px solid #aaa;
    padding: 8px 0;
    outline: none;
    font-size: 15px;
}

.input-group input:focus,
.input-group textarea:focus {
    border-bottom: 1px solid #006838;
}

.form-check {
    margin: 20px 0;
    font-size: 14px;
}

.submit-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-size: 14px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #333;
}

/* RIGHT SIDE IMAGE */
.contact-image-box img {
    width: 450px;
    height: 560px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}



.contact-details-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-detail-line {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
}

.address {
    opacity: 0.9;
    line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-image-box img {
        width: 100%;
        height: 380px;
    }
}

/* RIGHT SIDE CONTAINER (IMAGE + BLACK BOX) */
.right-side-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

/* Right Image */
.contact-image-box img {
    width: 100%;
    height: 360px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Black Box directly under the image */
.contact-details-card {
    background: #111;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    width: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* GOOGLE MAP */
.google-map iframe {
    width: 100%;
    height: 380px;
    margin-top: 60px;
    border: none;
    border-radius: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }
    .contact-image-box img {
        height: 350px;
    }
}


/* TOP BANNER */
.register-banner {
    height: 340px;
    background: url('https://t3.ftcdn.net/jpg/12/69/46/86/360_F_1269468692_XhJWhbbYA9LNdSv7bPiEvlqumnzhPhzb.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
 
    align-items: center;
}

.register-banner .banner-overlay {
    inset: 0;
    background: rgba(0,0,0,0.45);
    position: absolute;
}

.register-banner .banner-content {
    position: relative;
    color: #fff;
    text-align: center;

}

.register-banner h1 {
    font-size: 50px;
    font-weight: 800;
}

.register-banner h1 span {
    color: #ff1e1e;
}

.register-banner p {
    margin-top: 8px;
    font-size: 18px;
}

/* REGISTER FORM SECTION */
.new-register-section {
    padding: 80px 0;
    background: #f7f7f7;
}

.register-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.register-box {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.1);
    flex: 1.3;
}

.form-heading {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* TWO COLUMNS */
.two-columns {
    display: flex;
    gap: 20px;
}

/* FORM INPUT BLOCK */
.input-block {
    margin-bottom: 20px;
    flex: 1;
}

.input-block label {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
    display: block;
}

.input-block input,
.input-block select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
    background: #fff;
}

.input-block input:focus,
.input-block select:focus {
    border-color: #ff1e1e;
}

/* SUBMIT BUTTON */
.register-submit {
    width: 100%;
    padding: 14px;
    background: #4ebf6f;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.register-submit:hover {
    background: #247e3f;
}

/* RIGHT SIDE IMAGE */
.register-image img {
    width: 450px;
    height: 620px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .register-wrapper {
        flex-direction: column;
    }
    .register-image img {
        width: 100%;
        height: 380px;
    }
    .two-columns {
        flex-direction: column;
    }
}







/* ================= BANNER ================= */
.inner-banner.land-banner {
    position: relative;
    width: 100%;
    height: 45vh;
    background: url("https://images.unsplash.com/photo-1500382017468-9049fed747ef") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(2px);
}

.banner-content {
    position: relative;
    color: #fff;
    z-index: 2;
    padding: 20px;
}

.banner-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: #33db8db9;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.banner-content h2 {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}



/* ================= CONTENT ================= */
.service-details {
    padding: 60px 0;
    font-family: 'Poppins', sans-serif;
}

.service-details h3 {
    font-size: 26px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #222;
}

.service-details p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 15px;
}

/* Responsive */
@media(max-width: 768px) {
    .banner-content h1 {
        font-size: 32px;
    }
    .banner-content h2 {
        font-size: 22px;
    }
}


/* Banner Section */
.service-banner {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.service-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
}

.banner-content {
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
}

.banner-content .subtitle {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d4af37;
}

.banner-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin: 10px 0 0 0;
}

.banner-content h2 {
    font-size: 30px;
    font-weight: 600;
    color: white;
    line-height: 1.3;
    margin-top: 10px;
}

/* Page Content */
.service-page {
    padding: 60px 0;
}

.service-page h3 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
}

.service-page p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Banner Section */
.service-banner {
    position: relative;
    width: 100%;
    height: 380px;

    background-image: url('https://www.omshakthy.com/blog/images/blog-b80.webp'); /* <- तुमचा banner image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    padding-left: 8%;
}

/* Banner Section */
.service-banner-hos {
    position: relative;
    width: 100%;
    height: 380px;

    background-image: url('/user_assets/img/hospital.jpg'); /* <- तुमचा banner image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    padding-left: 8%;
}
/* Blur Layer */
.service-banner-hos::before {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(4px);   /* BLUR AMOUNT */
    -webkit-backdrop-filter: blur(6px);
}
.service-banner-hos h1{
  color: #079658;
}

/* Banner Section */
.service-banner {
    position: relative;
    width: 100%;
    height: 380px;

    background-image: url('https://www.omshakthy.com/blog/images/blog-b80.webp'); /* <- तुमचा banner image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    padding-left: 8%;
}



/* Dark Gradient Overlay */
.service-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.2)
    );
}


/* Banner Section */
.service-banner {
    position: relative;
    width: 100%;
    height: 380px;
    display: flex;
    align-items: center;
    padding-left: 8%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-transform: uppercase;
}

.agri-banner {
  
    background-image: url('https://www.dimolanka.com/wp-content/uploads/2023/01/Agriculture-1920x600-1.webp');  /* CHANGE to your image */
}

/* Dark Overlay */
.service-banner::after {
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.25));
}

/* Banner Text */
.banner-content {
    position: relative;
    z-index: 2;
}

.banner-content .subtitle {
    color: #d4af37;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.banner-content h1 {
    font-size: 44px;
    margin: 0;
    font-weight: 700;
}

.banner-content h2 {
    font-size: 38px;
    margin-top: 5px;
    font-weight: 700;
}

.red-heading {
    color: #ff2d2d;
    font-size: 26px;
    font-weight: 700;
    margin-top: 10px;
}

/* Page Content */
.service-content {
    padding: 60px 0;
}

.service-content .intro-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

.section-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.service-list p,
.why-choose p {
    margin-bottom: 18px;
    color: #444;
    line-height: 1.7;
}

.closing-text {
    margin-top: 25px;
    font-weight: 600;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .service-banner {
        height: 280px;
        padding-left: 5%;
    }
    .banner-content h1 { font-size: 32px; }
    .banner-content h2 { font-size: 26px; }
    .red-heading { font-size: 20px; }
}




.service-intro, .service-block {
    margin-bottom: 50px;
}

.service-intro h2,
.service-block h2,
.service-highlight h2 {
    font-weight: 700;
    margin-bottom: 15px;
}

.service-intro p,
.service-block p,
.service-highlight p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.impact-section {
    display: flex;
    gap: 30px;
    margin: 50px 0;
}

.impact-card {
    flex: 1;
    background: #f6f6f6;
    padding: 30px;
    text-align: center;
    border-radius: 12px;
}

.impact-card h3 {
    font-size: 42px;
    color: #7a1fa2;
    margin-bottom: 10px;
}

.service-highlight ul {
    padding-left: 20px;
}

.service-highlight ul li {
    margin-bottom: 8px;
}


.managed-properties {
    padding: 80px 0;
    background: #f9f9f9;
}

.section-title h2 {
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title p {
    max-width: 700px;
    margin: auto;
    color: #555;
}

.properties-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.property-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s;
}

.property-card:hover {
    transform: translateY(-6px);
}

.property-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.property-card h4 {
    margin: 15px 0 5px;
    font-weight: 600;
}

.property-card span {
    display: block;
    padding-bottom: 15px;
    color: #777;
    font-size: 14px;
}
