﻿/* CRYSTAL INTERIORS & FURNISHINGS Typography Setup */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #2f2f2f;
    line-height: 1.7;
    background-color: #faf9f8;
}

/* Hero / Brand Headings */
h1, .hero-title, .display-heading {
    font-family: 'Cinzel Decorative', serif;
    font-weight: 700;
    letter-spacing: 1px;
    color: #2c2c2c;
    text-transform: uppercase;
}

/* Section Titles */
h2, .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #3a3a3a;
    letter-spacing: 0.5px;
}

/* Cursive Taglines / Quotes / Luxury Accents */
.tagline, .highlight-script, h3.script {
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
    color: #7a5536;
    font-size: 1.8rem;
    letter-spacing: 0.5px;
}

/* Body Paragraphs */
p, .paragraph-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #444;
    font-size: 1rem;
}

/* Side Headings / Menu / Buttons */
nav a, .side-heading, .menu-label, button, .btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Small Headings / Captions / Product Labels */
.small-heading, .caption, .highlight-text {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    color: #666;
    letter-spacing: 0.5px;
}

/* Optional Cursive Decorative Span */
.decorative {
    font-family: 'Great Vibes', cursive;
    font-size: 1.5rem;
    color: #8B5E3C;
}

/* Elegant Color Accent for Headings */
h1, h2 {
    color: #2f1e13;
}

/* Optional Gold-Like Accent for Luxury Tone */
.gold-accent {
    color: #b89068;
}

/* Header Styling */
header {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: all 0.3s ease-in-out;
}

/* Brand / Logo */
.navbar-brand {
  font-family: 'Cinzel Decorative', serif;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: #2f1e13 !important;
  transition: color 0.3s ease;
}

.navbar-brand:hover {
  color: #8b5e3c !important;
}

/* Navbar Links */
.navbar-nav .nav-link {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #2c2c2c !important;
  padding: 0.8rem 1rem;
  transition: color 0.4s ease;
  display: inline-flex;
  align-items: center;
}

/* Elegant Underline Hover Animation */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #8b5e3c;
  transition: width 0.4s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.navbar-nav .nav-link:hover {
  color: #8b5e3c !important;
}

.navbar-nav .nav-link:hover::after {
  width: 60%;
}

/* Dropdown Arrow */
.nav-item.dropdown .nav-link .arrow {
  font-size: 0.65rem;
  margin-left: 6px;
  transition: all 0.3s ease;
  opacity: 0.7;
  color: #555;
  transform: translateY(1px);
}

.nav-item.dropdown:hover .arrow {
  color: #8b5e3c;
  transform: translateY(-2px);
  opacity: 1;
}

/* Dropdown Menu */
.dropdown-menu {
  border-radius: 0;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: 'Poppins', sans-serif;
  animation: fadeIn 0.3s ease;
  margin-top: 0.4rem;
}

.dropdown-item {
  color: #333;
  font-weight: 400;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: #f7f3ef;
  color: #8b5e3c;
  padding-left: 1.3rem;
}

/* Toggler Button */
.navbar-toggler {
  border: none;
  transition: transform 0.3s ease;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler:hover {
  transform: scale(1.1);
}

/* Fade-in Animation for Dropdown */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .navbar-nav {
    background: linear-gradient(180deg, #fff8f2, #ffffff);
    padding: 15px 0;
    border-top: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 0 0 15px 15px;
    transition: all 0.4s ease-in-out;
  }

  .navbar-nav .nav-item {
    margin: 6px 10px;
    border-radius: 8px;
    overflow: hidden;
  }

  .navbar-nav .nav-link {
    display: block;
    padding: 0.8rem 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    color: #3c2a1a !important;
    background-color: rgba(255, 255, 255, 0.8);
    border-left: 4px solid transparent;
    transition: all 0.35s ease;
  }

  .navbar-nav .nav-link:hover {
    background-color: #f8f3ef;
    border-left: 4px solid #8b5e3c;
    color: #8b5e3c !important;
    letter-spacing: 1px;
    transform: translateX(4px);
  }

  .dropdown-menu {
    background-color: #fff;
    border: none;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.05);
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
  }

  .dropdown-item {
    padding: 0.7rem 1rem;
    font-weight: 500;
    color: #3c2a1a;
    border-radius: 6px;
    transition: all 0.3s ease;
  }

  .dropdown-item:hover {
    background-color: #f2e9e1;
    color: #8b5e3c;
    transform: translateX(3px);
  }
}
/* Elegant Footer Design */
.site-footer {
  background: linear-gradient(180deg, #f9f6f4 0%, #fff 100%);
  color: #3c2a1a;
  padding: 60px 0 20px;
  font-family: 'Poppins', sans-serif;
  border-top: 2px solid #e6d7cc;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  width: 90%;
  margin: 0 auto;
}

.footer-about p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: #5a4638;
}

