

/* ===============================
   THEME VARIABLES
=================================*/
:root {
  --primary-color: #009245;
  --secondary-color: #4a4e56;
  --text-color: #4a4e56;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --transition: all 0.3s ease-in-out;
}

/* ===============================
   GLOBAL STYLES
=================================*/
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {

  font-weight: 600;
}

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

a:hover {
  color: var(--primary-color);
}

/* ===============================
   COMMON SPACING
=================================*/
.section-padding {
  padding: 80px 0;
}

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

.section-subtitle {
  color: #777;
  margin-bottom: 20px;
}

/* ===============================
   NAVIGATION
=================================*/
/* ===============================
   HEADER BASE
=================================*/

.main-header {
  background: #fff;
  height: 60px; /* Keeping your original height */
  display: flex;
  align-items: stretch;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 999;
}

.navbar {
  height: 100%;
  padding: 0;
}

/* ===============================
   LOGO
=================================*/

.website-logo {
  height: 45px;
  width: auto;
}

/* ===============================
   DESKTOP ENQUIRE BUTTON
=================================*/

.enquire-wrapper {
  height: 100%;
}

.enquire-btn {
  background: var(--primary-color);
  color: #fff;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s ease;
}

.enquire-btn:hover {
  background: var(--secondary-color);
  color: #fff;
}

/* ===============================
   MOBILE HEADER ICONS
=================================*/

.mobile-phone {
  color: var(--primary-color);
  font-size: 16px;
  text-decoration: none;
}

.mobile-phone:hover {
  color: var(--secondary-color);
}

.navbar-toggler {
  box-shadow: none !important;
}

.navbar-toggler i {
  font-size: 20px;
  color: var(--primary-color);
}

/* ===============================
   OFFCANVAS MENU
=================================*/

.offcanvas {
  width: 180px;
}

.offcanvas-header {
  border-bottom: 1px solid #eee;
}

.mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav li {
  margin-bottom: 18px;
}

.mobile-nav a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--secondary-color);
  transition: 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--primary-color);
  padding-left: 6px;
}

/* ===============================
   FIXED MOBILE ENQUIRE BUTTON
=================================*/

.mobile-enquire {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--primary-color);
  text-align: center;
  z-index: 999;
}

.mobile-enquire a {
  display: block;
  padding: 14px 0;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-enquire a:hover {
  background: var(--secondary-color);
  color: #fff;
}

/* Prevent content overlap on mobile */
@media (max-width: 991px) {
  body {
    padding-bottom: 55px;
  }
}

/* ===============================
   SIDEBAR
=================================*/
.sidebar-link {
  display: block;
  padding: 12px 0;
  color: var(--secondary-color);
  font-weight: 500;
  transition: var(--transition);
}

.sidebar-link:hover {
  color: var(--primary-color);
  padding-left: 8px;
}

/* Mobile Social Section */
.social-wrapper{
  position: absolute;
  width: 100%;
  bottom: 10px;
}
.mobile-social {
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.social-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-color);
  text-transform: uppercase;
  margin-bottom: 8px;
  text-align: center;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  transition: 0.3s ease;
  font-size: 14px;
}

.social-links a:hover {
  background: var(--secondary-color);
  color: #fff;
}

/* Mobile Nav Menu Styling */
.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    padding: 15px 0;          
    border-bottom: 1px solid #d7d7d759;
  }

.mobile-nav li:last-child {
    border-bottom: none;    
}

.mobile-nav li a {
    color: var(--secondary-color);
    text-decoration: none;
    display: block;
    font-weight: 500;
    font-size: 16px;
}

.mobile-nav li a:hover {
    color: var(--primary-color);               /* Optional hover effect */
}

/* ===============================
   HERO SECTION
=================================*/
.hero-section {
  position: relative;
}

.hero-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.overlay {
  background: rgba(0, 0, 0, 0.55);
  height: 100%;
  display: flex;
  align-items: center;
}

