* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* CSS Reset and Base Styles */
:root {
  --primary-color: #e67e22;
  --primary-dark: #d35400;
  --secondary-color: #0077b6;
  --secondary-dark: #005f8a;
  --dark-color: #2c3e50;
  --light-color: #ecf0f1;
  --gray-color: #7f8c8d;
  --white: #ffffff;
  --black: #000000;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  --border-radius: 16px;
  --popup-animation-duration: 0.5s;
  --section-padding: 120px;
  --gold-accent: #d4af37;
  --light-gray: #f5f5f5;
  --dark-gray: #333333;
}

body {
  font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.8;
  color: #333;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background-color: #f8f9fa;
  font-weight: 400;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: -0.5px;
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
}

h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

p {
  margin-bottom: 1.8rem;
  font-size: 1.1rem;
  color: #404040;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}


/* Header - Consolidated and Fixed */
header {
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;

}

.header-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;

}

/* Logo */
.logo {
  display: flex;
  justify-content: center;
  align-content: center;


}

.logo img {
  height: auto;
  width: 220px;
  padding: 10px;
}

.logo-icon {
  color: var(--primary-color);
  font-size: 28px;
}

.logo span {
  color: var(--primary-color);
}

/* Navigation */
nav ul {
  display: flex;
  gap: 30px;
}

nav ul li a {
  color: var(--dark-color);
  font-size: 20px;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
  transition: var(--transition);
}

nav ul li a:hover,
nav ul li a[aria-current="page"] {
  color: var(--primary-color);
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a[aria-current="page"]::after {
  width: 100%;
}

/* Buttons */
.btn {
  background: var(--primary-color);
  color: var(--white);
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  text-align: center;
  cursor: pointer;
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-color);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--dark-color);
  cursor: pointer;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  transition: var(--transition);
}

.mobile-menu-btn:hover {
  background: var(--light-gray);
}

/* Hero section */
.hero {
  position: relative;
  height: 80vh;
  min-height: 800px;
  color: var(--white);
  text-align: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 20px;
  animation: fadeInUp 1s ease;
  max-width: 1200px;
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: 30px;
  font-weight: 800;
  letter-spacing: 1px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
  font-size: 50px;
}

.hero p {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  margin: 0 auto 50px;
  line-height: 1.8;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  font-weight: 300;
  opacity: 0.9;
}

.btn-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Stats Counter */
.stats-counter {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
  z-index: 2;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
  text-align: center;
  color: var(--white);
  padding: 0 20px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  margin-bottom: 5px;
  line-height: 1;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

/* Section titles */
.section-title {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  padding: 0 20px;
}

.section-title h2 {
  color: var(--dark-color);
  position: relative;
  display: inline-block;
  font-size: 50px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.section-title p {
  margin: 30px auto 0;
  font-size: 1.2rem;
  font-weight: 300;
}


/* Design Philosophy Section */
.philosophy {
  padding: var(--section-padding) 0;
  background-color: var(--white);
}

.philosophy-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.philosophy-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  height: 800px;
  position: relative;
}

.philosophy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.philosophy-image:hover img {
  transform: scale(1.05);
}

.philosophy-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
  z-index: 1;
}

.philosophy-content h2 {
  margin-bottom: 30px;
  color: var(--dark-color);
  font-size: 50px;
}

.philosophy-content p {
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.philosophy-points {
  margin-top: 40px;
}

.philosophy-point {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  background: rgba(230, 126, 34, 0.05);
  padding: 25px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.philosophy-point:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.philosophy-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-right: 25px;
  flex-shrink: 0;
}

.philosophy-text h4 {
  margin-bottom: 10px;
  color: var(--dark-color);
}

.philosophy-text p {
  margin-bottom: 0;
  font-size: 1rem;
}

/* Experience Section */
.experience {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, var(--dark-color) 0%, #1a252f 100%);
  color: var(--white);
  overflow: hidden;
}

.experience-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.experience-content h2 {
  color: var(--white);
  margin-bottom: 30px;
  font-size: 50px;
}

.experience-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.experience-highlights {
  margin-top: 50px;
}

.highlight-item {
  margin-bottom: 30px;
  position: relative;
  padding-left: 40px;
}

.highlight-icon {
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--primary-color);
  font-size: 1.5rem;
}

