/* GENERAL SETUP */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #0b0b0b;
  color: white;
  overflow-x: hidden;
}

/* HEADER & NAVBAR */
.site-header {
  background: black !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.logo {
  width: 50px;
  border-radius: 6px;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #d4af37;
}

.nav-link {
  color: #d4af37 !important;
  font-weight: 500;
  padding: 8px 15px !important;
  transition: 0.3s;
}

.nav-link:hover, .nav-link.active {
  color: white !important;
  background: rgba(212, 175, 55, 0.2);
  border-radius: 6px;
}

/* HERO SECTION */
.hero {
  position: relative;
  background: url("../images/front.png") center/cover no-repeat;
  height: 70vh;
}

.hero-overlay {
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero h2 {
  font-family: "Playfair Display";
  font-size: 2.5rem;
  color: #d4af37;
}

.btn.hero-btn {
  background: #d4af37;
  color: black;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 6px;
}

/* GOLD LINES & TITLES */
.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, #daa520);
  margin: 15px auto;
}

.section-title {
  font-family: "Playfair Display", serif;
  color: #d4af37;
  font-size: 2rem;
}
/* =========================================
   BOOTSTRAP SLIDER (NO-CUT) COMPLETE CSS
   ========================================= */

/* Main Carousel Container */
#textureCarousel {
    max-width: 900px; /* Desktop par width control */
    margin: 0 auto;
    border: 2px solid #d4af37; /* Premium Gold Border */
    border-radius: 15px;
    overflow: hidden;
    background: #000; /* Khali side black rahegi */
}

/* Image Styling - Sabse Zaruri Part */
.slider-img {
    width: 100% !important;
    height: auto !important; /* Auto height taaki aspect ratio maintain rahe */
    max-height: 550px; /* Desktop par limit */
    object-fit: contain !important; /* Isse poori image frame ke andar dikhegi (Katega nahi) */
    display: block;
    margin: 0 auto;
}

/* Slide Transition Speed */
.carousel-item {
    transition: transform 0.8s ease-in-out !important;
}

/* Caption Design (Text on Image) */
.carousel-caption {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 8px;
    padding: 10px 20px;
    bottom: 20px;
}

.carousel-caption h5 {
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin: 0;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    #textureCarousel {
        max-width: 95%; /* Mobile par full width ke pass */
    }
    
    .slider-img {
        max-height: 350px; /* Mobile par height control */
    }

    .carousel-caption h5 {
        font-size: 0.9rem;
    }
}

/* Controls (Prev/Next Arrows) */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(70%) sepia(50%) saturate(1000%) hue-rotate(10deg); /* Arrows ko Golden touch dena */
}
/* FEEDBACK SLIDER */
.feedback-slider { overflow: hidden; }
.feedback-track {
  display: flex;
  gap: 30px;
  animation: feedback-scroll 25s linear infinite;
}

.feedback-card {
  flex: 0 0 350px;
  background: #1a1a1a;
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

@keyframes feedback-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* HIGHLIGHTS CARD */
.highlights .card {
  background: #1a1a1a;
  color: white;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: 0.3s;
}

.highlights .card:hover {
  border-color: #d4af37;
  transform: translateY(-5px);
}

.highlights h3 { color: #d4af37; }
/* =========================================
   HIGHLIGHTS SECTION (LAPTOP & MOBILE)
   ========================================= */

.highlights {
    padding: 60px 0;
}

/* Card ka main design */
.highlights .card {
    background: #1a1a1a !important; /* Dark background */
    border: 1px solid rgba(212, 175, 55, 0.2) !important; /* Subtle gold border */
    border-radius: 15px !important;
    color: white !important;
    transition: all 0.4s ease !important;
    height: 100%; /* Saare cards ek hi height ke rahenge */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 40px 20px !important;
}

/* Hover effect for Desktop */
.highlights .card:hover {
    transform: translateY(-10px); /* Card thoda upar uthega */
    border-color: #d4af37 !important; /* Border bright gold ho jayega */
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15); /* Soft gold glow */
}

/* Heading Style */
.highlights .card h3 {
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

/* Paragraph Style */
.highlights .card p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Tablet & Desktop spacing fix */
@media (min-width: 768px) {
    .highlights .row {
        display: flex;
        align-items: stretch; /* Isse saare cards barabar height ke dikhenge lapi par */
    }
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .highlights .card {
        padding: 30px 15px !important;
        margin-bottom: 10px;
    }
    .highlights .card h3 {
        font-size: 1.4rem;
    }
}
/* FOOTER */
.site-footer {
  background: #1a1a1a;
  padding-top: 50px;
  border-top: 2px solid #d4af37;
}

.footer-col h4 { color: #d4af37; margin-bottom: 20px; }
.footer-col a { color: white; text-decoration: none; }