/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

:root {
  --primary-color: #5c2c09;
  --secondary-color: #d2691e;
  --accent-color: #daa520;
  --dark-wood: #654321;
  --light-wood: #deb887;
  --cream: #f5f5dc;
  --white: #f8f8f8;
  --black: #2c1810;
  --gray: #666666;
  --light-gray: #f0e6d2;

  --font-primary: "Playfair Display", serif;
  --font-secondary: "Inter", sans-serif;

  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 5px 20px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.2);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
 /* color: black;*/
 background:black;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  line-height: 1.6;
  color: var(--black);
 
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Loading Screen */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: url('sven-brandsma-ZvO9hqVE62s-unsplash.jpg') no-repeat center center;
  background-size: cover; /* Ensures full coverage and preserves aspect ratio */
  
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 1s ease-in, visibility 1s ease;
  background-color: #000;
}

/* iOS fix – remove background-attachment: fixed */
@supports (-webkit-touch-callout: none) {
  #loading-screen {
    background-attachment: scroll !important;
  }
}






#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  text-align: center;
 
}
.loading-content h3 {
  font-family: var(--font-primary);
  font-size: 3rem;
 
  color:var(--light-wood);
  opacity: 1;
  animation: fadeInUp 1s ease forwards;
}
.loading-content h4 {
  font-family: var(--font-primary);
  font-size: 2rem;
  margin-bottom: 1rem;
  color:var(--light-wood);
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}



.loading-bar {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.loading-progress {
  height: 100%;
  background: var(--dark-wood);
  width: 0;
  animation:loadProgress 1s ease-in-out forwards;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loadProgress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.loading-logo {
  width: 150px;         /* Decrease size as needed (e.g., 100px, 120px, etc.) */
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;       /* Center the image horizontally */
}


/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.2); /* Semi-transparent white */
  color: var(--cream);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px 24px 24px 24px;
  border: 1px solid rgba(255, 255, 255, 0.3); /* Soft frosted edge */
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.1),  /* Outer soft shadow */
    inset 0 -1px 0 rgba(255, 255, 255, 0.2); /* Light inner line */
  z-index: 1000;
  transition: var(--transition);
  padding:0; /* Padding for better spacing */
}

/* Nav Links */
.navbar a {
  color: var(--accent-color);
  text-decoration: none;

  
  transition: var(--transition);
}

.navbar a:hover {
  color: var(--accent-color); /* Golden hover tone */
  text-shadow: 0 0 5px rgba(218, 165, 32, 0.5);
}

/* Navbar when scrolled */
.navbar.scrolled {
 
  box-shadow: var(--shadow-medium);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var( --accent-color);
}

.nav-logo i
 {
  margin-right: 0.5rem;
  font-size: 1.8rem;
  color: var(--accent-color);

}
.nav-logo span {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  font-size: 1.5rem;               /* Scalable size for clarity */
  letter-spacing: 1px;             /* Elegant spacing between letters */
  text-transform: uppercase;       /* Makes it more prominent */
  color: var(--accent-color);   /* Ensures it aligns with theme */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); /* Soft depth */
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .nav-logo span {
    font-size: 1.2rem; /* Adjusted for smaller screens */
  }
}
.nav-logo img.logo-img {
  height:60px;
  width: auto;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.nav-logo img.logo-img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .nav-logo img.logo-img {
    height: 32px;
    margin-right: 8px;
  }
}
/*
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  
}

.nav-link {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}*/
.navbar .nav-menu {
  display: flex;
  align-items: center;
  justify-content: center; /* optional: if you want all items centered horizontally */
  list-style: none;
  padding: 0;
  margin: 0;
}

.navbar .nav-menu li {
  position: relative;
  margin: 0 10px;
}

.navbar .nav-link {
  display: inline-block;
  padding: 1rem 1.25rem;
  text-align: center;
  text-decoration: none;
  color: var(--accent-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background-color: transparent;
}

.hamburger span {
  width: 25px;
  height: 3px;
   background: var(--accent-color);
  margin: 3px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;

  background-image: url('your-image-url-or-base64-here');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}


.wood-grain {
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(101, 67, 33, 0.25) 0px,
      rgba(101, 67, 33, 0.25) 2px,
      rgba(139, 69, 19, 0.15) 2px,
      rgba(139, 69, 19, 0.15) 4px
    ),
    radial-gradient(circle at 20% 20%, rgba(160, 82, 45, 0.1), transparent 60%),
    linear-gradient(90deg, #7b4a22 0%, #5a2e10 50%, #7b4a22 100%);
  background-size: 100% 100%, 150% 150%, 100% 100%;
  animation: woodGrain 30s linear infinite;
  filter: brightness(0.9) contrast(1.1);
}



.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, rgba(210, 105, 30, 0.05) 100%);
}

