body {
	margin: 0;
	font-family: 'Karla', sans-serif;
	background-color: #ffffff;
	max-width: 100vw;
	overflow-x: hidden;
}

/* Navigation Bar */
nav {
	background-color: #1E1E1E;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 32px;
	width: 100%;
	box-sizing: border-box;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	flex-wrap: wrap;
	position: sticky;
	top: 0;
	z-index: 1000;
}

.nav-left {
	display: flex;
	align-items: center;
	gap: 48px;
	flex-wrap: wrap;
}

.logo {
	font-family: 'DM Serif Text', serif;
	font-weight: 400;
	font-size: 28px;
}

.logo-green {
	color: #7CBD40;
	font-weight: 400;
}

.logo-white {
	color: #FFFFFF;
	opacity: 0.7;
	font-weight: 400;
}

.hamburger {
	display: none;
	font-size: 28px;
	color: #DCD7C9;
	cursor: pointer;
}

.nav-links {
	display: flex;
	gap: 32px;
	align-items: center;
}

.nav-links a {
	text-decoration: none;
	color: #DCD7C9;
	opacity: 0.7;
	transition: all 0.3s ease;
	font-size: 16px;
}

.nav-links a:hover {
	opacity: 1;
	color: #DCD7C9;
}

.nav-links a.active {
	color: #7CBD40;
	opacity: 1;
}

.auth-links {
	display: flex;
	gap: 32px;
	align-items: center;
}

.auth-links a {
	text-decoration: none;
	color: #DCD7C9;
	opacity: 0.7;
	font-size: 16px;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 6px;
}

.auth-links a:hover {
	opacity: 1;
	color: #DCD7C9;
}

.auth-links i {
	font-size: 20px;
	color: #DCD7C9;
	opacity: 0.7;
	transition: all 0.3s ease;
}

.auth-links a:hover i {
	opacity: 1;
	color: #DCD7C9;
}

/* User and Guest Dropdown Styles */
.user-dropdown,
.guest-dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.user-text,
.guest-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #DCD7C9;
    padding: 8px 16px;
}

.user-text i {
    font-size: 1.2em;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #2C3639;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 4px;
}

.dropdown-content a {
    color: #DCD7C9;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: #3F4E4F;
}

.user-menu:hover .dropdown-content {
    display: block;
}

.user-dropdown {
    position: relative;
    display: inline-block;
}

.user-text {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #DCD7C9;
}

.user-dropdown .dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #2C3639;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
}

.user-dropdown .dropdown-content a {
    color: #DCD7C9;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.user-dropdown .dropdown-content a:hover {
    background-color: #3F4E4F;
}

.user-dropdown:hover .dropdown-content {
    display: block;
}

/* HOME PAGE */
/* Banner Section */
.banner {
	padding: 100px 100px;
	background-image: url('Images/46.jpg');
	background-size: cover;
	background-position: center;
	color: #FFFFFF;
}

.banner h1 {
	font-family: 'DM Serif Text', serif;
	color:#FFFFFF;
}

.banner p {
	color:#FFFFFF;
}

.btn-sched {
	background-color: #E9762B;
	border: 2px solid #E9762B;
	color: #FFFFFF;
	padding: 12px 24px;
	font-weight: 700;
	border-top-left-radius: 25px;
	border-bottom-right-radius: 25px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-block;
	text-decoration: none;
}

.btn-sched:hover {
	background-color: #E9762B;
	border: 2px solid #E9762B;
	color: #FFFFFF;
	opacity: 0.9;
}

/* About Section */
.about {
	background-color:#1E1E1E;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 100px 100px;
	gap: 40px;
	flex-wrap: wrap;
}

.about-text {
	flex: 1;
	min-width: 280px;
}

.about-text h1 {
	font-family: 'DM Serif Text', serif;
	font-size: 32px;
	margin-bottom: 16px;
	color: #DCD7C9;
}

.about-text p {
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 24px;
	color: #DCD7C9;
}

.btn {
	background-color: transparent;
	border: 2px solid #DCD7C9;
	color: #DCD7C9;
	padding: 12px 24px;
	font-weight: 700;
	border-radius: 0px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-block;
	text-decoration: none;
}

.btn:hover {
	background-color: #DCD7C9;
	color: #1E1E1E;
}

.about-image {
	flex: 1;
	min-width: 280px;
	text-align: right;
}

.about-image img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

/* Services Section */
.services {
	padding: 80px 100px;
	background-color: #DCD7C9;
	text-align: center;
}

.services-text h1 {
	font-family: 'DM Serif Text', serif;
	font-size: 32px;
	margin-bottom: 40px;
	color: #1B4242;
}