.footer-logo {
  width: 120px;
  margin-bottom: 10px;
}

.social-links {
  margin-top: 15px;
}

.social-links .social {
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
  color: #8b5e3c;
  background-color: #f2e8e1;
  width: 34px;
  height: 34px;
  line-height: 34px;
  border-radius: 50%;
  text-align: center;
  transition: all 0.3s ease;
}

.social-links .social:hover {
  background-color: #8b5e3c;
  color: #fff;
  transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2f1e13;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #4b3b2a;
}

.footer-links ul li a {
  text-decoration: none;
  color: #4b3b2a;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #8b5e3c;
  padding-left: 5px;
}

.footer-contact i {
  margin-top: 8px;
  color: #8b5e3c;
}
.footer-contact i:hover{
    color: #fff;
}
.visitor-count {
  margin-top: 15px;
  font-weight: 500;
  font-size: 15px;
}

.footer-map iframe {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #e6d7cc;
  padding-top: 15px;
  font-size: 14px;
  color: #5a4638;
}

.footer-bottom strong {
  color: #8b5e3c;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .site-footer {
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .social-links .social {
    margin: 5px;
  }
}
/* ===== Hero Banner Slider ===== */
#heroCarousel {
  position: relative;
  overflow: hidden;
}

.banner-slide {
  height: 100vh;
  background-size: cover;
  background-position: center center;
  position: relative;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 10%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}

/* ===== Force caption to center ===== */
.carousel-caption {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 2;
  color: #fff;
  width: 90%;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* ===== Text Styles ===== */
.banner-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
  animation: fadeInDown 1s ease;
}

.banner-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #f3e9df;
  animation: fadeIn 1.8s ease;
}

.banner-btn {
  background-color: #8b5e3c;
  color: #fff;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
}

.banner-btn:hover {
  background-color: #fff;
  color: #8b5e3c;
  transform: translateY(-3px);
}

/* ===== Controls ===== */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0,0,0,0.3);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  background-size: 50%, 50%;
  transition: all 0.3s ease;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: #8b5e3c;
}

/* ===== Animations ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .banner-slide {
    height: 45vh; /* Reduced from 55vh → shorter for tablets/laptops */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }

  .carousel-caption {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    text-align: center;
  }

  .banner-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .banner-tagline {
    font-size: 0.9rem;
    margin-bottom: 14px;
  }

  .banner-btn {
    padding: 7px 18px;
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .banner-slide {
    height: 38vh; /* Reduced from 45vh → shorter for mobile */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }

  .carousel-caption {
    width: 88%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 6px;
    text-align: center;
  }

  .banner-title {
    font-size: 1.2rem;
    line-height: 1.1;
    margin-bottom: 5px;
  }

  .banner-tagline {
    font-size: 0.75rem;
    margin-bottom: 10px;
  }

  .banner-btn {
    padding: 6px 14px;
    font-size: 0.75rem;
  }
}

/* ===== About Section ===== */
.about-section {
  background-color: #fffdfb;
  position: relative;
  overflow: hidden;
}

/* Image Collage Layout */
.about-images {
  position: relative;
}

.image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-image img {
  width: 85%;
  border-radius: 16px;
  transform: translateX(-20px);
  transition: all 0.6s ease;
}