@keyframes woodGrain {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 60px 60px, -60px 60px, 0 0;
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-text {
  opacity: 0;
  animation: slideInLeft 1s ease 0.5s forwards;
}

.hero-title {
  font-family: var(--font-primary);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color:var(--light-wood);
}

.title-line {
  display: block;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.title-line:nth-child(1) {
  animation-delay: 0.7s;
}
.title-line:nth-child(2) {
  animation-delay: 0.9s;
}
.title-line:nth-child(3) {
  animation-delay: 1.1s;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.3s forwards;
}
/**mob colr change*/
@media (max-width: 768px) 
{
  
  
  .btn-secondary span
  {
  color: var(--black);
 
  }
  .btn-secondary
  {
    border: 2px solid var(--black)
  }
}
  


.hero-buttons {
  display: flex;
  gap: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.5s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color));
  color: var(--white);
  box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

.btn-secondary {
  background: transparent;
  color: var(--light-gray);
  border: 2px solid var(--light-gray);
}

.btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--white);
  transform: translateY(-2px);
  border:2px solid var(--secondary-color);
}

.hero-image {
  position: relative;
  opacity: 0;
  animation: slideInRight 1s ease 0.7s forwards;
}

.floating-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-heavy);
  text-align: center;
  animation: float 6s ease-in-out infinite;
  position: relative;
}

.floating-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color), var(--primary-color));
  border-radius: 22px;
  z-index: -1;
}

.card-content i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.card-content h3 {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 2px;
  height: 30px;
  background: var(--primary-color);
  position: relative;
}

.scroll-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  transform: rotate(45deg);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Section Styles */
section {
  padding: 5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-primary);
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* About Section */
.about {
  background: var(--light-gray);
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(139, 69, 19, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(210, 105, 30, 0.05) 0%, transparent 50%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-light);
  margin-bottom: 2rem;
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.about-card h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.stat-number {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-image {
  position: relative;
}

.image-container {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--light-wood), var(--cream));
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.wood-texture-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(139, 69, 19, 0.1) 2px,
      rgba(139, 69, 19, 0.1) 4px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 20px,
      rgba(139, 69, 19, 0.05) 20px,
      rgba(139, 69, 19, 0.05) 40px
    );
}

.about-features {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.feature-item:hover {
  background: var(--white);
  transform: translateX(10px);
}

.feature-item i {
  font-size: 1.5rem;
  color: var(--secondary-color);
}

/* Services Section */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-icon i {
  font-size: 2rem;
  color: var(--white);
}

.service-card h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--gray);
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

/* Gallery Section */
.gallery {
  background: var(--light-gray);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.8rem 1.5rem;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-color);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-item {
  opacity: 1;
  transition: var(--transition-slow);
}

.gallery-item.hidden {
  opacity: 0;
  transform: scale(0.8);
}

.gallery-image {
  position: relative;
  height: 250px;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Fills the container neatly */
  display: block;
  border-radius: 15px; /* Optional: applies same rounding to image */
  transition: transform 0.3s ease; /* optional hover zoom effect */
}

.gallery-image:hover img {
  transform: scale(1.05); /* optional zoom on hover */
}


.wood-sample {
  width: 100%;
  height: 100%;
  transition: var(--transition);
}