.services-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
}

.service-card {
	background-color: #DCD7C9;
	border: 2px solid #1B4242;
	padding: 24px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

.service-card:hover {
	transform: translateY(-5px);
}

.service-card h3 {
	color: #1B4242;
	margin-bottom: 12px;
}

.service-card p {
	color: #333;
	line-height: 26px;
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}

.view-more-wrapper {
  margin-top: 32px;
}

.btn-2 {
	background-color: #1B4242;
	border: 2px solid #1B4242;
	color: #FFFFFF;
	padding: 12px 24px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-block;
	text-decoration: none;
}

.btn-2:hover {
	background-color: #7CBD40;
	border: 2px solid #7CBD40;
	color: #FFFFFF;
}

.hidden {
  display: none;
}

/* Demo Reel Section */
.demo-reel {
    padding: 80px 100px;
    background-color: #1E1E1E;
    text-align: center;
    color: #DCD7C9;
}

.demo-reel h2 {
    font-family: 'DM Serif Text', serif;
    font-size: 32px;
    margin-bottom: 16px;
}

.demo-reel p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #DCD7C9;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

video {
    width: 100%;
    border-radius: 8px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .demo-reel {
        padding: 60px 40px;
    }
}

@media (max-width: 480px) {
    .demo-reel {
        padding: 40px 20px;
    }
}

/* Footer */
.site-footer {
  background-color: #1E201E;
  text-align: center;
  padding: 40px 20px;
  color: #DCD7C9;
  font-family: 'Karla', sans-serif;
}

.footer-icons {
  margin-bottom: 20px;
}

.footer-icons a {
  color: #DCD7C9;
  opacity: 0.7;
  font-size: 35px;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.footer-icons a:hover {
  opacity: 1;
  transform: scale(1.2);
  color: #7CBD40;
  filter: brightness(1.2);
  text-shadow: 0 0 5px rgba(124, 189, 64, 0.4);
}

.footer-quote {
  font-weight: 300;
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 30px;
}

.footer-logo img {
  width: 100px;
  margin: 20px 0;
}

.footer-contact p {
  margin: 2px 0;
  font-size: 18px;
}

.footer-copy {
  font-size: 16px;
  margin-top: 25px;
  opacity: 0.8;
}

/* Media Queries */
/* Responsive Hamburger Toggle */
@media (max-width: 1024px) {
  .hamburger {
    display: block;
  }

  .nav-links,
  .auth-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #1E1E1E;
    padding: 16px;
  }

  .nav-links.show,
  .auth-links.show {
    display: flex;
  }

  .nav-links {
	padding: 32px 0 16px 0;
    border-top: 1px solid #DCD7C9;
	opacity: 0.7;
  }

.nav-links a,
.auth-links a {
  font-size: 18px;
  padding: 12px 0;
  margin: 0;
}

.auth-links {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 16px;
  padding: 16px 0;
  width: 100%;
  opacity: 0.7;
  text-align: center;
  position: relative;
  border-top: 1px solid #DCD7C9;
}

.auth-links a {
  font-size: 16px;
  padding: 8px 0;
  text-align: center;
}

  .nav-left {
    justify-content: space-between;
    width: 100%;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links,
  .auth-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #1E1E1E;
    margin-top: 16px;
    padding: 16px;
  }

  .nav-links.show,
  .auth-links.show {
    display: flex;
  }

  .nav-links a,
  .auth-links a {
    justify-content: center;
    text-align: center;
  }

.auth-links {
  align-items: center;
  flex-direction: column;
  margin-top: 16px;
  padding: 16px 0;
  width: 100%;
  opacity: 0.7;
  text-align: center;
  border-top: 1px solid #DCD7C9;
}

  .nav-left {
    justify-content: space-between;
    width: 100%;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 12px 16px;
    align-items: flex-start;
  }

  .logo {
    font-size: 24px;
  }

  .nav-left {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    gap: 16px;
  }

  .hamburger {
    font-size: 24px;
  }

  .nav-links,
  .auth-links {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #1E1E1E;
    width: 100%;
    margin-top: 8px;
    padding: 12px 0;
  }

  .nav-links.show,
  .auth-links.show {
    display: flex;
  }

  .nav-links a,
  .auth-links a {
    font-size: 16px;
    padding: 10px 0;
    width: 100%;
    text-align: center;
  }

  .auth-links {
    border-top: 1px solid #DCD7C9;
    padding-top: 10px;
    opacity: 0.7;
  }

  .auth-links i {
    font-size: 18px;
  }
}
/* Home - About Responsiveness*/
@media (max-width: 768px) {
  .about {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    text-align: center;
  }

  .about-text .btn {
    margin-top: 16px;
  }
}

/* Footer Responsiveness */
@media (min-width: 1920px) {
  .logo {
    font-size: 36px;
  }
  .nav-links a,
  .auth-links a {
    font-size: 20px;
  }
  .auth-links i {
    font-size: 24px;
  }
}

/* About Page*/
/* Greetings Section */
.greetings-section {
  display: flex;
  flex-wrap: wrap;
  background-color: #1E1E1E;
  color: white;
  padding: 0 0 0 60px;
  align-items: center;
}

.greetings-text {
  flex: 1;
  min-width: 280px;
  font-family: 'Karla', sans-serif;
}

.greetings-text h1 {
  font-family: 'DM Serif Text', serif;
  font-size: 48px;
  margin-bottom: 20px;
  color: #DCD7C9;
}

.greetings-text h1 span {
  color: #7CBD40;
}

.greetings-text p {
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 420px;
  line-height: 1.6;
  color: #DCD7C9;
}

.greetings-text h1 {
  font-family: 'DM Serif Text', serif;
  font-size: 48px;
  margin-bottom: 20px;
  color: #ffffff;
}

.greetings-text h1 span {
  color: #7CBD40;
}

.greetings-text p {
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 420px;
  line-height: 1.6;
  color: #DCD7C9;
}

.greetings-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.greetings-links li {
  margin-bottom: 12px;
}

.greetings-links a {
  color: #7CBD40;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.greetings-links a span {
  font-weight: bold;
  margin-right: 8px;
  color: #7CBD40;
}

.greetings-links a:hover {
  color: #5b9d33;
}

.greetings-image {
  flex: 1;
  min-width: 280px;
  text-align: right;
  padding: 0; 
  margin: 0; 
}

/* About Us Section */
.about-us {
  padding: 100px 100px;
  background-color: #DCD7C9;
  text-align: center;
}
.about-us h1 {
  font-family: 'DM Serif Text', serif;
  font-size: 36px;
  margin-bottom: 20px;
  color: #2C3930;
}
.about-us p {
  font-size: 18px;
  max-width: 800px;
  margin: 20px auto;
  color: #1e1e1e;
}

/* Mission & Vision Section */
.mission-vision-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  background-color: #2E3B32;
  padding: 100px 20px;
  flex-wrap: wrap;
}

