/********** Custom CSS - Export Brand Website **********/
:root {
    --black: #000000;
	--white: #FFFFFF;
    --deep-red: #8E1616;
    --light-beige: #FBF6EF;
    --warm-beige: #E8C999;
    --cream: #F8EEDF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--black);
    line-height: 1.6;
    background-color: var(--light-beige);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

/* ============================================
   HEADER & NAVIGATION - Updated to match reference image
   Changes: Dark background, white text, social icons in header
   ============================================ */
header {
    background-color: var(--black);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: #FFFFFF;
    font-family: 'Noto Sans', sans-serif;
    letter-spacing: 0.5px;
}

.navbar-brand img {
    height: 45px;
    margin-right: 12px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #FFFFFF;
    font-weight: 500;
    padding: 0.5rem 0;
    display: block;
    position: relative;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--deep-red);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--deep-red);
}

/* Header Social Icons - Match reference image style */
.header-social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: 2rem;
}

.header-social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-social-icons a:hover {
    background-color: var(--deep-red);
    transform: translateY(-3px);
}

/* ============================================
   MEGA DROPDOWN MENU - Redesigned to match reference image
   Structure: 4 columns (Furniture, Home Decor, Lifestyle Goods, By Material)
   Design: White background, rounded corners, shadow, smooth fade/slide animation
   Behavior: Hover on desktop, click on mobile
   ============================================ */
.dropdown {
    position: relative;
}

.dropdown > a span {
    font-size: 0.7rem;
    margin-left: 0.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.dropdown:hover > a span {
    transform: rotate(180deg);
}

/* Mega Menu Container */
.mega-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background-color: #FFFFFF;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
    min-width: 900px;
    max-width: 1200px;
    width: 90vw;
    z-index: 1000;
    overflow: hidden;
}

/* Ensure mega menu doesn't overflow viewport */
.mega-dropdown {
    position: relative;
}

@media (min-width: 993px) {
    .mega-menu {
        left: 50%;
        transform: translateX(-50%) translateY(-20px);
    }
    
    .dropdown:hover .mega-menu {
        transform: translateX(-50%) translateY(0);
    }
}

.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Mega Menu Content - 4 Column Grid */
.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 2.5rem 2rem;
}

.mega-menu-column {
    padding: 0 1.5rem;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.mega-menu-column:last-child {
    border-right: none;
}

/* Mega Menu Title (Category Headings) */
.mega-menu-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.25rem;
    font-family: 'Noto Sans', sans-serif;
    letter-spacing: 0.3px;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--deep-red);
    display: inline-block;
    width: 100%;
}

/* Mega Menu List */
.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-list li {
    margin-bottom: 0.75rem;
}

.mega-menu-list li:last-child {
    margin-bottom: 0;
}

.mega-menu-list a {
    display: block;
    color: rgba(0, 0, 0, 0.75);
    font-size: 0.95rem;
    font-weight: 400;
    padding: 0.5rem 0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Open Sans', sans-serif;
}

.mega-menu-list a:hover {
    color: var(--deep-red);
    padding-left: 0.75rem;
}

.mega-menu-list a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleX(0);
    width: 4px;
    height: 4px;
    background-color: var(--deep-red);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.mega-menu-list a:hover::before {
    transform: translateY(-50%) scaleX(1);
}

/* Legacy dropdown menu support (for non-mega menus) */
.dropdown-menu:not(.mega-menu) {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background-color: #FFFFFF;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    list-style: none;
    min-width: 220px;
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
    border-radius: 4px;
    border-top: 3px solid var(--deep-red);
}

.dropdown:hover .dropdown-menu:not(.mega-menu) {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu:not(.mega-menu) li {
    padding: 0;
    margin: 0;
}

.dropdown-menu:not(.mega-menu) a {
    padding: 0.875rem 1.75rem;
    display: block;
    color: var(--black);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #FFFFFF;
    padding: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
	color: var(--white);
}

.btn-primary {
    background-color: var(--deep-red);
    color: var(--white);
    border-color: var(--deep-red);
    border-radius: 4px;
    font-size: 1rem;
    padding: 0.875rem 2.5rem;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--deep-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(142, 22, 22, 0.3);
}

.btn-secondary {
    background-color: var(--deep-red);
    color: var(--white);
    border-color: var(--deep-red);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--deep-red);
}

