:root {
  --sage-green: #9caf88;
  --beige: #f5f1eb;
  --soft-white: #fefefe;
  --blush: #f4c2c2;
  --dark-sage: #7a8b6b;
  --light-sage: #b8c9a5;
  --warm-gray: #8b8680;
  --text-dark: #2c2c2c;
  --text-light: #6c6c6c;
  --transition-speed: 0.3s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--soft-white);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
}

.section-padding {
  padding: 100px 0;
}

/* Container fixes */
/*.container {*/
/*  max-width: 100%;*/
/*  padding-left: 15px;*/
/*  padding-right: 15px;*/
/*}*/

.row {
  margin-left: 0;
  margin-right: 0;
}

.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6,
.col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12,
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6,
.col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6,
.col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
.col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
  padding-left: 12px;
  padding-right: 12px;
}

/* Custom Colors */
.text-primary {
  color: var(--sage-green) !important;
}

.btn-primary {
  background-color: var(--sage-green);
  border-color: var(--sage-green);
  color: white;
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-primary:hover, .btn-primary:active{
  background-color: var(--dark-sage);
  border-color: var(--dark-sage);
  color:white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(156, 175, 136, 0.3);
}

.btn-outline-light {
  border-color: white;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background-color: white;
  color: var(--sage-green);
  transform: translateY(-2px);
}

.bg-light {
  background-color: var(--beige) !important;
}

/* Navigation */
.custom-navbar {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  padding: 15px 0;
  width: 100%;
}

.custom-navbar .nav-link {
  color: var(--soft-white) !important;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.scrolled {
  background-color: rgba(254, 254, 254, 0.98) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--sage-green) !important;
}

.scrolled .nav-link:not(.btn-primary) {
  color: var(--text-dark) !important;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--sage-green) !important;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  color: white;
  width: 100%;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(156, 175, 136, 0.3), rgba(244, 194, 194, 0.3));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.hero-buttons {
  margin-top: 2rem;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

.fade-in-delay {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.3s forwards;
}

.fade-in-delay-2 {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.6s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--sage-green), var(--blush));
  border-radius: 2px;
}

/* About Section */
.about-image img {
  transition: transform 0.3s ease;
  width: 100%;
  height: auto;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-stats h4 {
  color: var(--sage-green);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Feature Cards */
.feature-card {
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(156, 175, 136, 0.1);
  width: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--sage-green), var(--light-sage));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.8rem;
}

.feature-card h5 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

/* Services Section */
.service-category {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  border: 1px solid rgba(156, 175, 136, 0.1);
  width: 100%;
}

.service-category h4 {
  color: var(--sage-green);
  border-bottom: 2px solid var(--beige);
  padding-bottom: 1rem;
}

.service-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(156, 175, 136, 0.1);
  transition: all 0.3s ease;
}

.service-item:last-child {
  border-bottom: none;
}

.service-item:hover {
  padding-left: 1rem;
  border-radius: 8px;
}

.price {
  color: var(--sage-green);
  font-weight: 600;
  font-size: 1.1rem;
}

/* Team Section */
.team-card {
  background: white;
  padding: 1rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(156, 175, 136, 0.1);
  width: 100%;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 1rem;
  overflow: hidden;
  border-radius: 50%;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-card .social-links {
  margin: 1rem 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
}

.team-card .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--sage-green);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.team-card .social-link:hover {
  background: var(--dark-sage);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(156, 175, 136, 0.3);
}

/* Gallery Section */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
}

.gallery-item img {
  transition: transform 0.3s ease;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(156, 175, 136, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  color: white;
  font-size: 1.5rem;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Testimonials */
.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(156, 175, 136, 0.1);
  height: 100%;
  width: 100%;
}

.stars {
  color: #ffd700;
}

.testimonial-author {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--beige);
}

.author-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* Social Links */
.social-links {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--sage-green);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.social-link:hover {
  background: var(--dark-sage);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(156, 175, 136, 0.3);
}