.preheading {
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 10px;
}

.hero-section h1 {
  font-size: 48px;
  font-weight: 700;
}

.hero-section p {
  font-size: 18px;
  max-width: 600px;
}

/* ===============================
   OWL NAVIGATION ARROWS
=================================*/

.hero-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5) !important;
  color: #fff !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 18px !important;
  transition: all 0.3s ease;
}

.hero-carousel .owl-nav button:hover {
  background: #009245 !important;
}

.hero-carousel .owl-nav .owl-prev {
  left: 30px;
}

.hero-carousel .owl-nav .owl-next {
  right: 30px;
}

/* Remove default outline */
.hero-carousel .owl-nav button:focus {
  outline: none;
}

/* ===============================
   BUTTONS
=================================*/
.btn-theme {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 30px;
  padding: 10px 28px;
  font-weight: 500;
  transition: var(--transition);
  border: none;
}

.btn-theme:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-outline-theme {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 30px;
  padding: 8px 25px;
  transition: var(--transition);
}

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

/* ===============================
   Project Location Tabs
=================================*/

.project-tabs {
  gap: 15px;
}

.project-tabs .nav-link {
  background: #fff;
  color: var(--secondary-color);
  border: 1px solid #e5e5e5;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

/* Hover Effect */
.project-tabs .nav-link:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

/* Active Tab */
.project-tabs .nav-link.active {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Remove default focus */
.project-tabs .nav-link:focus {
  box-shadow: none;
}

/*==========================
  Homepage Project Cards
===========================*/
/* ===============================
   Project Card
=================================*/

.project-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease;

  /* New */
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.project-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Make content flexible */
.project-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-content h5 {
  font-weight: 600;
  margin-bottom: 8px;
  text-align: center;
}

.project-content .location {
  color: var(--secondary-color);
  font-size: 14px;
  margin-bottom: 15px;
}

/* ===============================
   Why Choose Us Section
=================================*/

.why-choose-us {
  padding: 80px 0;
  background: #f8f9fa; /* section background */
}

/* Card styling */
.why-card {
  background: #fff; /* white card */
  border-radius: 12px;
  padding: 30px 20px 40px;
  transition: 0.4s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Hover effect */
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Icon styling */
.why-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: 0.3s ease;
  background: #fff; 
  border: 2px dashed var(--primary-color); 
  color: var(--primary-color);
}

.why-card:hover .why-icon {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

/* Titles */
.why-card h5 {
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark-color);
}

.why-card p {
  font-size: 14px;
  color: var(--secondary-color);
  line-height: 1.6;
  flex-grow: 1; /* helps equal height cards */
}

/* Section Titles */
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark-color);
  margin: 10px 0;
}

.section-subtitle {
  font-size: 16px;
  color: var(--secondary-color);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* ===============================
   Who We Are Section
=================================*/

.who-we-are-section {
  position: relative;
}

/* Left Image */
.who-image {
  height: 100%;
  min-height: 500px;
}

.who-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right Content */
.who-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px;
  min-height: 500px;
}

.content-inner {
  max-width: 550px;
}

.section-subtitle {
  color: var(--primary-color);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

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

.who-content p {
  color: var(--secondary-color);
  margin-bottom: 15px;
  line-height: 1.7;
}


/* ===============================
   Full Width Bottom Button
=================================*/

.project-btn {
  margin-top: auto; /* Push to bottom */
  width: 100%;
  border-radius: 0;
  padding: 12px 0;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===============================
   Owl Navigation Arrows
=================================*/

.owl-carousel {
  position: relative;
}

/* Remove bottom nav */
 .owl-nav {
  margin-top: 0;
}

/* Style arrows */
 .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-color) !important;
  color: #fff !important;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: 0.3s ease;
}

/* Left Arrow */
.owl-nav .owl-prev {
  left: -15px;
}

/* Right Arrow */
.owl-nav .owl-next {
  right: -15px;
}