.interior-wood {
  background: linear-gradient(45deg, #deb887 25%, transparent 25%),
    linear-gradient(-45deg, #deb887 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #deb887 75%),
    linear-gradient(-45deg, transparent 75%, #deb887 75%), linear-gradient(135deg, #f5deb3, #d2b48c);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.commercial-wood {
  background: repeating-linear-gradient(90deg, #8b4513 0px, #8b4513 2px, #a0522d 2px, #a0522d 4px),
    linear-gradient(135deg, #8b4513, #a0522d);
}

.marine-wood {
  background: radial-gradient(circle at 25% 25%, #4682b4 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, #5f9ea0 0%, transparent 50%), linear-gradient(135deg, #2f4f4f, #708090);
}

.decorative-wood {
  background: linear-gradient(90deg, #cd853f 50%, #d2691e 50%),
    linear-gradient(45deg, transparent 30%, rgba(139, 69, 19, 0.3) 30%, rgba(139, 69, 19, 0.3) 70%, transparent 70%);
  background-size: 40px 40px, 20px 20px;
}

.structural-wood {
  background: linear-gradient(0deg, #654321 50%, #8b4513 50%),
    repeating-linear-gradient(90deg, transparent, transparent 10px, rgba(0, 0, 0, 0.1) 10px, rgba(0, 0, 0, 0.1) 12px);
  background-size: 100% 30px, 100% 100%;
}

.outdoor-wood {
  background: linear-gradient(135deg, #228b22 0%, #32cd32 50%, #228b22 100%),
    repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(0, 0, 0, 0.1) 5px, rgba(0, 0, 0, 0.1) 10px);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--white);
  text-align: center;
  padding: 2rem;
   pointer-events: none;
}

.gallery-image:hover .gallery-overlay {
  opacity: 1;
}

.gallery-image:hover .wood-sample {
  transform: scale(1.1);
}

.gallery-overlay h4 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.gallery-overlay p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.view-btn {
  background: var(--secondary-color);
  color: var(--white);
  border: none;
  padding: 0.8rem;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.2rem;
  
}

.view-btn:hover {
  background: var(--accent-color);
  transform: scale(1.1);
}

/* Contact Section */
.contact {
  background: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  display: grid;
  gap: 1.5rem;
}

.contact-card {
  background:
    repeating-linear-gradient(
      90deg,
      rgba(139, 69, 19, 0.05) 0px,
      rgba(139, 69, 19, 0.05) 2px,
      transparent 2px,
      transparent 4px
    ),
    linear-gradient(135deg, #fdf6ec, #f7e7d0);
  
  box-shadow: var(--shadow-light);
  backdrop-filter: blur(2px); /* optional */

  padding: 2rem;
  border-radius: 15px;
  transition: var(--transition);
  text-align: center;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.contact-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.contact-card h4 {
  font-family: var(--font-primary);
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-form {
  background:
    repeating-linear-gradient(
      90deg,
      rgba(139, 69, 19, 0.05) 0px,
      rgba(139, 69, 19, 0.05) 2px,
      transparent 2px,
      transparent 4px
    ),
    linear-gradient(135deg, #fdf6ec, #f7e7d0);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  backdrop-filter: blur(2px); /* optional */
}
 
.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid transparent;
  border-radius: 10px;
  background: var(--white);
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary-color);
}

.form-group label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--gray);
  transition: var(--transition);
  pointer-events: none;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
  top: -0.5rem;
  left: 0.5rem;
  font-size: 0.8rem;
  color: var(--secondary-color);
  background: var(--white);
  padding: 0 0.5rem;
}

/* Footer */
.footer {
  background:
    repeating-linear-gradient(
      90deg,
      rgba(101, 67, 33, 0.25) 0px,
      rgba(101, 67, 33, 0.25) 2px,
      rgba(139, 69, 19, 0.15) 2px,
      rgba(139, 69, 19, 0.15) 4px
    ),
    radial-gradient(circle at 20% 80%, rgba(160, 82, 45, 0.1), transparent 60%),
    linear-gradient(90deg, #7b4a22 0%, #5a2e10 50%, #7b4a22 100%);
  background-size: 100% 100%, 150% 150%, 100% 100%;
  color: var(--white);
  padding: 3rem 0 1rem;
  filter: brightness(0.95) contrast(1.1);
}


.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-logo i {
  margin-right: 0.5rem;
  font-size: 1.8rem;
  color: var(--accent-color);
}

.footer-section h4 {
  font-family: var(--font-primary);
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--accent-color);
}
@media(max-width:786px) {
  .footer-section .contact-item
  {
display: flex  ;
align-items: center;
justify-content:center;

}
}
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) 

{
 
  .hamburger {
    display: flex;  
 

  }

 .nav-menu {

  position: fixed;
  top: 61px;
  left: -100%;
  width: 100%;
  height: calc(100vh - 70px);

  background: rgba(255, 255, 255, 0.6); /* Matching transparency */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.3); /* Optional soft edge */
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.1),     /* Soft outer shadow */
    inset 0 -1px 0 rgba(255, 255, 255, 0.2); /* Light inner line */

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 2rem;
  transition: var(--transition);
  z-index: 1000;


}

.nav-menu.active {
  left: 0;
}

.nav-menu li {
  list-style: none;
  width: 100%;
  
  max-width: 400px;
  margin: 1rem 0;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  display: inline-block;
  cursor: pointer;

 
 
  border: 1px solid rgba(255, 255, 255, 0.3); /* Soft frosted edge */
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.1),       /* Outer soft shadow */
    inset 0 -1px 0 rgba(255, 255, 255, 0.2); /* Light inner line */

  transition: var(--transition);
}



.nav-menu li:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.3);
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.12),
    inset 0 -1px 0 rgba(255, 255, 255, 0.25);
}

.nav-menu li a {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  display: block;
  text-align: center;
  padding: 0.75rem 1rem;
  transition: color 0.3s ease;
}


  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
  @media (max-width: 768px) 
  {
    .hero
    {
      margin-top: 25px;
    }
  }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .btn-secondary {
    border: 2px solid var(--secondary-color);
    background-color: var(--secondary-color);
  }
  .btn-secondary span {
    color: var(--white);
  }

  .nav-container {
    padding: 1rem;
  }
  
  
  .container {
    padding: 0 1rem;
  }

  section {
    padding: 3rem 0;
  }
}