.highlight-text h4 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.highlight-text p {
  margin-bottom: 0;
}

.experience-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  height: 500px;
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.years-badge {
  position: absolute;
  top: -30px;
  right: -30px;
  background: var(--primary-color);
  color: var(--white);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Playfair Display', serif;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.years-badge span:first-child {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.years-badge span:last-child {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Featured Projects Section */
.featured-projects {
  padding: var(--section-padding) 0;
  background-color: #f5f5f5;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.project-card {
  position: relative;
  height: 450px;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-10px);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.project-card:hover img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  color: var(--white);
  padding: 40px;
  transform: translateY(100%);
  transition: var(--transition);
}

.project-card:hover .project-overlay {
  transform: translateY(0);
}

.project-overlay h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.project-overlay p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-weight: 600;
  transition: var(--transition);
}

.project-link i {
  margin-left: 10px;
  transition: var(--transition);
}

.project-link:hover {
  color: var(--primary-color);
}

.project-link:hover i {
  transform: translateX(5px);
}

/* Testimonials */
.testimonials {
  padding: var(--section-padding) 0;
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
  background-size: cover;
  background-attachment: fixed;
  color: var(--white);
  background-position: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.12);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
  border: 3px solid var(--primary-color);
  transition: var(--transition);
}

.testimonial-card:hover .testimonial-img {
  transform: scale(1.1);
}

.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.testimonial-author p {
  opacity: 0.8;
  font-size: 1rem;
  color: #bdc3c7;
}

.testimonial-rating {
  color: #f1c40f;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.testimonial-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
  color: #ddd;
}

/* Design Process Section */
.process {
  padding: var(--section-padding) 0;
  background-color: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.process-step {
  text-align: center;
  padding: 50px 30px;
  border-radius: var(--border-radius);
  background-color: #f9f9f9;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.process-step:hover::before {
  width: 100%;
  opacity: 0.1;
}

.process-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 25px;
  font-family: 'Montserrat', sans-serif;
}

.process-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  transition: var(--transition);
}

.process-step:hover .process-icon {
  transform: scale(1.1);
}

.process-step h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.process-step p {
  color: var(--gray-color);
  font-size: 1rem;
  line-height: 1.7;
}

/* CTA section */
.cta {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta .container {
  position: relative;
  z-index: 1;
}

.cta h2 {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 50px;
}

.cta p {

  margin: 0 auto 50px;
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.8;
}

/* Footer */
footer {
  background-color: #1a252f;
  color: var(--light-color);
  padding: 100px 0 40px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
  color: var(--white);
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.footer-col ul li {
  margin-bottom: 15px;
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-col ul li:hover {
  transform: translateX(5px);
}

.footer-col ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.7);
}

.footer-col ul li a:hover {
  color: var(--primary-color);
}

.footer-col p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.7);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
  font-size: 1.2rem;
  color: var(--white);
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.copyright {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  border: none;
  box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

/* Loading animation */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.logo-loader {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark-color);
  font-family: 'Playfair Display', serif;
  margin-bottom: 30px;
}

.logo-loader span {
  color: var(--primary-color);
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Enhanced Popup Form Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);

}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.quote-popup {
  background: white;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(50px);
  transition: var(--transition);
}

.popup-overlay.active .quote-popup {
  transform: translateY(0);
}

.popup-header {
  padding: 30px;
  background: var(--primary-color);
  color: white;
  border-radius: 10px 10px 0 0;
}

.popup-header h2 {
  margin-bottom: 10px;
  font-size: 30px;
}

.form-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  position: relative;
}

.form-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  z-index: 1;
}

.form-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 10px;
  transition: var(--transition);
}

.form-step.active .step-number {
  background: var(--secondary-color);
}

.step-name {
  font-size: 0.9rem;
  opacity: 0.7;
}

.form-step.active .step-name {
  opacity: 1;
}

.popup-content {
  padding: 30px;
  position: relative;
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #999;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
}