/* ============================================
   HERO SECTION - Automatic Slider
   Changes: Slider with multiple slides, navigation arrows and dots
   ============================================ */
.hero-section {
    position: relative;
    background-color: var(--black);
    min-height: 700px;
    overflow: hidden;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 700px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 5rem 0 6rem;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide .container {
    position: relative;
    z-index: 3;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    justify-items: start;
}

.hero-text {
    color: #FFFFFF;
    text-align: left;
    max-width: 650px;
    padding-left: 0;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    font-family: 'Noto Sans', sans-serif;
    letter-spacing: -0.5px;
    animation: fadeInUp 0.8s ease-out;
    /*min-height: calc(1.4em * 4);*/
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 95%;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    min-height: calc(1.6em * 3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

/* Generic scroll reveal animation */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Slider Navigation */
.hero-slider-prev,
.hero-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-prev {
    left: 20px;
}

.hero-slider-next {
    right: 20px;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background-color: var(--deep-red);
    transform: translateY(-50%) scale(1.1);
}

/* Hero Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-slider-dots .dot.active {
    background-color: var(--deep-red);
    border-color: #FFFFFF;
    transform: scale(1.2);
}

.hero-slider-dots .dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Section Styles */
.section {
    padding: 3.5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: #FAF5EE;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	background-color: #FFFFFF;
}

.service-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--deep-red);
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    color: var(--deep-red);
    margin-bottom: 1rem;
}

/* Collections Grid */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.collection-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.collection-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-card:hover img {
    transform: scale(1.05);
}

.collection-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem;
    color: #FFFFFF;
}

.collection-card-overlay h3 {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

/* Why Us Grid */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-us-item {
	background-color: #FAF5EE;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: inline-block;
    align-items: flex-start;
    gap: 1.5rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
    text-align: center;
    text-align: -moz-center;
}

.why-us-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);	
    background-color: #FFFFFF;
}

.why-us-icon {
    flex-shrink: 0;
    color: var(--deep-red);
    transition: transform 0.3s ease;
    text-align: center;
    text-align: -moz-center;
    display: flex;
    justify-content:center;
    align-items: center;
    margin-bottom: 10px;
}

.why-us-item:hover .why-us-icon {
    transform: scale(1.1);
}

.why-us-content {
    flex: 1;
}

.why-us-content h4 {
    color: var(--deep-red);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.why-us-content p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
	background-color: #FAF5EE;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);	
    background-color: #FFFFFF;
}

.product-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Responsive */
@media (max-width: 992px){
    .product-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px){
    .product-grid{
        grid-template-columns: repeat(1, 1fr);
    }
}


.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card-content {
    padding: 1.5rem;
}

.product-card-content h3 {
    color: var(--black);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.product-card-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Product card actions (e.g., Buy Now button) */
.product-card-actions {
    margin-top: 1rem;
}

.product-card-actions .btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
}

/* Page Header */
.page-header {
    position: relative;
    background: linear-gradient(135deg, var(--deep-red) 0%, #7a1212 100%);
    color: #FFFFFF;
    padding: 5rem 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

.page-header .breadcrumb {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 0.5rem;
    margin-top: 1rem;
}

.breadcrumb li {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
    color: #FFFFFF;
}

/* About Section on Home Page - With Image */
.about-section-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-section-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

.about-section-content {
    padding: 2rem 0;
}

.about-section-content h2 {
    color: var(--deep-red);
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
}

.about-section-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: #555;
}

/* About Page */
.about-content {
    background-color: #FFFFFF;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.about-content h2 {
    color: var(--deep-red);
    margin-bottom: 1.5rem;
}

.about-content h3 {
    color: var(--black);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* CEO Section */
.ceo-section {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
    background-color: #FFFFFF;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.ceo-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.ceo-image {
    width: 250px;
    height: 320px;
    border-radius: 0%;
    object-fit: cover;
    border: 5px solid var(--deep-red);
    box-shadow: 0 4px 20px rgba(142, 22, 22, 0.2);
    margin-bottom: 1.5rem;
}

.ceo-message h2,
.ceo-message h3 {
    color: var(--deep-red);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.ceo-message p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.ceo-name {
    font-weight: 600;
    color: var(--black);
    font-style: normal !important;
    margin-top: 1.5rem;
}


.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.infrastructure-content h2, .infrastructure-content h3 {
  color: var(--deep-red);
  margin-bottom: 1.5rem;
}
.section-title h2 {
	 color: var(--deep-red);
}
.CredentialsNew h2, .CredentialsNew h3 {
  color: var(--deep-red);
  margin-bottom: 1.5rem;
}

.contact-form h3 {
	 color: var(--deep-red);
  margin-bottom: 1.5rem;
}
.about-card {
   background-color: #FAF5EE;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.about-card:hover {
    background-color: #FFFFFF;
}
.about-card-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--deep-red);
}

.about-card h3 {
    color: var(--deep-red);
    margin-bottom: 1rem;
}

.about-card h4 {
    color: var(--deep-red);
    margin-bottom: 1rem;
}

.values-list {
    list-style: none;
    margin-left: 0;
    text-align: left;
}

.values-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.values-list li svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
    color: var(--deep-red);
}