.sub-image {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 60%;
  border-radius: 12px;
  transition: all 0.6s ease;
  z-index: 2;
}

.sub-image img {
  width: 100%;
  border-radius: 16px;
}

/* Subtle Zoom Hover Animation */
.image-wrapper:hover .main-image img {
  transform: translateX(-20px) scale(1.03);
}

.image-wrapper:hover .sub-image {
  transform: translateY(-10px) scale(1.03);
}

/* Content Section */
.about-title {
  font-family: 'Cinzel Decorative', serif;
  color: #2f1e13;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.about-text {
  font-family: 'Poppins', sans-serif;
  color: #4b3a2d;
  font-size: 1rem;
  line-height: 1.8;
}

/* Bullet Points */
.about-points {
  list-style: none;
  padding: 0;
}

.about-points li {
  font-family: 'Montserrat', sans-serif;
  color: #2e2e2e;
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.about-points li i {
  color: #8b5e3c;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.about-points li:hover i {
  transform: scale(1.2) rotate(10deg);
}

/* Button */
.about-btn {
  display: inline-block;
  background: linear-gradient(135deg, #8b5e3c, #b88758);
  color: #fff;
  padding: 12px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(139, 94, 60, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.about-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.3);
  transition: all 0.4s ease;
}

.about-btn:hover::before {
  left: 100%;
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(139, 94, 60, 0.35);
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .main-image img {
    width: 90%;
    transform: none;
  }

  .sub-image {
    position: absolute;
    bottom: -20px;
    right: 10%;
    width: 70%;
  }

  .about-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .about-section {
    text-align: center;
  }

  .image-wrapper {
    flex-direction: column;
  }

  .main-image img,
  .sub-image img {
    width: 100%;
    transform: none;
  }

  .sub-image {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 15px;
  }

  .about-btn {
    display: inline-block;
    margin-top: 20px;
  }
}
/* ===== Services Section ===== */
.services-section {
  background: #fdfaf8;
  position: relative;
}

.section-header {
  max-width: 700px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.3rem;
  color: #2f1e13;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.section-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #6a5b4b;
}

/* Service Rows */
.service-row {
  transition: all 0.4s ease;
}

.service-row:hover {
  transform: translateY(-5px);
}

/* Image */
.service-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.6s ease, box-shadow 0.4s ease;
}

.service-image:hover img {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Content */
.service-content {
  padding: 20px 40px;
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #3a2a1a;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-text {
  font-family: 'Poppins', sans-serif;
  color: #4b3a2d;
  font-size: 1rem;
  line-height: 1.7;
}

/* Points */
.service-points {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.service-points li {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: #2f2f2f;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-points li i {
  color: #b88758;
  transition: transform 0.3s ease;
}

.service-points li:hover i {
  transform: scale(1.2) rotate(8deg);
}

/* Elegant Button */
.service-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(135deg, #8b5e3c, #b88758);
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(139, 94, 60, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.3);
  transition: left 0.4s ease;
}

.service-btn:hover::before {
  left: 100%;
}

.service-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(139, 94, 60, 0.4);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .service-content {
    padding: 20px;
    text-align: center;
  }

  .service-title {
    font-size: 1.6rem;
  }

  .service-row {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }

  .service-text {
    font-size: 0.95rem;
  }

  .service-btn {
    padding: 8px 25px;
  }
}


/* Section Styling */
#signature-collections {
  background-color: #fffaf6;
  overflow: hidden;
}

.section-title h2 {
  font-family: 'Cinzel Decorative', serif;
  color: #2f1e13;
  letter-spacing: 1px;
}

.title-underline {
  width: 80px;
  height: 3px;
  background-color: #8b5e3c;
  border-radius: 3px;
  transition: width 0.4s ease;
}

.section-title:hover .title-underline {
  width: 120px;
}

/* Collection Cards */
.collection-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.collection-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

/* Image Wrapper */
.collection-img {
  position: relative;
  overflow: hidden;
}

.collection-img img {
  transition: transform 0.6s ease, filter 0.4s ease;
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.collection-card:hover .collection-img img {
  transform: scale(1.08);
  filter: brightness(80%);
}

/* Overlay with Button */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(47, 30, 19, 0.6);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}

.collection-card:hover .overlay {
  opacity: 1;
}

/* Explore Button */
.explore-btn {
  background: linear-gradient(135deg, #8b5e3c, #c89f7a);
  color: #fff;
  border: none;
  padding: 10px 22px;
  font-size: 0.9rem;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.4s ease;
}

.explore-btn:hover {
  background: linear-gradient(135deg, #c89f7a, #8b5e3c);
  transform: scale(1.05);
}

/* Content */
.collection-content h5 {
  font-family: 'Poppins', sans-serif;
  color: #2f1e13;
}

.collection-content p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .collection-img img {
    height: 300px;
  }
}

@media (max-width: 576px) {
  #signature-collections {
    padding: 3rem 1rem;
  }

  .collection-content {
    padding: 1.5rem 1rem;
  }

  .collection-img img {
    height: 250px;
  }
}
/* Section Styling */
#why-choose {
  background: linear-gradient(135deg, #fffaf6 0%, #fdf3ec 100%);
  position: relative;
  overflow: hidden;
}

#why-choose .section-title h2 {
  font-family: 'Cinzel Decorative', serif;
  color: #2f1e13;
}