.error-message {
  color: var(--accent-color);
  font-size: 0.9rem;
  margin-top: 5px;
  display: none;
}

.form-step-content {
  display: none;
}

.form-step-content.active {
  display: block;
}

.thank-you-message {
  text-align: center;
  padding: 40px 20px;
  display: none;
}

.checkmark-animation {
  font-size: 4rem;
  color: #2ecc71;
  margin-bottom: 20px;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  right: 35px;
  bottom: 20%;
  transform: translateY(50%);
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background: #128C7E;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
  transform: translateY(50%) scale(1.1);
}

.whatsapp-float i {
  font-size: 28px;
}

/* Optional: Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.pulse-effect {
  animation: pulse 1.5s infinite;
}

@media (max-width: 576px) {
  .whatsapp-float {
    bottom: 29%;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float i {
    font-size: 24px;
  }
}

/* New Animation for Form Submission */
@keyframes checkmark {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.form-submitted .checkmark-animation {
  display: inline-block;
  animation: checkmark 0.6s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 1200px) {
  :root {
    --section-padding: 100px;
  }

  .philosophy-container,
  .experience-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .philosophy-image,
  .experience-image {
    height: 500px;
    order: -1;
  }

  .years-badge {
    top: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
  }

  .years-badge span:first-child {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  :root {
    --section-padding: 80px;
  }

  nav ul {
    gap: 25px;
  }

  .projects-grid,
  .testimonial-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .stats-container {
    padding: 20px;
  }

  .stat-number {
    font-size: 2.8rem;
  }

  .stat-label {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 70px;
  }

  .header-container {
    flex-direction: row;
    padding: 15px 20px;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 999;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  nav ul li {
    text-align: center;
    padding: 10px 0;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .btn-container {
    margin-left: auto;
    margin-right: 15px;
  }

  .section-title p {
    font-size: 1.1rem;
  }

  .testimonial-card {
    padding: 25px;
  }

  .cta h2 {
    font-size: 2.5rem;
  }

  .cta p {
    font-size: 1.1rem;
  }

  .hero .btn-container {
    flex-direction: column;
    gap: 15px;
  }

  .hero .btn-secondary {
    margin-left: 0;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .stats-container {
    display: none;
  }

  .stat-item {
    padding: 10px 0;
  }

  .years-badge {
    width: 120px;
    height: 120px;
  }

  .years-badge span:first-child {
    font-size: 2.5rem;
  }

  .years-badge span:last-child {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  :root {
    --section-padding: 60px;
  }

  .hero {
    min-height: 700px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }


  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-links {
    justify-content: center;
  }

  .project-card {
    height: 350px;
  }

  .project-overlay {
    padding: 25px;
  }

  .project-overlay h3 {
    font-size: 1.5rem;
  }

  .years-badge {
    width: 100px;
    height: 100px;
    top: -15px;
    right: -15px;
  }

  .years-badge span:first-child {
    font-size: 2rem;
  }

  .years-badge span:last-child {
    font-size: 0.9rem;
  }
}

/* Mobile-Specific Improvements */
@media (max-width: 480px) {

  /* Hero section adjustments */
  .hero {
    min-height: 90vh;
    height: auto;
    padding: 100px 0 60px;
  }


  .hero h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  /* Mobile menu improvements */
  nav ul {
    padding: 20px;
    border-radius: 10px;
  }

  /* Form improvements */
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 15px;
    font-size: 0.95rem;
  }

  /* Project cards */
  .project-card {
    height: 300px;
  }

  .project-overlay {
    padding: 20px;
  }

  /* Testimonial cards */
  .testimonial-card {
    padding: 20px;
  }

  .testimonial-img {
    width: 60px;
    height: 60px;
  }

  /* Process steps */
  .process-step {
    padding: 30px 20px;
  }

  /* Improved popup success message */
  .popup-success-message {
    padding: 40px 20px;
  }

  .popup-success-message i {
    font-size: 3.5rem;
  }

  .popup-success-message h3 {
    font-size: 1.8rem;
  }

  .popup-success-message p {
    font-size: 1rem;
  }

  /* Enhanced thank you message */
  .thank-you-message {
    text-align: center;
    padding: 40px 20px;
    display: none;
  }

  .thank-you-message i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
    animation: float 3s ease-in-out infinite;
  }

  .thank-you-message h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
  }

  .thank-you-message p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--gray-color);
  }

  /* Back to top button positioning */
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}





/* Add this to your existing CSS */
@media (max-width: 768px) {
  #consultationBtn {
    display: none !important;
  }

  /* Optional mobile CTA button */
  .mobile-consultation-btn {
    display: block;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    z-index: 998;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-weight: 600;
  }
}

