/* styles.css */
:root {
  --color-primary: #ffa200;
  --color-secondary: #f0ebe3;
  --color-accent: #ffb43a;
  --color-bg: #fffcf8;
  --color-text: #2c2c2c;
  --color-muted: #9e9e9e;

  /* Cool gradients for theme support */
  --gradient-warm: linear-gradient(135deg, #f6e9d7, #e2cfc3);
  --gradient-earth: linear-gradient(135deg, #f1f4e0, #dbe6c4);
  --gradient-luxury: linear-gradient(135deg, #e4d1ff, #ffeccd);

  /* Default gradient for section 2 */
  --gradient-section2: var(--gradient-luxury);
}

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  background-color: var(--color-bg);
  color: var(--color-text);
}

/* Header */

.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #f59e0b;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-menu.open {
  max-height: 500px;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(34, 34, 34, 0.8)),
    url("Bharat wall fashion.jpg") no-repeat center center/cover;
  height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.logo img {
  height: 6rem;
  width: 6rem;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 2rem;
  background: rgba(17, 62, 89, 0.3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(17, 62, 89, 0.15);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #fff;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

.btn-primary:hover {
  background-color: var(--color-accent);
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Project Section Styles */

.projects-section {
  padding: 4rem 2rem;
  background-color: #f5f5f5;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #333;
}

.projects-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 1.5rem;
  padding-bottom: 2em;
  padding-top: 1rem;
}

.projects-grid::-webkit-scrollbar {
  display: none;
}

.projects-grid .project-card {
  flex: 0 0 50%;
  scroll-snap-align: start;
}

@media (min-width: 768px) {
  .projects-grid .project-card {
    flex: 0 0 30%;
  }
}
.project-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.project-image {
  object-fit: cover;
  height: 160px;
  border-radius: 12px;
  background: linear-gradient(135deg, #b993d6, #8ca6db);
  margin-bottom: 1rem;
  transition: transform 0.4s ease;
  margin: 0 auto;
}

.project-card:hover .project-image {
  transform: translateY(-10px);
  box-shadow: 0 4px 20px rgb(0, 0, 0, 0.3);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: rgba(124, 58, 237, 0.2);
}

.project-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.project-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Why chose us  */

.why-choose-us {
  background-color: #f9f9f9;
  padding: 4rem 1rem;
  text-align: center;
}

.section-heading {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2rem;
}

.features-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  background: white;
  border-radius: 50%;
  padding: 2rem;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.feature-item p {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.3;
}

/* Our specialized services */

.service-card {
  transition: all 0.3s ease;
  perspective: 1000px;
}

.service-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.service-card:hover .service-card-inner {
  transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 0.75rem;
  top: 0;
  left: 0;
  overflow: hidden;
}

.service-card-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
}

/* Ideas for your home */
.ideas-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding: 20px 5%;
  scrollbar-width: none;
}
.ideas-carousel::-webkit-scrollbar {
  display: none;
}
.idea-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.idea-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.ideas-section {
  padding: 4rem 2rem;
  background: #fff;
  text-align: center;
}

.ideas-header h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.ideas-header p {
  font-size: 1rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.ideas-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 1.5rem;
  padding-bottom: 1rem;
}

.idea-card {
  flex: 0 0 auto;
  width: 300px;
  scroll-snap-align: start;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.idea-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.idea-card:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .idea-card {
    width: 240px;
  }

  .ideas-header h2 {
    font-size: 1.6rem;
  }

  .ideas-header p {
    font-size: 0.95rem;
  }
}

/* About */
/* Contact Us Section inspired by Asian Paints style */
/* .contact-us {
  background: linear-gradient(to right, #e8e6f0, #fff5eb);
  padding: 4rem 2rem;
  border-radius: 2rem;
  margin: 3rem auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  position: relative;
  top: 3.5rem;
}

.contact-text {
  flex: 1 1 40%;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  font-family: "Georgia", serif;
}

.contact-form {
  flex: 1 1 55%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.contact-form input {
  padding: 0.8rem 1rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  flex: 1 1 45%;
}

.contact-form .whatsapp {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.contact-form button {
  background-color: var(--color-primary);
  color: #fff;
  font-weight: 600;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  margin-top: 1rem;
}

.contact-form button:hover {
  background-color: var(--color-accent);
}

@media (max-width: 1024px) {
  .categories {
    gap: 1.5rem;
  }
  .category-card {
    width: 90%;
    max-width: 360px;
  }
  .contact-us {
    flex-direction: column;
    text-align: center;
  }
  .contact-form {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .categories {
    flex-direction: column;
    align-items: center;
  }
  .brand-logos {
    gap: 1rem;
  }
  .brand-logos img {
    max-width: 100px;
  }
  .contact-form input {
    flex: 1 1 100%;
  }
} */

.contact-us {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  background: #f8f8f8;
}
.contact-text {
  background: linear-gradient(rgba(234, 179, 8, 0.9), rgba(234, 179, 8, 0.8)),
    url("https://images.unsplash.com/photo-1606744837616-56c9a5c6a6eb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2071&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
}
.contact-form {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-form input,
.contact-form textarea {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
}
.contact-form textarea {
  height: 120px;
}
.contact-form button {
  background: #eab308;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-form button:hover {
  background: #ca8a04;
}

/* Footer */
.site-footer {
  background-color: var(--color-bg);
  padding: 2rem 1rem;
  font-family: "Segoe UI", sans-serif;
  color: var(--color-text);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-contact,
.footer-social {
  flex: 1 1 30em;
}

.site-footer h3 {
  font-size: 1.5rem;
  margin-bottom: 1em;
  color: var(--color-text);
}

.footer-contact p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .social-icons > p,
  .social-icons > a {
    opacity: 1;
    position: static;
    transform: none;
    margin-top: 5px;
    margin-bottom: 5px;
    display: block;
  }

  .social-icons {
    flex-direction: column;
  }
}

/* footer>follow us */
.social-icons {
  height: auto;
  width: 100%;
  gap: 1rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 1em;
  background: white;
  border-radius: 1em;
}

.icon-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0.5rem;
}

.icon-container a svg {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease, fill 0.3s ease;
}
.icon-container:hover a svg {
  transform: scale(1.2);
  fill: #fff; /* Optional: Change icon color on hover */
}

.tooltip {
  position: absolute;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  font-size: 13px;
  font-weight: bold;
  white-space: nowrap;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 2;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--color-primary);
  color: white;
  border: none;
  padding: 0.8rem 1rem;
  border-radius: 30%;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
  z-index: 1000;
  transition: background 0.3s ease;
}
#backToTop:hover {
  background: var(--color-accent);
}

@media (max-width: 768px) {
  .site-footer {
    padding: 2rem 1rem;
  }

  .footer-contact,
  .footer-social {
    flex: 1 1 100%; /* Full width on mobile */
    text-align: center;
  }

  .social-icons {
    height: auto;
    padding: 1rem 0;
    justify-content: center;
  }

  .icon-container {
    margin: 0.5rem 1rem; /* More spacing between icons */
  }

  .footer-contact p {
    margin: 1rem 0; /* More spacing between contact items */
  }
}

/* Add Keyframes for Icon Hover Animation */
@keyframes popBounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes fadeInSlide {
  0% {
    opacity: 0;
    transform: translateY(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .navbar ul {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
  .navbar ul {
    display: flex;
  }
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-text);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  .navbar ul {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background: var(--color-bg);
    padding: 1rem;
    border-radius: 1rem;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 998;
  }
  .navbar.active ul {
    display: flex;
  }
}

@media (max-width: 480px) {
  .projects-section {
    padding: 2rem 1rem;
  }

  .project-card {
    padding: 0.8rem;
  }

  .project-card h3 {
    font-size: 1rem;
  }

  .project-card p {
    font-size: 0.85rem;
  }
}

/* Brand Partner Section */
.brand-partners {
  background-color: var(--color-secondary);
  padding: 3rem 1rem;
  text-align: center;
}

.brand-partners h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--color-text);
}

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.brand-logos img {
  max-width: 120px;
  height: auto;
  object-fit: contain;
  filter: grayscale(0%);
  transition: filter 0.3s ease;
}

.brand-logos img:hover {
  filter: grayscale(100%);
}

@media (max-width: 1024px) {
  .categories {
    gap: 1.5rem;
  }
  .category-card {
    width: 90%;
    max-width: 360px;
  }
}

@media (max-width: 600px) {
  .categories {
    flex-direction: column;
    align-items: center;
  }
  .brand-logos {
    gap: 1rem;
  }
  .brand-logos img {
    max-width: 100px;
  }
}