.mission-vision-section .card {
  background-color: #DCD7C9;
  width: 320px;
  padding: 40px 30px;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mission-vision-section h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1E1E1E;
  font-family: 'DM Serif Text', serif;
}

.mission-vision-section p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  font-family: 'Karla', serif;
}

/* About Page - Owner Profile Section */
.owner-profile {
  padding: 80px 20px;
  background-color: #1E1E1E;
}

.owner-card {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #DCD7C9;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.owner-container {
  display: flex;
  align-items: center;
  padding: 0 0 0 60px;
}

.owner-image {
  flex: 1;
}

.owner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.owner-details {
  flex: 1;
  padding: 60px;
}

.owner-details h2 {
  font-family: 'DM Serif Text', serif;
  font-size: 32px;
  color: #1B4242;
  margin-bottom: 20px;
}

.owner-details h3 {
  font-family: 'DM Serif Text', serif;
  font-size: 28px;
  color: #7CBD40;
  margin-bottom: 5px;
}

.owner-title {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
  font-weight: 700;
}

.owner-bio {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.owner-social {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.owner-social a {
  color: #1B4242;
  font-size: 24px;
  transition: color 0.3s;
}

.owner-social a:hover {
  color: #7CBD40;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .owner-profile {
    padding: 60px 20px;
  }
  
  .owner-card {
    max-width: 800px;
  }
  
  .owner-container {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .owner-profile {
    padding: 50px 20px;
  }
  
  .owner-container {
    flex-direction: column;
  }
  
  .owner-image {
    width: 100%;
  }
  
  .owner-image img {
    width: 100%;
    max-height: 400px;
  }
  
  .owner-details {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .owner-profile {
    padding: 40px 15px;
  }
  
  .owner-details h2 {
    font-size: 28px;
  }
  
  .owner-details h3 {
    font-size: 24px;
  }
  
  .owner-details {
    padding: 25px 20px;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 100px;
  background-color: #2C3930;
  text-align: left;
  color: #DCD7C9;
}

.testimonials-section h2 {
  font-family: 'DM Serif Text', serif;
  font-size: 32px;
  margin-bottom: 16px;
  color: #DCD7C9;
}

.testimonials-subtitle {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 600px;
  color: #DCD7C9;
  text-align: left;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background-color: #DCD7C9;
  padding: 30px;
  border-radius: 8px;
  text-align: left;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-content {
  margin-bottom: 20px;
  position: relative;
}

.testimonial-content i {
  font-size: 32px;
  color: #1E201E;
  opacity: 0.3;
  position: absolute;
  top: -10px;
  left: -10px;
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #1E201E;
  padding-left: 20px;
}

.testimonial-author h4 {
  font-family: 'DM Serif Text', serif;
  font-size: 20px;
  color: #2C3930;
  margin-bottom: 5px;
}

.testimonial-author p {
  font-size: 14px;
  color: #2C3930;
  opacity: 0.8;
}

/* Responsive Styles for Testimonials */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 40px;
  }
  
  .testimonials-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 50px 20px;
  }
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Section IDs styling for spacing */
.about-us, .mission-vision, .leadership, .testimonies {
  padding: 80px 100px;
}

.about-us h1,
.mission-vision h2,
.leadership h2,
.testimonies h2 {
  font-family: 'DM Serif Text', serif;
  font-size: 32px;
  margin-bottom: 16px;
  text-align: center;
}

/*About Page Media Queries*/
@media (max-width: 768px) {
  .greetings-section {
    flex-direction: column;
    height: auto;
  }

  .greetings-content {
    padding: 60px 30px;
  }

  .greetings-content h1 {
    font-size: 36px;
  }
}

/* Contact Page */
.contact-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
}

/* Left Section - Contact Info */
.contact-left {
    padding: 40px 20px;
    background-color: #DCD7C9;
    color: #000;
}

/* Right Section - Contact Form */
.contact-right {
    padding: 40px 20px;
    background-color: #2C3930;
}

/* Form Styles */
form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

input, textarea {
    background-color: #f2efe5;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-family: 'Karla', sans-serif;
    font-size: 14px;
    color: #000;
    box-sizing: border-box;
    width: 100%;
}

textarea {
    height: 120px;
    resize: none;
    margin-bottom: 20px;
}

button {
    background-color: #ff7a00;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Karla', sans-serif;
    transition: background-color 0.3s;
    width: 100%;
}

button:hover {
    background-color: #e56900;
}

/* Desktop Layout (992px and up) */
@media (min-width: 992px) {
    .contact-container {
        flex-direction: row;
    }
    
    .contact-left {
        flex: 1;
        padding: 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .contact-right {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 60px;
    }
    
    .row {
        flex-direction: row;
        gap: 20px;
    }
    
    button {
        width: auto;
    }
}

/* Text Styles (unchanged) */
.subtitle {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #1B4242;
    font-weight: 700;
}

.heading {
    font-family: 'DM Serif Text', serif;
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #1B4242;
}

.info {
    margin-bottom: 12px;
    font-size: 16px;
    color: #1B4242;
}

.hours {
    margin-top: 20px;
    font-size: 14px;
    color: #1B4242;
}

.hours span {
    color: #7CBD40;
    font-weight: bold;
}

/* Mobile-specific spacing adjustments */
@media (max-width: 767px) {
    .contact-left, .contact-right {
        padding: 30px 20px;
    }
    
    .row {
        margin-bottom: 15px;
    }
    
    input {
        margin-bottom: 0; /* Remove extra bottom margin on mobile */
    }
    
    .heading {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    button {
        padding: 12px 24px;
    }
}

/*Services Page*/
/* Services Banner */
.services-banner {
  padding: 100px 100px;
  background-size: cover;
  background-position: center;
  color: #FFFFFF;
  text-align: center;
  position: relative;
}

.services-banner h1 {
  font-family: 'DM Serif Text', serif;
  font-size: 48px;
  margin-bottom: 30px;
  color: #DCD7C9;
}

.services-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.services-banner > * {
  position: relative;
  z-index: 2;
}
/* What We Offer Section */
.what-we-offer {
  padding: 80px 100px;
  padding-bottom: 10px;
  background-color: #DCD7C9;
  text-align: center;
}

.what-we-offer h2 {
  font-family: 'DM Serif Text', serif;
  font-size: 32px;
  color: #1B4242;
  margin-bottom: 24px;
}

.what-we-offer p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  max-width: 800px;
  margin: 0 auto 20px;
}
/* Services Section */
.services {
  padding: 80px 100px;
  padding-top: 10px;
  background-color: #DCD7C9;
  text-align: center;
}

.services-text h1 {
  font-family: 'DM Serif Text', serif;
  font-size: 32px;
  margin-bottom: 40px;
  color: #1B4242;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.service-card {
  background-color: #DCD7C9;
  border: 2px solid #1B4242;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  color: #1B4242;
  margin-bottom: 12px;
  font-family: 'DM Serif Text', serif;
}

.service-card p {
  color: #333;
  line-height: 26px;
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}

/* Packages Section */
.packages {
  padding: 80px 100px;
  background-color: #2C3930;
  text-align: center;
}

.packages h2 {
  font-family: 'DM Serif Text', serif;
  font-size: 32px;
  color: #DCD7C9;
  margin-bottom: 16px;
}

.packages-subtitle {
  font-size: 18px;
  color: #DCD7C9;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.package-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.package-card {
  background-color: #DCD7C9;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s ease;
}

.package-card:hover {
  transform: translateY(-10px);
}

.package-card.popular {
  border: 2px solid #7CBD40;
  position: relative;
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background-color: #7CBD40;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
}

.package-card h3 {
  font-family: 'DM Serif Text', serif;
  font-size: 24px;
  color: #1B4242;
  margin-bottom: 20px;
}

.price {
  font-size: 36px;
  font-weight: bold;
  color: #1B4242;
  margin-bottom: 25px;
}

.price span {
  font-size: 16px;
  color: #777;
  font-weight: normal;
}

.features {
  text-align: left;
  margin-bottom: 30px;
  padding-left: 0;
}

.features li {
  list-style: none;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  color: #555;
}

.features i {
  color: #7CBD40;
  font-size: 20px;
  margin-right: 10px;
}

.package-btn {
  display: inline-block;
  background-color: #1B4242;
  color: white;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.package-btn:hover {
  background-color: #5b9d33;
}
/* Consultation CTA */
.consultation-cta {
  padding: 80px 20px;
  background-color: #1E1E1E;
  color: #DCD7C9;
  text-align: center;
}

.consultation-cta h2 {
  font-family: 'DM Serif Text', serif;
  font-size: 32px;
  margin-bottom: 20px;
}

.consultation-cta p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Services Page - FAQ Section */
/* FAQ Section */
.faq-section {
  padding: 60px 100px;
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Karla', sans-serif;
  background-color: #DCD7C9;
}

.faq-section h1 {
  font-size: 28px;
  color: #1B4242;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 600;
}

.faq-item {
  border: 1px solid #1B4242;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 15px;
}

.faq-item h3 {
  font-size: 18px;
  color: #1E1E1E;
  margin: 10px 0;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-item h3 i {
  font-size: 20px;
  transition: transform 0.3s;
}

.faq-item.active h3 i {
  transform: rotate(90deg);
}

.faq-item h3:hover {
  color: #7CBD40;
}

.faq-answer {
  color: #DCD7C9;
  background-color: #3C3D37;
  padding: 15px;
  margin-top: 10px;
  border-radius: 5px;
  line-height: 1.6;
}

.faq-answer.hidden {
  display: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .faq-section {
    padding: 40px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 30px 20px;
  }
  
  .faq-section h1 {
    font-size: 24px;
  }
  
  .faq-item h3 {
    font-size: 16px;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .services-banner {
    padding: 80px 40px;
  }
  
  .services-banner h1 {
    font-size: 36px;
  }
  
  .services {
    padding: 60px 40px;
  }
}

@media (max-width: 480px) {
  .services-banner {
    padding: 60px 20px;
  }
  
  .services-banner h1 {
    font-size: 28px;
  }
  
  .services {
    padding: 40px 20px;
  }
  
  .services-cards {
    grid-template-columns: 1fr;
  }
}

/* PROJECTS PAGE STYLES */
body {
    margin: 0;
    overflow-x: hidden;
    font-family: 'Karla', sans-serif;
    background-color: #1E1E1E;
    color: #DCD7C9;
}

.projects-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

/* Hero Section */
.projects-hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    z-index: 10;
}

.projects-hero h1 {
    font-family: 'DM Serif Text', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.projects-hero p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    max-width: 700px;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    animation: bounce 2s infinite;
}

.scroll-hint i {
    font-size: 2rem;
    color: #7CBD40;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* Project Stack */
/* PROJECT STACKING/OVERLAYING EFFECT */
.project-stack {
    position: relative;
    width: 100%;
    perspective: 1000px;
}

.project-section {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    transform-style: preserve-3d;
    z-index: 1;
}

.project-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 30, 30, 0.5);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.project-section.active::before {
    opacity: 1;
}

.project-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: translateZ(-100px) scale(1.1);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1;
}

.project-section.active .project-bg {
    transform: translateZ(0) scale(1);
}

.project-content {
    position: absolute;
    bottom: 15%;
    left: 10%;
    max-width: 500px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
    z-index: 3;
}

.project-section.active .project-content {
    opacity: 1;
    transform: translateY(0);
}

/* Stacking effect for upcoming sections */
.project-section.next {
    z-index: 2;
}

.project-section.next .project-bg {
    transform: translateZ(-50px) scale(1.05);
}

.project-content {
    position: absolute;
    bottom: 15%;
    left: 10%;
    max-width: 500px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
    will-change: transform, opacity;
}

.project-section.active .project-content {
    opacity: 1;
    transform: translateY(0);
}

.project-content h2 {
    font-family: 'DM Serif Text', serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.project-content p {
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tags span {
    background-color: #7CBD40;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
}

/* Vertical Pagination */
.vertical-pagination {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 100;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(220, 215, 201, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    background-color: #7CBD40;
    transform: scale(1.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .project-content {
        left: 5%;
        right: 5%;
        bottom: 10%;
        max-width: 100%;
        padding: 1.5rem;
        background-color: rgba(30, 30, 30, 0.7);
        border-radius: 8px;
    }

    .vertical-pagination {
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .projects-hero h1 {
        font-size: 2rem;
    }

    .projects-hero p {
        font-size: 1rem;
    }

    .project-content h2 {
        font-size: 1.5rem;
    }

    .project-content p {
        font-size: 0.9rem;
    }

    .project-tags span {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .vertical-pagination {
        right: 0.5rem;
    }
}

/* Gallery Styles */
.service-gallery {
	padding: 80px 100px;
	background-color: #DCD7C9;
}

.service-gallery h2 {
	font-family: 'DM Serif Text', serif;
	font-size: 32px;
	color: #1B4242;
	text-align: center;
	margin-bottom: 40px;
}

.gallery-container {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

.gallery-category {
	margin-bottom: 30px;
}

.gallery-category h3 {
	font-family: 'DM Serif Text', serif;
	font-size: 24px;
	color: #1B4242;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #7CBD40;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	height: 250px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
}

.gallery-item:hover {
	transform: translateY(-5px);
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.gallery-item:hover img {
	transform: scale(1.05);
}

.gallery-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(30, 30, 30, 0.8);
	color: #DCD7C9;
	padding: 15px;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
	transform: translateY(0);
}

.gallery-caption h4 {
	font-family: 'DM Serif Text', serif;
	margin-bottom: 5px;
	font-size: 18px;
}

.gallery-caption p {
	font-size: 14px;
	opacity: 0.9;
}

@media (max-width: 768px) {
	.service-gallery {
		padding: 60px 40px;
	}
	
	.gallery-grid {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	}
}

@media (max-width: 480px) {
	.service-gallery {
		padding: 40px 20px;
	}
	
	.gallery-grid {
		grid-template-columns: 1fr;
	}
}

.login-container {
	display: flex;
	min-height: calc(100vh - 80px);
}

.login-image {
	flex: 1;
	background-image: url('Images/31.jpg');
	background-size: cover;
	background-position: center;
}

.login-form {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 60px;
	background-color: #DCD7C9;
}

.login-form h1 {
	font-family: 'DM Serif Text', serif;
	color: #1B4242;
	margin-bottom: 30px;
}

.login-form form {
	max-width: 400px;
	width: 100%;
}

.login-form label {
	display: block;
	margin-bottom: 8px;
	color: #1B4242;
	font-weight: 700;
}

.login-form input {
	width: 100%;
	padding: 12px;
	margin-bottom: 20px;
	border: 1px solid #1B4242;
	border-radius: 4px;
	font-family: 'Karla', sans-serif;
}

.login-form button {
	background-color: #1B4242;
	color: white;
	border: none;
	padding: 12px 24px;
	font-size: 16px;
	cursor: pointer;
	border-radius: 4px;
	transition: background-color 0.3s;
	width: 100%;
}

.login-form button:hover {
	background-color: #7CBD40;
}

/* Password Input Styles */
.password-container {
    margin-bottom: 20px;
}

.password-input {
    position: relative;
}

.password-input input {
    padding-right: 40px;
    width: 100%;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #1B4242;
    font-size: 20px;
}

@media (max-width: 768px) {
	.login-container {
		flex-direction: column;
	}
	
	.login-image {
		height: 300px;
	}
	
	.login-form {
		padding: 40px 20px;
	}
}

/* Login Page */
.login-container {
	display: flex;
	min-height: calc(100vh - 80px);
}

.login-image {
	flex: 1;
	background-image: url('Images/31.jpg');
	background-size: cover;
	background-position: center;
}

.login-form {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 60px;
	background-color: #DCD7C9;
}

.login-form h1 {
	font-family: 'DM Serif Text', serif;
	color: #1B4242;
	margin-bottom: 30px;
}

.login-form form {
	max-width: 400px;
	width: 100%;
}

.login-form label {
	display: block;
	margin-bottom: 8px;
	color: #1B4242;
	font-weight: 700;
}

.login-form input {
	width: 100%;
	padding: 12px;
	margin-bottom: 20px;
	border: 1px solid #1B4242;
	border-radius: 4px;
	font-family: 'Karla', sans-serif;
}

.login-form button {
	background-color: #1B4242;
	color: white;
	border: none;
	padding: 12px 24px;
	font-size: 16px;
	cursor: pointer;
	border-radius: 4px;
	transition: background-color 0.3s;
	width: 100%;
}

.login-form button:hover {
	background-color: #7CBD40;
}

@media (max-width: 768px) {
	.login-container {
		flex-direction: column;
	}
	
	.login-image {
		height: 300px;
	}
	
	.login-form {
		padding: 40px 20px;
	}
}

/* Sign-up Page */
.signup-container {
	display: flex;
	min-height: calc(100vh - 80px);
}

.signup-image {
	flex: 1;
	background-image: url('Images/31.jpg');
	background-size: cover;
	background-position: center;
}

.signup-form {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 60px;
	background-color: #DCD7C9;
}

.signup-form h1 {
	font-family: 'DM Serif Text', serif;
	color: #1B4242;
	margin-bottom: 30px;
}

.signup-form form {
	max-width: 400px;
	width: 100%;
}

.signup-form label {
	display: block;
	margin-bottom: 8px;
	color: #1B4242;
	font-weight: 700;
}

.signup-form input {
	width: 100%;
	padding: 12px;
	margin-bottom: 20px;
	border: 1px solid #1B4242;
	border-radius: 4px;
	font-family: 'Karla', sans-serif;
}

.signup-form button {
	background-color: #1B4242;
	color: white;
	border: none;
	padding: 12px 24px;
	font-size: 16px;
	cursor: pointer;
	border-radius: 4px;
	transition: background-color 0.3s;
	width: 100%;
}

.signup-form button:hover {
	background-color: #7CBD40;
}

@media (max-width: 768px) {
	.signup-container {
		flex-direction: column;
	}
	
	.signup-image {
		height: 300px;
	}
	
	.signup-form {
		padding: 40px 20px;
	}
}

/* ====================== */
/* MEDIA QUERIES */
/* ====================== */

/* General Responsive Adjustments */
@media (max-width: 1200px) {
  /* Adjust banner and section paddings */
  .banner,
  .about,
  .services,
  .demo-reel,
  .about-us,
  .mission-vision-section,
  .testimonials-section,
  .consultation-cta,
  .packages,
  .service-gallery {
    padding: 80px 60px;
  }

  /* Owner profile adjustments */
  .owner-container {
    padding: 0 0 0 40px;
  }
  .owner-details {
    padding: 40px;
  }
}

@media (max-width: 992px) {
  /* Navigation adjustments */
  .nav-left {
    justify-content: space-between;
    width: 100%;
  }

  .nav-links,
  .auth-links {
    display: none;
    width: 100%;
  }

  .nav-links.show,
  .auth-links.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  /* Section padding adjustments */
  .banner,
  .about,
  .services,
  .demo-reel,
  .about-us,
  .mission-vision-section,
  .testimonials-section,
  .consultation-cta,
  .packages,
  .service-gallery {
    padding: 70px 50px;
  }

  /* Greetings section */
  .greetings-section {
    flex-direction: column;
    padding: 0 50px;
  }

  /* Owner profile */
  .owner-container {
    flex-direction: column;
    padding: 0;
  }
  .owner-image img {
    max-height: 400px;
  }
  .owner-details {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  /* General section padding */
  .banner,
  .about,
  .services,
  .demo-reel,
  .about-us,
  .mission-vision-section,
  .testimonials-section,
  .consultation-cta,
  .packages,
  .service-gallery {
    padding: 60px 40px;
  }

  /* Mission & Vision cards */
  .mission-vision-section .card {
    width: 100%;
    max-width: 500px;
  }

  /* Testimonials */
  .testimonials-container {
    grid-template-columns: 1fr;
  }

  /* Project content */
  .project-content {
    left: 5%;
    right: 5%;
    max-width: 100%;
    padding: 1.5rem;
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 8px;
  }
}

@media (max-width: 576px) {
  /* Mobile-first padding */
  .banner,
  .about,
  .services,
  .demo-reel,
  .about-us,
  .mission-vision-section,
  .testimonials-section,
  .consultation-cta,
  .packages,
  .service-gallery {
    padding: 50px 20px;
  }

  /* Navigation */
  nav {
    padding: 12px 16px;
  }
  .logo {
    font-size: 24px;
  }

  /* Banner */
  .banner h1 {
    font-size: 28px;
  }

  /* Greetings section */
  .greetings-text h1 {
    font-size: 36px;
  }

  /* Owner profile */
  .owner-details h2 {
    font-size: 28px;
  }
  .owner-details h3 {
    font-size: 24px;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 20px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Special cases for very small screens */
@media (max-width: 400px) {
  /* Adjust some elements for very small screens */
  .btn-sched, .btn, .btn-2 {
    padding: 10px 20px;
    font-size: 14px;
  }

  .greetings-text h1 {
    font-size: 32px;
  }

  .owner-details {
    padding: 20px 15px;
  }
}

/* Large desktop adjustments */
@media (min-width: 1920px) {
  .logo {
    font-size: 36px;
  }
  .nav-links a,
  .auth-links a {
    font-size: 20px;
  }
  .auth-links i {
    font-size: 24px;
  }
}

/* ====================== */
/* ABOUT PAGE MEDIA QUERIES */
/* ====================== */

/* Greetings Section */
@media (max-width: 1200px) {
  .greetings-section {
    padding: 0 60px 0 60px;
  }
}

@media (max-width: 992px) {
  .greetings-section {
    flex-direction: column;
    padding: 60px 50px;
    text-align: center;
  }
  
  .greetings-text {
    margin-bottom: 40px;
  }
  
  .greetings-image {
    text-align: center;
  }
  
  .greetings-text p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .greetings-section {
    padding: 50px 40px;
  }
  
  .greetings-text h1 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .greetings-section {
    padding: 40px 20px;
  }
  
  .greetings-text h1 {
    font-size: 32px;
  }
  
  .greetings-links {
    text-align: left;
  }
}

/* About Us, Mission & Vision, Testimonials Sections */
@media (max-width: 1200px) {
  .about-us,
  .mission-vision-section,
  .testimonials-section {
    padding: 80px 60px;
  }
}

@media (max-width: 992px) {
  .about-us,
  .mission-vision-section,
  .testimonials-section {
    padding: 70px 50px;
  }
  
  .mission-vision-section {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .about-us,
  .mission-vision-section,
  .testimonials-section {
    padding: 60px 40px;
  }
  
  .mission-vision-section .card {
    width: 100%;
    max-width: 500px;
  }
  
  .testimonials-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .about-us,
  .mission-vision-section,
  .testimonials-section {
    padding: 50px 20px;
  }
  
  .about-us h1,
  .testimonials-section h2 {
    font-size: 28px;
  }
}

/* Owner Profile Section */
@media (max-width: 1200px) {
  .owner-profile {
    padding: 80px 60px;
  }
  
  .owner-container {
    padding: 0 0 0 40px;
  }
  
  .owner-details {
    padding: 40px;
  }
}

@media (max-width: 992px) {
  .owner-profile {
    padding: 70px 50px;
  }
  
  .owner-container {
    flex-direction: column;
    padding: 0;
  }
  
  .owner-image img {
    width: 100%;
    max-height: 400px;
  }
  
  .owner-details {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .owner-profile {
    padding: 60px 40px;
  }
  
  .owner-details h2 {
    font-size: 28px;
  }
  
  .owner-details h3 {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .owner-profile {
    padding: 50px 20px;
  }
  
  .owner-details {
    padding: 25px 20px;
  }
  
  .owner-details h2 {
    font-size: 26px;
  }
  
  .owner-details h3 {
    font-size: 22px;
  }
}

/* Greetings Section Image Fix */
.greetings-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .greetings-section {
    padding: 0 60px;
  }
  .greetings-image img {
    max-width: 500px;
  }
}

@media (max-width: 992px) {
  .greetings-section {
    flex-direction: column;
    padding: 60px 50px;
    text-align: center;
  }
  .greetings-image {
    order: -1; /* Move image above text on mobile */
    margin-bottom: 30px;
    text-align: center;
  }
  .greetings-image img {
    max-width: 100%;
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .greetings-section {
    padding: 50px 40px;
  }
  .greetings-image img {
    max-height: 350px;
  }
}

@media (max-width: 576px) {
  .greetings-section {
    padding: 40px 20px;
  }
  .greetings-image img {
    max-height: 300px;
  }
}

@media (max-width: 400px) {
  .greetings-image img {
    max-height: 250px;
  }
}