/* Hide mobile button on desktop */
@media (min-width: 769px) {
  .mobile-consultation-btn {
    display: none !important;
  }
}











/* Service page styling */

/* Section titles */
.section-title {
  text-align: center;
  margin-bottom: 80px;
}

.section-title h2 {
  font-size: 50px;
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
}

.section-title p {
  color: var(--gray-color);

  margin: 20px auto 0;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 300;
}

/* Services section */
.services {
  padding: 120px 0;
  background-color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.service-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  background: var(--white);
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-img {
  height: 280px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.15);
}

.service-content {
  padding: 35px;
}

.service-content h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.service-content p {
  color: var(--gray-color);
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.8;
}

.service-features {
  margin-bottom: 25px;
}

.service-features h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--dark-color);
  font-family: 'Montserrat', sans-serif;
}

.service-features ul {
  margin-left: 20px;
}

.service-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: var(--gray-color);
}

.service-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* Service Detail Sections */
.service-detail {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.service-detail-content {
  display: flex;
  gap: 50px;
  align-items: center;
}

.service-detail-text {
  flex: 1;
}

.service-detail-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.service-detail-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.service-detail-image:hover img {
  transform: scale(1.05);
}

.service-detail h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.service-detail p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--gray-color);
}

.service-process {
  margin-top: 40px;
}

.service-process h4 {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--dark-color);
  font-family: 'Playfair Display', serif;
}

.service-process ol {
  counter-reset: step-counter;
  margin-left: 20px;
  list-style: none;
}

.service-process li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 25px;
  counter-increment: step-counter;
  color: var(--gray-color);
  line-height: 1.7;
}

.service-process li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
}

/* Testimonials */
.testimonials {
  padding: 120px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
  background-size: cover;
  background-attachment: fixed;
  color: var(--white);
  background-position: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
  border: 3px solid var(--primary-color);
  transition: var(--transition);
}

.testimonial-card:hover .testimonial-img {
  transform: scale(1.1);
}

.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author h4 {
  font-size: 22px;
  margin-bottom: 8px;
}

.testimonial-author p {
  opacity: 0.8;
  font-size: 16px;
}

.testimonial-rating {
  color: #f1c40f;
  margin-bottom: 20px;
  font-size: 20px;
}

.testimonial-card p {
  font-size: 18px;
  line-height: 1.8;
  font-style: italic;
}

/* CTA section */
.cta {
  padding: 120px 0;
  background-color: var(--dark-color);
  color: var(--white);
  text-align: center;
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 30px;
  font-weight: 700;
}

.cta p {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  opacity: 0.9;
  line-height: 1.8;
  color: #eee;
}

/* Contact Form */
.contact-form {
  max-width: 800px;
  background: var(--white);
  padding: 50px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--dark-color);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* Footer */
footer {
  background-color: #1a252f;
  color: var(--light-color);
  padding: 100px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
}

.footer-col h3 {
  font-size: 24px;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.footer-col ul li {
  margin-bottom: 15px;
  font-size: 18px;
  transition: var(--transition);
}

.footer-col ul li:hover {
  transform: translateX(5px);
}

.footer-col ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--primary-color);
}