.owl-nav button:hover {
  background: var(--secondary-color) !important;
}

/* Hide outline */
.owl-nav button:focus {
  outline: none;
  box-shadow: none;
}


/* ===============================
   FOOTER
=================================*/
.sitefooter {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.sitefooter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(108, 92, 231, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3436;
    text-decoration: none;
}

.footer-title {
    color: #2d3436;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #009245, transparent);
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #009245;
    width: 20px;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d3436;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.social-icon:hover {
    transform: translateY(-3px);
    color: #009245;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.2);
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0;
    list-style: none;
}

.quick-links a {
    color: #2d3436;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.quick-links a:hover {
    color: #009245;
    transform: translateX(5px);
}

.quick-links a::before {
    content: '→';
    opacity: 0;
    transition: all 0.3s ease;
}

.quick-links a:hover::before {
    opacity: 1;
}

.newsletter-input {
    border: none;
    padding: 0.8rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.btn-subscribe {
    background: linear-gradient(45deg, #0c733d, #33c981);
    border: none;
    box-shadow: 0 2px 10px rgba(108, 92, 231, 0.2);
    padding: 0.8rem 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.footer-bottom {
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-bottom p {
    margin: 0;
    color: #6c757d;
}

.footer-bottom a {
    color: #009245;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .quick-links {
        grid-template-columns: 1fr;
    }
}

/* ===============================
   Parallax CTA
=================================*/

.cta-parallax {
  background: url('../images/callaction-black-white.jpg') center center/cover no-repeat;
  background-attachment: fixed;
  position: relative;
  color: #fff;
}

.cta-overlay {
  background: rgba(0, 0, 0, 0.65);
  padding: 120px 0;
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.7;
}

.cta-buttons .btn {
  padding: 12px 30px;
  font-weight: 600;
  letter-spacing: 1px;
}
/* ===============================
   Testimonials Section
=================================*/

.testimonials {
  padding: 80px 0;
}

/* Important: Make owl items stretch */
.testimonial-carousel .owl-stage {
  display: flex;
}

.testimonial-carousel .owl-item {
  display: flex;
  height: auto;
}

/* Card Styling */
.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease;

  /* Equal height setup */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  min-height: 260px; /* adjust if needed */
  border: 2px dashed #009245;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

/* Text Area */
.testimonial-text {
  font-size: 15px;
  color: var(--secondary-color);
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1; /* makes content flexible */
}

/* User Section always at bottom */
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.user-img img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user h6 {
  margin: 0;
  font-weight: 600;
}

.testimonial-user span {
  font-size: 13px;
  color: var(--secondary-color);
}

/* Modal Content */


.modal-content {
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

.modal-form{
  background: #d0f1dfd6;
}

/* Input & Select Styling */
.form-control,
.form-select {
  transition: all 0.3s ease;
  box-shadow: none !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 10px var(--primary-color);
  outline: none;
  background: #fff !important;
}

/* Shadows for inputs */
.form-control-lg {
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.05);
  background: #fefefe;
}

/* Rounded pills */
.rounded-pill {
  border-radius: 50rem !important;
}

/* Larger textarea rounded */
textarea.rounded-3 {
  border-radius: 1rem !important;
}

/* Button Styling */
.btn-primary {
  background: var(--primary-color);
  border: none;
  transition: background-color 0.4s ease;
  box-shadow: 0 6px 12px rgb(0 123 255 / 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--secondary-color);
  box-shadow: 0 8px 16px rgb(0 123 255 / 0.5);
  outline: none;
}

/* Checkbox label text */
.form-check-label {
  user-select: none;
}

/* Responsive fixes */
@media (max-width: 576px) {
  .modal-dialog {
    max-width: 90vw;
  }
}
/*
.modal-banner {
  background-color: #f8f9fa; /* fallback background */
  overflow: hidden;
}

.modal-banner img {
  object-fit: cover;
  height: 100%;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  display: block;
}*/