/* Contact Form */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

/* Google Map Container */
.map-container {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin-top: 3rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.contact-info {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    color: var(--deep-red);
    margin-bottom: 1.5rem;
}

.contact-info-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item strong {
    display: block;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.contact-form {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--black);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--deep-red);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    color: var(--deep-red);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-group.error .form-error {
    display: block;
}

.form-group.error input,
.form-group.error textarea {
    border-color: var(--deep-red);
}

/* Credentials */
.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.credential-section {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.credential-section h3 {
    color: var(--deep-red);
    margin-bottom: 1.5rem;
    text-align: center;
}

.credential-slider {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.credential-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.credential-slide {
    display: none;
    text-align: center;
}

.credential-slide.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.credential-slide img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    background-color: #f5f5f5;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.credential-slide p {
    font-weight: 500;
    color: var(--black);
    margin: 0;
}

.credential-prev,
.credential-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(142, 22, 22, 0.8);
    color: #FFFFFF;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.credential-prev {
    left: 10px;
}

.credential-next {
    right: 10px;
}

.credential-prev:hover,
.credential-next:hover {
    background-color: var(--deep-red);
    transform: translateY(-50%) scale(1.1);
}

.credential-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
}

.credential-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.credential-dots .dot.active {
    background-color: var(--deep-red);
    transform: scale(1.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Infrastructure */
.infrastructure-content {
    background-color: #FFFFFF;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.infrastructure-image {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Terms & Conditions */
.terms-content {
    background-color: #FFFFFF;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.terms-content h2 {
    color: var(--deep-red);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.terms-content h2:first-child {
    margin-top: 0;
}

.terms-content h3 {
    color: var(--black);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.terms-content ul,
.terms-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.terms-content li {
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background-color: var(--black);
    color: #FFFFFF;
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

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

.footer-section h4 {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-links {
    list-style: none;
}

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

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

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

.social-icons a:hover {
    background-color: var(--deep-red);
    transform: translateY(-3px);
}

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

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 20px;
    background-color: #25D366;
    color: #FFFFFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 90px;
    right: 20px;
    background-color: var(--deep-red);
    color: #FFFFFF;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    box-shadow: 0 4px 20px rgba(142, 22, 22, 0.3);
    z-index: 998;
    display: none;
    transition: all 0.3s ease;
    text-decoration: none;
}

.back-to-top.show {
    display: block;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(142, 22, 22, 0.5);
}

/* Responsive Design */
/* Responsive Design - Updated for new hero layout */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    /* Core Values - 6 cards responsive */
    .about-grid[style*="grid-template-columns: repeat(6"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Infrastructure responsive */
    .infrastructure-content[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    /* Credentials slider responsive */
    .credential-slide img {
        height: 250px !important;
    }

    /* Hero Section Responsive */
    .hero-section {
        min-height: 500px;
    }

    .hero-slides {
        height: 500px;
    }

    .hero-slide {
        padding: 3rem 0 4rem;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: left;
        justify-items: start;
    }

    .hero-text h1 {
        font-size: 2.25rem;
        margin-bottom: 1.25rem;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 2rem;
    }

    /* Keep hero text left-aligned on mobile while maintaining good spacing */
    .hero-text {
        padding-left: 0;
        margin: 0;
    }

    .hero-slider-prev,
    .hero-slider-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .hero-slider-prev {
        left: 10px;
    }

    .hero-slider-next {
        right: 10px;
    }

    .hero-slider-dots {
        bottom: 20px;
    }

    /* About Section Responsive */
    .about-section-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-section-image {
        order: -1;
    }

    /* CEO Section Responsive */
    .ceo-section {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        padding: 2rem;
    }

    .ceo-image-wrapper {
        margin-bottom: 0;
    }

    .ceo-image {
        width: 200px;
        height: 200px;
        margin-bottom: 1.5rem !important;
    }

    .ceo-image-wrapper p {
        font-size: 1.1rem !important;
    }

    .ceo-image-wrapper p span {
        font-size: 0.9rem !important;
    }

    /* Why Us Responsive */
    .why-us-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .why-us-icon {
        margin-bottom: 1rem;
    }

    /* Header Responsive */
    .mobile-menu-toggle {
        display: block;
        color: #FFFFFF;
    }

    .header-social-icons {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--black);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
        gap: 0;
    }

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

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a {
        padding: 1rem 0;
    }

    /* Mega Menu on Mobile - Click instead of hover, stacked layout */
    .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        margin-left: 0;
        background-color: rgba(255, 255, 255, 0.05);
        border-top: none;
        border-left: 2px solid var(--deep-red);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        padding: 0;
        min-width: auto;
        width: 100%;
        border-radius: 0;
    }

    .dropdown.active .mega-menu {
        max-height: 2000px;
        padding: 1.5rem 1rem;
    transform: translateX(0%) translateY(0);
    }

    .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }

    .mega-menu-column {
        padding: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 1.5rem;
    }

    .mega-menu-column:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .mega-menu-title {
        color: rgba(255, 255, 255, 0.95);
        border-bottom-color: var(--deep-red);
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .mega-menu-list a {
        color: rgba(255, 255, 255, 0.8);
        padding-left: 0;
    }

    .mega-menu-list a:hover {
        color: #FFFFFF;
        padding-left: 0.75rem;
    }

    .mega-menu-list a::before {
        background-color: var(--deep-red);
    }

    /* Legacy dropdown menu on mobile */
    .dropdown-menu:not(.mega-menu) {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        margin-left: 1rem;
        background-color: rgba(255, 255, 255, 0.05);
        border-top: none;
        border-left: 2px solid var(--deep-red);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
    }

    .dropdown.active .dropdown-menu:not(.mega-menu) {
        max-height: 500px;
        padding: 0.5rem 0;
    }

    .dropdown-menu:not(.mega-menu) a {
        color: rgba(255, 255, 255, 0.8);
        padding-left: 1.5rem;
    }

    .dropdown-menu:not(.mega-menu) a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        padding-left: 2rem;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 3.5rem 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .map-container {
        height: 350px;
        margin-top: 2rem;
    }

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

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .section {
        padding: 3rem 0;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 15px;
        left: 15px;
    }

    .back-to-top {
        bottom: 75px;
        right: 15px;
    }
}

/* Tablet Responsive */
@media (max-width: 992px) and (min-width: 769px) {
    /* Core Values - 6 cards tablet */
    .about-grid[style*="grid-template-columns: repeat(6"] {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    .hero-content-wrapper {
        gap: 3rem;
    }

    .hero-text h1 {
        font-size: 2.75rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .header-social-icons {
        margin-left: 1rem;
        gap: 0.5rem;
    }

    .header-social-icons a {
        width: 35px;
        height: 35px;
    }

    .header-social-icons a svg {
        width: 18px;
        height: 18px;
    }

    /* Mega Menu on Tablet - 2 columns */
    .mega-menu {
        min-width: 700px;
        width: 85vw;
    }

    .mega-menu-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .mega-menu-column {
        padding: 0 1rem;
    }

    .mega-menu-column:nth-child(2n) {
        border-right: none;
    }

    /* About Section on Tablet */
    .about-section-wrapper {
        gap: 2.5rem;
    }

    /* CEO Section on Tablet */
    .ceo-section {
        grid-template-columns: 250px 1fr !important;
        gap: 2rem;
        padding: 2.5rem;
    }

    .ceo-image {
        width: 220px;
        height: 220px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .map-container {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 1.75rem;
    }

    .hero-slides {
        height: 460px;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

    .services-grid,
    .collections-grid,
    .why-us-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .navbar {
        padding: 1rem 0;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .navbar-brand img {
        height: 40px;
    }

    .page-header {
        padding: 3rem 0;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .map-container {
        height: 300px;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
}

@media (max-width: 768px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
}