/* Scroll animations */
.fade-in {
  opacity: 1;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-reset {
  opacity: 0;
  transform: translateY(30px);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: var(--transition-slow);
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: var(--transition-slow);
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}
/* Sakthi Gold Section */
.sakthi-section {
  padding: 100px 20px;
  background: linear-gradient(145deg, #f2f2f2, #ffffff);
}

.sakthi-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  justify-content: space-between;
}

.sakthi-text {
  flex: 1 1 450px;
  font-size: 1rem;
  color: #333;
}

.sakthi-text .intro {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.sakthi-text .why-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.sakthi-image {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 400px;
  overflow: hidden;
}



.sakthi-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sakthi-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;

  z-index: 1;
  pointer-events: none;
}






.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  font-size: 1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: #444;
}

.feature-list li i {
  color: #2ecc71;
  margin-right: 10px;
  font-size: 1.1rem;
}

.sakthi-image {
  flex: 1 1 350px;
  display: flex;
  justify-content: center;
}

/*.glass-card {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  overflow: hidden;
  padding: 1rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.4s ease;
}
  */

.glass-card:hover {
  transform: scale(1.03);
}

.glass-card img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .sakthi-content {
    flex-direction: column;
  }

  .sakthi-text,
  .sakthi-image {
    flex: 1 1 100%;
  }
}
/* Brands Section */
/* Background and section style */
.brands-section {
  padding: 80px 0;
  background: linear-gradient(120deg, #f4f9f4, #f9f9ff);
}

/* Grid layout */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

/* Card style */
.brands-section {
  padding: 80px 0;
  background: linear-gradient(120deg, #f8f8f8, #ffffff);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.brand-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.8rem 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  position: relative;
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.brand-card h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #2c3e50;
  font-weight: 600;
}

.brand-card ul {
  list-style: none;
  padding: 0;
}

.brand-card ul li {
  font-size: 0.95rem;
  color: #555;
  margin: 0.5rem 0;
}

.brand-card ul li i {
  color: #008000;
  margin-right: 8px;
}

.badge {
  position: absolute;
  top: -10px;
  right: -10px;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: bold;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.badge.platinum {
  background: linear-gradient(to right, #8e9eab, #eef2f3);
  color: #2c3e50;
}
.badge.gold {
  background: linear-gradient(to right, #f9ca24, #f6e58d);
  color: #2c3e50;
}
.badge.silver {
  background: linear-gradient(to right, #bdc3c7, #ecf0f1);
  color: #2c3e50;
}

.badge.bronze {
  background: linear-gradient(to right, #cd853f, #f0e68c);
  color: #2c3e50;
}
.badge.alternate {
  background: #6c5ce7;
  color: white;
}
/* Dropdown Styling */
/* Dropdown Container */
.navbar .dropdown {
  position: relative;
}

.navbar .dropdown > .nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

/* Dropdown Icon */
.navbar .dropdown > .nav-link i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

/* Dropdown Menu Style */
/* Glassmorphic Dropdown Menu */
.navbar .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.297); /* Semi-transparent white */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle inner border */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); /* Soft outer shadow */
  border-radius: 16px;
  padding: 0.5rem 0;
  min-width: 200px;
  display: none;
  z-index: 999;
  animation: dropdownFade 0.3s ease;
}

.navbar .dropdown:hover .dropdown-menu {
  display: block;
}

/* Dropdown Items */
.dropdown-menu li a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--accent-color);
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--primary-color);
  border-left: 3px solid var(--primary-color);
}

/* Fade animation */
@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.dropdown-menu {
  text-align: center;
}

.dropdown-menu li a {
  justify-content: center;
  display: flex;
}

@media (max-width: 768px) {
  .dropdown .dropdown-menu {
    display:none;
    justify-content: center;
    flex-direction: column;
    
  }
}