.footer-col p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.social-links {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
  font-size: 20px;
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.copyright {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 16px;
  color: #bdc3c7;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  border: none;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

/* Loading animation */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.logo-loader {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark-color);
  font-family: 'Playfair Display', serif;
  margin-bottom: 30px;
}

.logo-loader span {
  color: var(--primary-color);
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.logo-icon {
  color: var(--primary-color);
  font-size: 2.5rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Error messages */
.error-message {
  color: #e74c3c;
  margin-top: 5px;
  font-size: 14px;
  display: none;
}

.form-group.error .error-message {
  display: block;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: #e74c3c;
}

/* Responsive Design */
/* @media (max-width: 1200px) {
  .section-title h2 {
    font-size: 42px;
  }

  .service-detail-content {
    flex-direction: column;
  }

  .service-detail-text {
    order: 2;
  }

  .service-detail-image {
    order: 1;
    margin-bottom: 40px;
  }
} */

/* @media (max-width: 992px) {
  nav ul {
    gap: 25px;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .testimonial-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
} */

/* @media (max-width: 768px) {
  .header-container {
    flex-direction: row;
    padding: 15px 10;
  }

  nav {
    display: none;
    width: 100%;
    order: 3;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
    align-items: center;
  }

  .mobile-menu-btn {
    display: block;
    order: 2;
  }

  .btn-container {
    order: 1;
    margin-left: auto;
    margin-right: 15px;
  }

  .section-title h2 {
    font-size: 36px;

  }

  .section-title p {
    font-size: 18px;
  }

  .service-content,
  .testimonial-card {
    padding: 25px;
  }

  .cta h2 {
    font-size: 42px;
  }

  .cta p {
    font-size: 18px;
  }

  .contact-form {
    padding: 30px;
  }

  .hero {
    height: 50vh;
    min-height: 400px;
  }
} */

/* @media (max-width: 576px) {
  .hero {
    min-height: 350px;
  }

  .hero h1 {
    font-size: 36px;
  }
} */




/* About page styling */
/* Hero section */
.about-hero {
  position: relative;
  height: 50vh;
  min-height: 600px;
  color: var(--white);
  text-align: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.about-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 20px;
  animation: fadeInUp 1s ease;
}

.about-hero h1 {
  font-size: 50px;
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin: 0 auto 50px;
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  font-weight: 300;
}

/* Section titles */
.section-title {
  text-align: center;
  margin-bottom: 80px;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark-color);
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
}

.section-title p {
  color: var(--gray-color);
  margin: 20px auto 0;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 300;
}

/* About Section */
.about-story {
  padding: 120px 0;
  background-color: var(--white);
}

.story-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  height: 800px;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.story-image:hover img {
  transform: scale(1.05);
}

.story-content h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 30px;
  color: var(--dark-color);
}

.story-content p {
  color: var(--gray-color);
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 18px;
}

.milestones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.milestone-item {
  text-align: center;
  padding: 30px;
  background: #f9f9f9;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.milestone-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

.milestone-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
}

.milestone-label {
  font-size: 18px;
  color: var(--dark-color);
  font-weight: 600;
}

/* Values Section */
.values {
  padding: 120px 0;
  background-color: #f5f5f5;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.value-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
}

.value-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.value-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 32px;
  transition: var(--transition);
}

.value-card:hover .value-icon {
  transform: rotate(15deg) scale(1.1);
}

.value-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.value-card p {
  color: var(--gray-color);
  line-height: 1.8;
}

