:root {
    --primary-color: #7B9A7B;
    --secondary-color: #D4AF37;
    --accent-color: #F8E8E8;
    --light-green: #E8F5E8;
    --cream: #FFF8F0;
    --text-dark: #2C3E2C;
    --text-light: #6B7B6B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    z-index: 1;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(123, 154, 123, 0.4); /* Your green overlay */
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.3s both;
}


.btn-primary-custom {
    background: var(--secondary-color);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn-primary-custom:hover {
    background: #B8941F;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Section Styling */
.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background: var(--light-green);
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-content {
    padding: 2rem 0;
}

/* Why Choose Us */
.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
}

/* Services Section */
.services-section {
    background: var(--cream);
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card-body {
    padding: 2rem;
}

/* Team Section */
.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-card-body {
    padding: 1rem;
    text-align: center;
}

.social-links a {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: var(--light-green);
    color: var(--primary-color);
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
}

/* Gallery Section */
.gallery-section {
    background: var(--light-green);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 2rem;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(123, 154, 123, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    margin: 1rem;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Social Media Posts */
.social-post {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.social-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.social-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
}

/* Contact Section */
.contact-section {
    background: var(--cream);
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(123, 154, 123, 0.25);
}

.contact-info {
    background: var(--primary-color);
    color: white;
    padding: 3rem;
    border-radius: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    margin-right: 2rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-social a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .parallax-content h3 {
        font-size: 2rem;
    }
    
    .contact-form,
    .contact-info {
        margin-bottom: 2rem;
    }
}
        

.logo{
    height:50px;
}

pre {
    overflow-x: auto; /* Horizontal scrolling for long content */
    white-space: pre-wrap; /* Wrap text while preserving formatting */
    line-height: 1.5; /* Improved line spacing */
    font-size: 16px; /* Comfortable font size */
    margin-bottom: 20px; /* Spacing from other elements */
    font-family: inherit;
}

.service-img {
  max-width:60vw;
  overflow: hidden;
  border-radius: 20px;
}
.service-img img{
    height: 50vh; 
    width: 100%; 
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-img img:hover {
  transform: scale(1.05);
}

.service-link{
  color: var(--sage-green);  
}

@media (max-width: 768px) {
  .service-img {
    max-width: 100vw;
  }
}

.social-section{
    background: var(--light-green);
}

.social-section .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--cream);
    color: var(--primary-color);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.social-section .social-links a:hover {
    background: var(--primary-color);
    color: white;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.image-container img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.social-icon {
    position: absolute;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

/* Layout 6: Staggered with Text Labels and Slide-in Effect */
.layout-6 .col-md-4:nth-child(even) {
    margin-top: 2rem;
}

.layout-6 .social-icon {
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    transform: translateX(-100px);
    opacity: 0;
}

.layout-6 .social-icon::after {
    content: " Follow";
    font-size: 0.8rem;
    margin-left: 5px;
}

.layout-6 .image-container:hover .social-icon {
    transform: translateX(0);
    opacity: 1;
}

.layout-6 .image-container:hover img {
    transform: scale(1.03);
    filter: saturate(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .layout-6 .col-md-4:nth-child(even) {
        margin-top: 1rem;
    }
}

.services-section {
    background-color: #f8f9fa;
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-image {
    height: 100%;
    width: 100%;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));*/
    background: rgba(123, 154, 123, 0.4); /* Your green overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-overlay {
    background: rgba(123, 154, 123, 0.6); /* Your green overlay */
    /*background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.8));*/
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    color: white;
    transform: translateY(20px);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.service-card:hover .service-content {
    transform: translateY(0);
    opacity: 1;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 300;
}

.service-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.btn-outline-light {
    border-width: 2px;
    padding: 10px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: #333;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .service-card {
        height: 250px;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
    }
    
    .service-content p {
        font-size: 1rem;
    }
}
textarea{
    resize:none;
}


/* description section */
.description-section {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
}

.image-block {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.image-block img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.content-block {
  padding: 4rem 2rem;
}

@media (max-width: 991.98px) {
  .description-section {
    flex-direction: column;
  }

  .image-block {
    position: relative;
    height: auto;
  }

  .image-block img {
    height: auto;
  }
}

.padding{
    padding-top:120px;
    padding-bottom:40px;
}

.padding-top{
    padding-top:100px;
}