#why-choose .section-title span {
  color: #8b5e3c;
}

.title-underline {
  width: 80px;
  height: 3px;
  background-color: #8b5e3c;
  border-radius: 3px;
  transition: width 0.4s ease;
}

.section-title:hover .title-underline {
  width: 120px;
}

/* Feature Cards */
.choose-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  cursor: default;
}

.choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

/* Icon Circle */
.icon-circle {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #8b5e3c, #caa47d);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  border-radius: 50%;
  margin: 0 auto;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(139, 94, 60, 0.3);
}

.choose-card:hover .icon-circle {
  transform: rotate(360deg) scale(1.1);
  background: linear-gradient(135deg, #caa47d, #8b5e3c);
}

/* Text Styling */
.choose-card h5 {
  color: #2f1e13;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0.6rem;
}

.choose-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
  .choose-card {
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  #why-choose {
    padding: 3rem 1rem;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

.testimonials-section {
  position: relative;
  padding: 100px 0;
  background: url('images/testimonial-bg.jpg') center/cover no-repeat;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1;
}

.testimonials-section .container {
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  padding: 25px;
  margin-bottom: 25px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
  font-style: italic;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.testimonial-author img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid #c59d5f;
}

.testimonial-author h6 {
  font-weight: 700;
  color: #222;
  margin: 0;
}

.testimonial-author span {
  font-size: 13px;
  color: #777;
}

/* Center Highlight Section */
.testimonial-highlight {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 25px;
  padding: 60px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  animation: float 6s ease-in-out infinite;
}

.testimonial-highlight h2 {
  color: #333;
  font-weight: 700;
  margin-bottom: 15px;
}

.testimonial-highlight p {
  color: #555;
  font-size: 16px;
  margin-bottom: 20px;
}

.rating-stars {
  color: #c59d5f;
  font-size: 22px;
  margin-bottom: 25px;
}

.btn-review {
  display: inline-block;
  background: linear-gradient(45deg, #c59d5f, #b07b3d);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
}

.btn-review:hover {
  background: linear-gradient(45deg, #b07b3d, #c59d5f);
  transform: scale(1.05);
}

/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}
.fade-up.delay-1 { animation-delay: 0.3s; }
.fade-up.delay-2 { animation-delay: 0.6s; }
.fade-up.delay-3 { animation-delay: 0.9s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating effect for center */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Responsive Design */
@media (max-width: 991px) {
  .testimonial-highlight {
    margin: 40px 0;
  }
}
@media (max-width: 575px) {
  .testimonial-card {
    padding: 20px;
  }
  .testimonial-highlight {
    padding: 40px 20px;
  }
}

/* Section Base */
.portfolio-section {
  padding: 100px 0;
  background: #faf8f5;
  position: relative;
  overflow: hidden;
}

.section-title h2 {
  font-weight: 700;
  color: #2c2c2c;
  font-size: 36px;
  margin-bottom: 15px;
}

.section-title p {
  color: #666;
  font-size: 16px;
  margin-bottom: 50px;
}

/* Portfolio Card Layout */
.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  border-radius: 20px;
}

/* Overlay Animation */
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 44, 44, 0.75);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: scale(1.1);
  transition: all 0.6s ease;
  border-radius: 20px;
  padding: 25px;
}

.portfolio-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.8);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
  transform: scale(1);
}