/* Team Section */
.team {
  padding: 120px 0;
  background-color: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.team-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.team-image {
  height: 400px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-content {
  padding: 30px;
  text-align: center;
  background: var(--white);
}

.team-content h3 {
  font-size: 24px;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.team-content p.position {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.team-content p.bio {
  color: var(--gray-color);
  margin-bottom: 20px;
  line-height: 1.7;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.team-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-color);
  transition: var(--transition);
}

.team-social a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

/* Clients Section */
.clients {
  padding: 120px 0;
  background-color: #f5f5f5;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 60px;
}

.client-logo {
  max-width: 180px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* CTA Section */
.about-cta {
  padding: 120px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: var(--white);
  text-align: center;
}

.about-cta h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 30px;
  font-weight: 700;
}

.about-cta p {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  opacity: 0.9;
  line-height: 1.8;
}

/* Footer */
footer {
  background-color: #1a252f;
  color: var(--light-color);
  padding: 100px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
}

.footer-col h3 {
  font-size: 24px;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.footer-col ul li {
  margin-bottom: 15px;
  font-size: 18px;
  transition: var(--transition);
}

.footer-col ul li:hover {
  transform: translateX(5px);
}

.footer-col ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--primary-color);
}

.footer-col p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.social-links {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
  font-size: 20px;
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.copyright {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 16px;
  color: #bdc3c7;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  border: none;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

/* Loading animation */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.logo-loader {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark-color);
  font-family: 'Playfair Display', serif;
  margin-bottom: 30px;
}

.logo-loader span {
  color: var(--primary-color);
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.logo-icon {
  color: var(--primary-color);
  font-size: 2.5rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
/* @media (max-width: 1200px) {
  .section-title h2 {
    font-size: 42px;
  }

  .story-container {
    gap: 40px;
  }
} */

/* @media (max-width: 992px) {
  nav ul {
    gap: 25px;
  }

  .story-container {
    grid-template-columns: 1fr;
  }

  .story-image {
    height: 500px;
    order: -1;
  }

  .milestones {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-logos {
    gap: 30px;
  }

  .client-logo {
    max-width: 140px;
  }
} */

/* @media (max-width: 768px) {
  .header-container {
    flex-direction: row;
    padding: 15px 0;
  }

  nav {
    display: none;
    width: 100%;
    order: 3;
    margin-top: 20px;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
    align-items: center;
  }

  .mobile-menu-btn {
    display: block;
    order: 2;
  }

  .btn-container {
    order: 1;
    margin-left: auto;
    margin-right: 15px;
  }

  .section-title h2 {
    font-size: 36px;
  }

  .section-title p {
    font-size: 18px;
  }

  .about-hero {
    min-height: 500px;
  }

  .about-hero h1 {
    font-size: 36px;
  }

  .milestones {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .client-logos {
    gap: 20px;
  }

  .client-logo {
    max-width: 120px;
  }
} */

/* @media (max-width: 576px) {
  .about-hero {
    height: 70vh;
    min-height: 400px;
  }

  .footer-col {
    text-align: center;
  }

  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-links {
    justify-content: center;
  }

  .client-logos {
    gap: 15px;
  }

  .client-logo {
    max-width: 100px;
  }
} */


.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  z-index: 100;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.pulse-effect {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}




/* Contact page styling */

.hero {
  position: relative;
  height: 50vh;
  color: var(--white);
  text-align: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 20px;
  animation: fadeInUp 1s ease;
}

.hero h1 {
  font-size: 50px;
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin: 0 auto 50px;
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  font-weight: 300;
}

/* Section titles */

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark-color);
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
}

.section-title p {
  color: var(--gray-color);
  margin: 20px auto 0;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 300;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background-color: var(--white);
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 60px;
}

.contact-info {
  background-color: #f9f9f9;
  padding: 50px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-info h3 {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--dark-color);
}

.contact-details {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.contact-text p,
.contact-text a {
  color: var(--gray-color);
  font-size: 16px;
  line-height: 1.6;
}

.contact-text a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-links a {
  width: 50px;
  height: 50px;
  background-color: rgb(44 62 80);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-5px);
}

/* Contact Form */
.contact-form {
  background-color: var(--white);
  padding: 50px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--dark-color);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* Map Section */
.map-section {
  padding: 0 0 100px;
}

.map-container {
  height: 500px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Success Message */
.success-message {
  display: none;
  padding: 30px;
  background-color: #f0fff0;
  border-radius: var(--border-radius);
  border-left: 5px solid #4CAF50;
  margin-bottom: 30px;
}

.success-message.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.success-message i {
  color: #4CAF50;
  font-size: 24px;
  margin-right: 15px;
}

/* Error messages */
.error-message {
  color: #e74c3c;
  margin-top: 5px;
  font-size: 14px;
  display: none;
}

.form-group.error .error-message {
  display: block;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: #e74c3c;
}


/* Project page styling */
.hero-projects {
  position: relative;
  height: 70vh;
  min-height: 500px;
  color: var(--white);
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
  text-align: center;
}

.hero-projects-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 20px;
  animation: fadeInUp 1s ease;
}

.hero-projects h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-projects p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  font-weight: 300;
}

/* Project categories */
.project-categories {
  text-align: center;
  margin-bottom: 50px;
}

.category-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.category-btn {
  padding: 12px 25px;
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.category-btn:hover,
.category-btn.active {
  background-color: var(--primary-color);
  color: var(--white);
}


/* Project details section */
.project-details {
  padding: 80px 0;
  background-color: var(--white);
}

.details-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.details-content h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: var(--dark-color);
}

.details-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-color);
  margin-bottom: 30px;
}