/* Contact Section */
.contact-info {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(156, 175, 136, 0.1);
  width: 100%;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-item i {
  color: var(--sage-green);
  font-size: 1.2rem;
  margin-right: 1rem;
  margin-top: 0.2rem;
  width: 20px;
  flex-shrink: 0;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(156, 175, 136, 0.1);
  width: 100%;
}

.form-control {
  border: 2px solid var(--beige);
  border-radius: 10px;
  padding: 12px 15px;
  transition: all 0.3s ease;
  width: 100%;
}

.form-control:focus {
  border-color: var(--sage-green);
  box-shadow: 0 0 0 0.2rem rgba(156, 175, 136, 0.25);
}

.form-select {
  border: 2px solid var(--beige);
  border-radius: 10px;
  padding: 12px 15px;
  transition: all 0.3s ease;
  width: 100%;
}

.form-select:focus {
  border-color: var(--sage-green);
  box-shadow: 0 0 0 0.2rem rgba(156, 175, 136, 0.25);
}

/* Footer */
footer {
  background-color: var(--text-dark) !important;
  width: 100%;
}

.footer-social {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 5px;
}

.footer-social .social-link {
  width: 40px;
  height: 40px;
  font-size: 1rem;
}

.newsletter-form .form-control {
  border-radius: 25px 0 0 25px;
  border-right: none;
}

.newsletter-form .btn {
  border-radius: 0 25px 25px 0;
  padding: 12px 20px;
}

footer a {
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--sage-green) !important;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}

.whatsapp-float:hover {
  background: #128c7e;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    margin-right: 0 !important;
  }

  .feature-card,
  .service-category,
  .team-card,
  .testimonial-card,
  .contact-info,
  .contact-form {
    margin-bottom: 2rem;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .team-card .social-links {
    gap: 3px;
  }

  .team-card .social-link {
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
  }

  .social-links {
    gap: 5px;
  }

  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .section-padding {
    padding: 60px 0;
  }

  .hero-section {
    height: 80vh;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .team-image {
    width: 120px;
    height: 120px;
  }

  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6,
  .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12,
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6,
  .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6,
  .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
  .col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
  .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* Loading Animation */
.loading {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.loading.loaded {
  opacity: 1;
  transform: translateY(0);
}

/* Hover Effects */
.btn,
.card,
.service-item,
.gallery-item,
.team-card {
  transition: all 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--beige);
}

::-webkit-scrollbar-thumb {
  background: var(--sage-green);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dark-sage);
}

/* Additional fixes for horizontal overflow */
img {
  max-width: 100%;
  height: auto;
}

.navbar-toggler {
  border: none;
  padding: 4px 8px;
}

.navbar-collapse {
  flex-grow: 0;
}

/* Ensure all sections stay within viewport */
section {
  width: 100%;
  overflow: hidden;
}

/* Fix for button spacing in mobile */
@media (max-width: 767px) {
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-buttons .btn {
    margin-right: 0 !important;
    margin-bottom: 0 !important;
  }
}
.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;
  }
}

textarea{
    resize:none;
}

/* Main scroll section */
.scroll-section {
  position: relative;
  padding-top: 150px;
  padding-bottom: 100px;
  min-height: 100vh;
  background-color: #ffffff;
}

/* Left column with image */
.image-column {
  position: relative;
  padding: 0 24px;
  opacity: 0.85;
  transition: opacity var(--transition-speed) ease;
}

.image-column:hover {
  opacity: 1;
}

.sticky-image {
  position: sticky;
  top: 24px;
  padding: 16px 0;
  transition: transform var(--transition-speed) ease;
}

.sticky-image img {
  
  transition: transform var(--transition-speed) ease;

}

.sticky-image img:hover {
  transform: scale(1.02);

}

/* Right column with content */
.content-column {
  padding: 0 24px;
  background: linear-gradient(to right, rgba(255,255,255,0.95), #ffffff);
  border-radius: 12px;
  box-shadow: -4px 0 12px rgba(0,0,0,0.03);
}

.content-wrapper {
  padding: 24px;
  max-height: 80vh;
  overflow-y: auto;
  scrollbar-width: thin;
}

.content-wrapper h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.content-wrapper h3 {
  color: var(--dark-color);
  margin-top: 2rem;
  font-weight: 600;
  font-size: 1.5rem;
}

.content-wrapper p {
  color: #4a4a4a;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.content-wrapper .lead {
  color: var(--secondary-color);
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.content-wrapper::-webkit-scrollbar {
  width: 6px;
}

.content-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 8px;
}

.content-wrapper::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 8px;
}

.content-wrapper::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}


.card {
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Media queries for responsiveness */
@media (max-width: 991.98px) {
  .image-column {
    margin-bottom: 40px;
    opacity: 1;
  }
  
  .sticky-image {
    position: relative;
    top: 0;
  }
  
  .content-wrapper {
    max-height: none;
    overflow: visible;
    padding: 16px;
  }

  .content-column {
    background: #ffffff;
    box-shadow: none;
  }
}

/* Custom animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}



/* JavaScript helper class */
.end-scrolling {
  position: relative;
}