/* Texts and Button */
.portfolio-overlay h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.portfolio-overlay p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #f1f1f1;
}

.view-btn {
  background: linear-gradient(45deg, #c59d5f, #b07b3d);
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.4s ease;
  font-weight: 600;
}

.view-btn:hover {
  background: linear-gradient(45deg, #b07b3d, #c59d5f);
  transform: scale(1.05);
}

/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}
.fade-up.delay-1 { animation-delay: 0.2s; }
.fade-up.delay-2 { animation-delay: 0.4s; }
.fade-up.delay-3 { animation-delay: 0.6s; }
.fade-up.delay-4 { animation-delay: 0.8s; }
.fade-up.delay-5 { animation-delay: 1s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .section-title h2 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .portfolio-overlay p {
    font-size: 13px;
  }
  .view-btn {
    padding: 8px 18px;
  }
}

@media (max-width: 575px) {
  .portfolio-card {
    border-radius: 15px;
  }
  .section-title p {
    font-size: 14px;
  }
}

/* ===== TEAM SECTION ===== */
.team-section {
  background: #fffdfb;
  position: relative;
  overflow: hidden;
}

.section-title h2 {
  font-family: 'Cinzel Decorative', serif;
  color: #2f1e13;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.section-title p {
  color: #6b5a49;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  margin-top: 10px;
}

/* ===== TEAM CARD ===== */
.team-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* ===== IMAGE ===== */
.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: all 0.6s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.08);
  filter: brightness(0.8);
}

/* ===== OVERLAY ===== */
.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(47, 30, 19, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.5s ease;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

/* ===== SOCIAL ICONS ===== */
.social-icons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
}

.social-icons li a {
  color: #fff;
  font-size: 1rem;
  background: linear-gradient(45deg, #b88758, #8b5e3c);
  padding: 10px 12px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icons li a:hover {
  transform: scale(1.15);
  background: linear-gradient(45deg, #8b5e3c, #b88758);
}

/* ===== INFO ===== */
.team-info {
  padding: 20px 10px;
  background: #fff;
}

.team-info h4 {
  color: #2f1e13;
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.team-info p {
  color: #8b5e3c;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .team-img img {
    height: 320px;
  }
}

@media (max-width: 767px) {
  .section-title h2 {
    font-size: 2rem;
  }
  .team-img img {
    height: 300px;
  }
}

@media (max-width: 575px) {
  .team-card {
    margin-bottom: 25px;
  }
  .team-info h4 {
    font-size: 1.1rem;
  }
}


.consultation-section {
    position: relative;
    background: url('images/consult-bg.jpg') no-repeat center center/cover;
    padding: 100px 0;
    color: #fff;
    overflow: hidden;
}

/* Subtle Overlay */
.consultation-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(2px);
}

/* Text Area */
.text-section {
    z-index: 2;
    position: relative;
}
.consult-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}
.consult-desc {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.7;
}
.consult-points li {
    list-style: none;
    font-size: 1rem;
    color: #f5f5f5;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.consult-points i {
    color: #ffc107;
    margin-right: 10px;
}

/* Form Area */
.form-section {
    z-index: 2;
    position: relative;
}
.consult-form-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    animation: floatUp 1.2s ease-in-out;
}
.consult-form-card h4 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}
.form-control {
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}
.form-control:focus {
    box-shadow: 0 0 10px #ffc107;
    transform: scale(1.02);
}