.details-list {
  margin-bottom: 40px;
}

.detail-item {
  display: flex;
  margin-bottom: 20px;
}

.detail-icon {
  font-size: 24px;
  color: var(--primary-color);
  margin-right: 20px;
  flex-shrink: 0;
}

.detail-text h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.detail-text p {
  margin-bottom: 0;
  font-size: 1rem;
}

.details-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.details-gallery img {
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
}

.details-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Testimonials */
.testimonials {
  padding: 120px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
  background-size: cover;
  background-attachment: fixed;
  color: var(--white);
  background-position: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
  border: 3px solid var(--primary-color);
  transition: var(--transition);
}

.testimonial-card:hover .testimonial-img {
  transform: scale(1.1);
}

.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author h4 {
  font-size: 22px;
  margin-bottom: 8px;
}

.testimonial-author p {
  opacity: 0.8;
  font-size: 16px;
}

.testimonial-rating {
  color: #f1c40f;
  margin-bottom: 20px;
  font-size: 20px;
}

.testimonial-card p {
  font-size: 18px;
  line-height: 1.8;
  font-style: italic;
}

/* CTA section */
.cta {
  padding: 120px 0;
  background-color: var(--dark-color);
  color: var(--white);
  text-align: center;
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 30px;
  font-weight: 700;
}

.cta p {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  opacity: 0.9;
  line-height: 1.8;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.pagination-list {
  display: flex;
  list-style: none;
  gap: 10px;
}

.pagination-item a,
.pagination-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-weight: 600;
  transition: var(--transition);
}

.pagination-item a {
  background-color: #f5f5f5;
  color: var(--dark-color);
}

.pagination-item a:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.pagination-item span.current {
  background-color: var(--primary-color);
  color: var(--white);
}

.pagination-item .prev,
.pagination-item .next {
  width: auto;
  padding: 0 20px;
  border-radius: 30px;
}



/* Gallery Page styling */
.page-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  color: var(--white);
  text-align: center;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1600121848594-d8644e57abab?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 20px;
  animation: fadeInUp 1s ease;
}

.hero-content h1 {
  font-size: 60px;
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 20px;
  margin: 0 auto 50px;
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(172, 172, 172, 0.3);
  font-weight: 300;
  color: white;
}



.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 12px 25px;
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: 300px;
  gap: 20px;
  margin-bottom: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: var(--transition);
}

.gallery-item.wide {
  grid-column: span 1;
}

.gallery-item.tall {
  grid-row: span 1;
}

.gallery-item.large {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  padding: 20px;
  text-align: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h3 {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 10px;
  transform: translateY(20px);
  transition: var(--transition);
}

.gallery-overlay p {
  color: var(--white);
  opacity: 0.9;
  transform: translateY(20px);
  transition: var(--transition);
  transition-delay: 0.1s;
}

.gallery-item:hover .gallery-overlay h3,
.gallery-item:hover .gallery-overlay p {
  transform: translateY(0);
}

.gallery-overlay i {
  color: var(--white);
  font-size: 48px;
  transition: var(--transition);
  margin-bottom: 15px;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1.2);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 30px;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--primary-color);
}