/* Button */
.consult-btn {
    background: linear-gradient(45deg, #ffc107, #ff9800);
    border: none;
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    font-weight: 600;
    color: #222;
    font-size: 1rem;
    transition: all 0.4s ease;
}
.consult-btn:hover {
    background: linear-gradient(45deg, #ff9800, #ffc107);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,193,7,0.5);
}

/* Animation */
@keyframes floatUp {
    0% { transform: translateY(50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 992px) {
    .consultation-section {
        padding: 70px 0;
    }
    .consult-form-card {
        margin-top: 40px;
    }
    .consult-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .consult-title {
        font-size: 1.7rem;
        text-align: center;
    }
    .consult-desc, .consult-points {
        text-align: center;
    }
    .consult-form-card {
        padding: 25px;
    }
}

/* ===== Contact / Careers Page Banner ===== */
.contact-banner {
  position: relative;
  width: 100%;
  height: 60vh; /* Default for large screens */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  z-index: 1;
  margin-bottom: 0;
}

.contact-banner .banner-slide {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 8s ease;
}

.contact-banner:hover .banner-slide {
  transform: scale(1.04);
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3), rgba(0,0,0,0.75));
  z-index: 1;
}

.carousel-caption {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.banner-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  color: #f8f5f1;
}

.banner-tagline {
  font-size: 1.1rem;
  color: #e8dfd6;
  margin-bottom: 25px;
  line-height: 1.6;
}

.banner-btn {
  display: inline-block;
  background: linear-gradient(135deg, #8b5e3c, #b88758);
  color: #fff;
  text-decoration: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.4s ease;
}

.banner-btn:hover {
  background: #fff;
  color: #8b5e3c;
  transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .contact-banner { height: 55vh; }
}

@media (max-width: 992px) {
  .contact-banner { height: 45vh; }
  .banner-title { font-size: 2.2rem; }
  .banner-tagline { font-size: 1rem; }
}

@media (max-width: 768px) {
  .contact-banner { height: 38vh; }
  .banner-title { font-size: 1.8rem; }
  .banner-tagline { font-size: 0.95rem; }
}

@media (max-width: 576px) {
  .contact-banner { height: 30vh; } /* shorter on mobile */
  .banner-title { font-size: 1.6rem; line-height: 1.3; }
  .banner-tagline { font-size: 0.85rem; margin-bottom: 10px; }
  .banner-btn { padding: 8px 20px; font-size: 0.85rem; }
}

@media (max-width: 400px) {
  .contact-banner { height: 26vh; } /* very compact on small screens */
  .banner-title { font-size: 1.4rem; }
  .banner-tagline { font-size: 0.8rem; }
}


/* ===== General ===== */
.section-title {
  font-weight: 700;
  color: #2c2c2c;
}

/* Contact Info & Form Boxes */
.contact-info-box,
.contact-form-box {
  background: #fff;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.contact-info-box:hover,
.contact-form-box:hover {
  transform: translateY(-5px);
}

/* Contact Info */
.contact-details li {
  margin-bottom: 15px;
  color: #555;
  font-size: 0.95rem;
}

.contact-details i {
  color: #8b5e3c;
  margin-right: 10px;
  font-size: 1.1rem;
}

.social-links a {
  
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: 0.3s;
}

.social-links a:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #b88758, #8b5e3c);
}

/* Contact Form */
.form-control,
.form-select {
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 10px 15px;
}

.btn-primary {
  background: linear-gradient(135deg, #8b5e3c, #b88758);
  border: none;
  border-radius: 30px;
  transition: all 0.3s;
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #b88758, #8b5e3c);
}

/* ===== FAQ Section ===== */
.accordion-button {
  background: #f9f9f9;
  color: #333;
  font-weight: 600;
  border-radius: 10px;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #8b5e3c, #b88758);
  color: #fff;
}

.accordion-body {
  background: #fff;
  border-radius: 0 0 10px 10px;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-info-box, .contact-form-box {
    text-align: center;
  }
  .contact-details li {
    font-size: 0.9rem;
  }
  .social-links {
    justify-content: center;
  }
}

/* ===== Modern Info Section ===== */
.contact-info-modern {
  background: linear-gradient(135deg, #f3f4f7, #ffffff);
  position: relative;
}

.contact-info-modern .section-title h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c2c2c;
}

.contact-info-modern .section-title p {
  color: #555;
  max-width: 650px;
  margin: 0 auto;
}

.info-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  padding: 40px 25px;
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.info-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5e3c, #b88758);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
}

.info-icon i {
  color: #fff;
  font-size: 28px;
}

.info-card h4 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.info-card p {
  color: #555;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.contact-social h5 {
  color: #333;
  font-weight: 600;
}

.contact-social .social-icons a {
  display: inline-block;
  margin: 0 10px;
  font-size: 18px;
  color: #555;
  transition: all 0.3s ease;
}

.contact-social .social-icons a:hover {
  color: #8b5e3c;
}

@media (max-width: 768px) {
  .info-card {
    padding: 30px 20px;
  }
  .info-icon {
    width: 60px;
    height: 60px;
  }
}

/* ===== Contact Form + FAQ Combo ===== */
.contact-faq-section {
  background: linear-gradient(135deg, #f9fafc, #ffffff);
}

.section-title h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c2c2c;
}

.section-title p {
  color: #555;
  max-width: 650px;
  margin: 0 auto;
}

.contact-form-box, .faq-box {
  background: #fff;
  border-radius: 18px;
  padding: 40px 35px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.contact-form-box:hover, .faq-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.contact-form-box h4,
.faq-box h4 {
  font-weight: 600;
  color: #333;
  font-family: 'Cinzel Decorative', serif;
}

.contact-form-box .form-control {
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 12px;
  font-size: 0.95rem;
}

.contact-form-box .form-control:focus {
  border-color: #8b5e3c;
  box-shadow: 0 0 5px rgba(139, 94, 60, 0.4);
}

.btn-submit {
  background: linear-gradient(135deg, #8b5e3c, #b88758);
  border: none;
  color: #fff;
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #b88758, #8b5e3c);
  transform: translateY(-2px);
}

.accordion-button {
  background: #f7f7f9;
  color: #333;
  font-weight: 500;
  border-radius: 10px;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #8b5e3c, #b88758);
  color: #fff !important;
}

.accordion-button::after{
    color: #fff !important;
}

.accordion-item {
  margin-bottom: 10px;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.accordion-body {
  background: #fff;
  color: #555;
  padding: 15px 20px;
}

@media (max-width: 991px) {
  .contact-form-box, .faq-box {
    padding: 30px 25px;
  }
}

@media (max-width: 767px) {
  .contact-faq-section .row {
    flex-direction: column;
  }
}


/* ===== Crystal Interiors Top Bar ===== */
.ci-topbar {
  background: linear-gradient(135deg, #8b5e3c, #b88758);
  color: #fff !important;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  padding: 8px 0;
  width: 100%;
  z-index: 1000;
  position: relative;
}

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

.ci-topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.ci-contact-info a {
  color: #fff !important;
  text-decoration: none;
  margin-right: 20px;
  transition: color 0.3s ease;
  font-weight: 500;
}

.ci-contact-info a i {
  margin-right: 6px;
  color: #ffebc6;
}

.ci-contact-info a:hover {
  color: #ffebc6 !important;
}

.ci-social-icons a {
  color: #fff !important;
  margin-left: 12px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.ci-social-icons a:hover {
  color: #ffebc6 !important;
  transform: translateY(-2px);
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .ci-topbar-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ci-contact-info {
    margin-bottom: 6px;
  }

  .ci-contact-info a {
    display: inline-block;
    margin: 5px 10px;
    font-size: 13px;
  }

  .ci-social-icons a {
    margin: 0 6px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .ci-topbar {
    font-size: 13px;
    padding: 6px 0;
  }

  .ci-topbar-content {
    flex-direction: column;
    text-align: center;
  }

  .ci-contact-info {
    margin-bottom: 8px;
  }

  .ci-contact-info a {
    display: block;
    margin: 4px 0;
    font-size: 12.5px;
  }

  .ci-social-icons a {
    margin: 5px;
    font-size: 14px;
  }
}