/* CSS (smooth style for success message) */
.success-message {
  display: none;
  background: #e6f9ec;
  border: 1px solid #28a745;
  color: #155724;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 15px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}

.success-message i {
  margin-right: 6px;
  color: #28a745;
}



/* CSS (Button + Loader Style) */

.btn-loader {
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}






/* Responsive Design */
@media (max-width: 1200px) {
  :root {
    --section-padding: 100px;
  }

  .philosophy-container,
  .experience-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .philosophy-image,
  .experience-image {
    height: 500px;
    order: -1;
  }

  .years-badge {
    top: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
  }

  .years-badge span:first-child {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  :root {
    --section-padding: 80px;
  }

  nav ul {
    gap: 25px;
  }

  .projects-grid,
  .testimonial-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .stats-container {
    padding: 20px;
  }

  .stat-number {
    font-size: 2.8rem;
  }

  .stat-label {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 70px;
  }

  .header-container {
    flex-direction: row;
    padding: 15px 20px;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 999;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  nav ul li {
    text-align: center;
    padding: 10px 0;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .btn-container {
    margin-left: auto;
    margin-right: 15px;
  }

  .section-title p {
    font-size: 1.1rem;
  }

  .testimonial-card {
    padding: 25px;
  }

  .cta h2 {
    font-size: 2.5rem;
  }

  .cta p {
    font-size: 1.1rem;
  }

  .hero .btn-container {
    flex-direction: column;
    gap: 15px;
  }

  .hero .btn-secondary {
    margin-left: 0;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .stats-container {
    display: none;
  }

  .stat-item {
    padding: 10px 0;
  }

  .years-badge {
    width: 120px;
    height: 120px;
  }

  .years-badge span:first-child {
    font-size: 2.5rem;
  }

  .years-badge span:last-child {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  :root {
    --section-padding: 60px;
  }

  .hero {
    min-height: 700px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }



  .footer-col h3::after {
    left: 9%;
    transform: translateX(-50%);
  }

  .social-links {
    justify-content: center;
  }

  .project-card {
    height: 350px;
  }

  .project-overlay {
    padding: 25px;
  }

  .project-overlay h3 {
    font-size: 1.5rem;
  }

  .years-badge {
    width: 100px;
    height: 100px;
    top: -15px;
    right: -15px;
  }

  .years-badge span:first-child {
    font-size: 2rem;
  }

  .years-badge span:last-child {
    font-size: 0.9rem;
  }
}

/* Mobile-Specific Improvements */
@media (max-width: 480px) {

  /* Hero section adjustments */
  .hero {
    min-height: 90vh;
    height: auto;
    padding: 100px 0 60px;
  }

  .hero h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  /* Mobile menu improvements */
  nav ul {
    padding: 20px;
    border-radius: 10px;
  }

  /* Form improvements */
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 15px;
    font-size: 0.95rem;
  }

  /* Project cards */
  .project-card {
    height: 300px;
  }

  .project-overlay {
    padding: 20px;
  }

  /* Testimonial cards */
  .testimonial-card {
    padding: 20px;
  }

  .testimonial-img {
    width: 60px;
    height: 60px;
  }

  /* Process steps */
  .process-step {
    padding: 30px 20px;
  }

  /* Improved popup success message */
  .popup-success-message {
    padding: 40px 20px;
  }

  .popup-success-message i {
    font-size: 3.5rem;
  }

  .popup-success-message h3 {
    font-size: 1.8rem;
  }

  .popup-success-message p {
    font-size: 1rem;
  }

  /* Enhanced thank you message */
  .thank-you-message {
    text-align: center;
    padding: 40px 20px;
    display: none;
  }

  .thank-you-message i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
    animation: float 3s ease-in-out infinite;
  }

  .thank-you-message h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
  }

  .thank-you-message p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--gray-color);
  }

  /* Back to top button positioning */
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* Add this to your existing CSS */
@media (max-width: 768px) {
  #consultationBtn {
    display: none !important;
  }

  /* Optional mobile CTA button */
  .mobile-consultation-btn {
    display: block;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    z-index: 998;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-weight: 600;
  }
}

/* Hide mobile button on desktop */
@media (min-width: 769px) {
  .mobile-consultation-btn {
    display: none !important;
  }
}

/* Device simulation for testing */
.device-test {
  position: fixed;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px;
  border-radius: 5px;
  z-index: 10000;
  font-size: 14px;
}