/* =================================================================== */
/*                      NOVUS APPAREL - MASTER STYLESHEET              */
/* =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #4C82F7;
    --secondary-color: #7C4CFC;
    --accent-yellow: #FFC107;
    --dark-text: #222;
    --medium-text: #555;
    --light-text: #777;
    --white-color: #ffffff;
    --bg-light-grey: #f9fafb; /* Lighter grey for sections */
    --bg-dark: #1A1A1A;
    --primary-gradient: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --dark-blue-gradient: linear-gradient(90deg, #1A3B63 0%, #3A6BBF 100%);
    --box-shadow-subtle: 0 4px 15px rgba(0, 0, 0, 0.06);
    --box-shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.1);
    --box-shadow-strong: 0 15px 35px rgba(76, 130, 247, 0.15);
    --transition-speed: 0.3s;
}

/* --- 1. Global Resets & Typography --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--medium-text);
    background-color: var(--white-color);
    background-image: url('../images/general/grid-pattern-light.png');
    background-repeat: repeat;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
h1, h2, h3, h4 { font-weight: 700; color: var(--dark-text); line-height: 1.3; }
p { margin-bottom: 1rem; }
a { text-decoration: none; color: var(--primary-color); transition: color var(--transition-speed) ease; }
a:hover { color: var(--secondary-color); }
img { max-width: 100%; height: auto; display: block; }

/* --- 2. Reusable Components & Utilities --- */
.section-padding { padding: 80px 0; }
.text-center { text-align: center; }

/* MODIFIED: Replaces the old .section-label */
.section-label {
    display: inline-block; /* Crucial for padding and centering */
    background: var(--primary-gradient);
    color: var(--white-color);
    padding: 8px 20px;
    border-radius: 50px; /* Pill shape */
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px; /* More space below the new pill */
    box-shadow: var(--box-shadow-subtle);
}
.section-headline { font-size: 2.8rem; margin-bottom: 15px; }
.section-headline span { background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; color: transparent; }
.section-description { max-width: 750px; margin: 0 auto 30px auto; font-size: 1.1rem; color: var(--medium-text); }

.btn { display: inline-block; padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px; border: 2px solid transparent; transition: all var(--transition-speed) ease; cursor: pointer; box-shadow: var(--box-shadow-subtle); }
.btn:hover { transform: translateY(-3px); box-shadow: var(--box-shadow-medium); }
.btn-primary { background: var(--primary-gradient); color: var(--white-color); }
.btn-outline-primary { background: transparent; border-color: var(--primary-color); color: var(--primary-color); }
.btn-outline-primary:hover { background: var(--primary-color); color: var(--white-color); }
.btn-large { padding: 15px 40px; font-size: 1rem; }
.btn-white-solid { background: var(--white-color); color: var(--primary-color); }
.btn-white-solid:hover { background: var(--bg-light-grey); }
.btn-white-outline { background: transparent; border-color: var(--white-color); color: var(--white-color); }
.btn-white-outline:hover { background: rgba(255, 255, 255, 0.1); }

/* --- 3. Header & Navigation --- */
.navbar { background-color: rgba(255, 255, 255, 0.9); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); padding: 15px 0; width: 100%; position: fixed; top: 0; left: 0; z-index: 1000; transition: all var(--transition-speed) ease; border-bottom: 1px solid rgba(0,0,0,0.05); }
.navbar.scrolled { padding: 10px 0; box-shadow: var(--box-shadow-medium); }
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.nav-logo-container { display: flex; align-items: center; }
.main-logo { height: 45px; margin-right: 10px; }
.logo-text { font-size: 1.1rem; font-weight: 600; color: var(--dark-text); }
.logo-text span:first-child { font-weight: 800; }
.logo-text span:last-child { font-size: 0.7em; font-weight: 400; color: var(--light-text); display: block; line-height: 1; }
.nav-links-group { flex-grow: 1; display: flex; justify-content: center; }
.nav-menu { list-style: none; display: flex; }
.nav-item { margin-left: 28px; }
.nav-link { color: var(--medium-text); font-weight: 500; font-size: 0.95rem; }
.nav-link:hover { color: var(--primary-color); }
.btn-quote { background: var(--primary-gradient); color: var(--white-color) !important; padding: 10px 22px; border-radius: 50px; font-size: 0.85rem; }
.hamburger { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; transition: all var(--transition-speed) ease; background-color: var(--dark-text); }
.dropdown { position: relative; }
.dropdown-content { display: none; position: absolute; background-color: var(--white-color); min-width: 220px; box-shadow: var(--box-shadow-medium); z-index: 1001; border-top: 3px solid var(--primary-color); border-radius: 0 0 5px 5px; }
.dropdown:hover .dropdown-content { display: block; }
.dropdown-content a { color: var(--dark-text); padding: 12px 16px; display: block; font-size: 0.9em; }
.dropdown-content a:hover { background-color: var(--bg-light-grey); color: var(--primary-color); }

/* --- 4. Page Sections --- */

/* Hero Section (Homepage) */
.hero-section { padding: 40px 0 80px 0; }
.hero-content-wrapper { display: flex; align-items: center; gap: 60px; }
.hero-left-column { flex: 1; }
.hero-right-column { flex: 1; }
.hero-label {
    display: inline-block; /* Allows padding and background */
    background: #eaf2ff; /* A very light, subtle blue */
    color: var(--primary-color); /* The main blue color for text */
    padding: 8px 18px;
    border-radius: 50px; /* Pill shape */
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(76, 130, 247, 0.2); /* Faint blue border */
}
.hero-section h1 { font-size: 3.8rem; text-align: left; }
.hero-subheadline { font-size: 1.2rem; text-align: left; margin: 20px 0 30px 0; }
.hero-buttons { display: flex; gap: 20px; }
.hero-metrics-container { display: flex; gap: 40px; margin-top: 50px; }
.metric-item h3 { font-size: 2.5rem; margin-bottom: 0; background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; color: transparent; }
.metric-item p { margin-bottom: 0; }
.hero-image-container { position: relative; }
.hero-main-image { border-radius: 15px; box-shadow: var(--box-shadow-strong); }
.quality-badge { position: absolute; bottom: 25px; left: -25px; background: var(--white-color); padding: 15px 20px; border-radius: 10px; box-shadow: var(--box-shadow-medium); display: flex; align-items: center; gap: 10px; }
.quality-badge i { font-size: 1.8rem; color: #28a745; }
.quality-badge p { margin: 0; line-height: 1.3; }
.quality-badge p span { font-size: 0.8em; color: var(--light-text); }
/* --- NEW HERO BACKGROUND SLIDER STYLES --- */

.hero-background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px; /* Match the container's rounding */
    z-index: 1; /* Place it behind the quality badge */
}

.hero-background-slider .swiper-slide {
    background-size: cover;
    background-position: center;
}

/* Ensure the hero-image-container is a positioning context */
.hero-image-container {
    position: relative;
    border-radius: 15px;
    box-shadow: var(--box-shadow-strong);
    height: 500px; /* Give the container a fixed height */
    max-width: 500px;
    width: 100%;
}

/* Adjust quality badge to be on top */
.quality-badge {
    z-index: 2; /* Ensure badge is on top of the slider */
}

/* Remove the old static image style if it exists */
.hero-main-image {
    display: none; /* Hide the old static image tag */
}
/* =================================================================== */
/* --- Products Slider Section --- */
/* =================================================================== */

.products-section {
    position: relative;
    overflow: hidden; /* Important for positioning arrows outside */
}

.products-section .section-label {
    /* Uses the global .section-label pill style */
    text-align: center;
}

.products-section .section-headline {
    text-align: center;
}

/* Swiper Carousel Container */
.product-category-slider {
    padding: 40px 0 60px 0; /* Add padding top for breathing room and bottom for pagination */
    margin: 0 -25px; /* Negative margin to help arrows sit outside */
    padding: 40px 25px 60px 25px; /* Add padding to compensate for negative margin */
}

.product-category-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: auto; /* Allow cards to define their own height */
}

.category-card {
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: var(--box-shadow-medium);
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

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

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

.category-card h3 {
    padding: 20px 20px 5px;
    font-size: 1.4rem;
    color: var(--dark-text);
    margin-bottom: 5px;
}

/* MODIFIED: Replaces the old .category-card style */
.category-card {
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: var(--box-shadow-medium);
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    
    /* --- KEY CHANGES FOR FIXED SIZE --- */
    height: 450px; /* **FIXED SIZE**: Set a fixed height for all cards */
    display: flex;
    flex-direction: column;
    /* ------------------------------------ */
    
    text-align: center;
}

.view-collection-link {
    display: inline-block;
    font-weight: 600;
    color: var(--primary-color);
    padding: 0 20px 25px;
    transition: all var(--transition-speed) ease;
}

.view-collection-link:hover {
    color: var(--secondary-color);
    letter-spacing: 0.5px; /* Adds a nice subtle effect on hover */
}

/* --- NEW Attractive Swiper Navigation Arrows --- */

.product-category-slider .swiper-button-next,
.product-category-slider .swiper-button-prev {
    background: var(--primary-gradient);
    color: var(--white-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: var(--box-shadow-medium);
    transition: all var(--transition-speed) ease;
    
    top: 50%;
    transform: translateY(-70%); /* Adjusts vertical centering */
}

.product-category-slider .swiper-button-next:hover,
.product-category-slider .swiper-button-prev:hover {
    box-shadow: var(--box-shadow-strong);
    transform: translateY(-70%) scale(1.05);
}

.product-category-slider .swiper-button-next:after,
.product-category-slider .swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: 800;
}

/* Position arrows outside the main content flow */
.product-category-slider .swiper-button-prev {
    left: 0px; /* Adjust as needed */
}

.product-category-slider .swiper-button-next {
    right: 0px; /* Adjust as needed */
}

/* --- Swiper Pagination Dots --- */

.product-category-slider .swiper-pagination {
    bottom: 20px !important; /* Position pagination dots lower */
}

.product-category-slider .swiper-pagination-bullet {
    background-color: #ccc;
    opacity: 1;
    transition: all var(--transition-speed) ease;
}

.product-category-slider .swiper-pagination-bullet-active {
    background: var(--primary-gradient);
    width: 25px; /* Make the active dot wider */
    border-radius: 5px;
}

/* --- Responsive Adjustments for Slider --- */

@media (max-width: 768px) {
    .product-category-slider {
        margin: 0;
        padding: 20px 0 60px 0;
    }
    .product-category-slider .swiper-button-prev {
        left: 10px; /* Bring arrows inside on mobile */
    }
    .product-category-slider .swiper-button-next {
        right: 10px; /* Bring arrows inside on mobile */
    }
}
/* About Us Section (Homepage) */
.about-us-section { background-color: var(--bg-light-grey); }
.about-content-wrapper { display: flex; align-items: center; gap: 60px; }
.about-left-column { flex: 1; }
.about-right-column { flex: 1; }
.about-image-container { position: relative; }
.about-main-image { border-radius: 15px; box-shadow: var(--box-shadow-strong); }
.on-time-delivery-overlay { position: absolute; bottom: 25px; right: -25px; background: var(--white-color); padding: 15px 25px; border-radius: 10px; box-shadow: var(--box-shadow-medium); text-align: center; }
.on-time-delivery-overlay h3 { font-size: 2.5rem; margin-bottom: 0; }
.on-time-delivery-overlay p { margin-bottom: 0; }
.about-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 30px; }
.feature-item { display: flex; align-items: flex-start; gap: 15px; }
.feature-item i { font-size: 1.6rem; color: var(--primary-color); margin-top: 5px; }
.feature-item h3 { font-size: 1.2rem; margin-bottom: 5px; }
.feature-item p { font-size: 0.95rem; margin-bottom: 0; }

/* Process Section (Homepage) */
.process-section {
    position: relative;
    background-color: var(--bg-light-grey); /* Give it a subtle background to stand out */
}

.process-timeline-container {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    position: relative; /* This is the parent for the connecting line */
}

/* The Dotted Connecting Line */
.process-timeline-container::before {
    content: '';
    position: absolute;
    top: 35px; /* Vertically center the line with the icons */
    left: 10%;  /* Start after some padding */
    right: 10%; /* End before some padding */
    height: 3px;
    background-image: linear-gradient(to right, #ccc 50%, transparent 50%);
    background-size: 15px 3px;
    background-repeat: repeat-x;
    z-index: 0;
}

.process-timeline-item {
    width: 23%; /* Distribute the width among 4 items */
    text-align: center;
    position: relative; /* Each item is a reference point */
    z-index: 1; /* Ensure items are on top of the line */
}

.timeline-icon-wrapper {
    width: 70px; /* **BIGGER ICONS**: Container for the icon */
    height: 70px;/* **BIGGER ICONS**: Container for the icon */
    margin: 0 auto 30px auto; /* Center it and add space below */
    background: var(--white-color);
    border-radius: 50%;
    box-shadow: var(--box-shadow-strong);
    position: relative;
    
    /* Center the icon inside */
    display: flex;
    justify-content: center;
    align-items: center;
}

.timeline-icon-wrapper .timeline-icon {
    font-size: 2.2rem; /* **BIGGER ICONS**: Increase the icon size */
    color: var(--primary-color);
}

.timeline-icon-wrapper .timeline-number {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 30px;
    height: 30px;
    background: var(--primary-gradient);
    color: var(--white-color);
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 700;
    
    /* Center the number inside its circle */
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid var(--white-color);
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--medium-text);
    line-height: 1.6;
}

/* Responsive adjustments for the timeline */
@media (max-width: 992px) {
    .process-timeline-container {
        flex-wrap: wrap; /* Allow items to wrap */
        justify-content: center;
        gap: 40px 2%; /* Add vertical and horizontal gap */
    }
    .process-timeline-item {
        width: 48%; /* Two items per row */
    }
    .process-timeline-container::before {
        display: none; /* Hide the connecting line on smaller screens */
    }
}

@media (max-width: 768px) {
    .process-timeline-item {
        width: 100%; /* Stack them on mobile */
    }
}
/* =================================================================== */
/* --- NEW IMAGE CARD CUSTOMIZATION SECTION STYLES --- */
/* =================================================================== */

.customization-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.customization-category-item-img {
    background: var(--white-color);
    border-radius: 15px; /* Rounded corners for the whole card */
    box-shadow: var(--box-shadow-medium);
    transition: all var(--transition-speed) ease;
    overflow: hidden; /* This is important to keep the image corners rounded */
    display: flex;
    flex-direction: column; /* Stack image on top of content */
}

.customization-category-item-img:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-strong);
}

.customization-category-item-img img {
    width: 100%;
    height: 180px; /* Give all images a consistent height */
    object-fit: cover; /* Ensure images fill the space without distortion */
}

.customization-category-item-img .card-content {
    padding: 25px; /* Add padding to the text area */
}

.customization-category-item-img .category-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.customization-category-item-img h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.customization-category-item-img ul {
    list-style: none;
    padding-left: 0;
}

.customization-category-item-img ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
}

.customization-category-item-img ul li::before {
    content: '\f00c'; /* Checkmark icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #28a745;
    position: absolute;
    left: 0;
    top: 4px;
}
/* =================================================================== */
/* --- FINAL CERTIFICATIONS SECTION STYLES (VERSION 3 - HIGH SPECIFICITY) --- */
/* =================================================================== */

.certifications-section {
    background-color: var(--white-color); /* Use a clean white background for this section */
    border-top: 1px solid #f0f0f0; /* Subtle separator line */
    border-bottom: 1px solid #f0f0f0;
}

/* HIGH SPECIFICITY RULE FOR HORIZONTAL LAYOUT */
/* By targeting the div directly within the section, we increase priority */
section.certifications-section div.certifications-grid {
    display: flex !important; /* Forces flex display */
    flex-direction: row !important; /* Explicitly sets the direction to horizontal */
    justify-content: center !important;
    align-items: center !important;
    gap: 40px !important;
    flex-wrap: nowrap !important; /* Prevents wrapping on desktop */
    margin-top: 60px;
}

.certification-item {
    background-color: var(--white-color);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    box-shadow: var(--box-shadow-medium);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all var(--transition-speed) ease;
}

.certification-item img {
    max-width: 65%;
    max-height: 65%;
    object-fit: contain;
 
    transition: all var(--transition-speed) ease;
}

.certification-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-strong);
}

.certification-item:hover img {
    filter: grayscale(0%) opacity(1);
}

/* RESPONSIVE OVERRIDE FOR MOBILE */
/* This ensures they stack correctly ONLY on small screens */
@media (max-width: 768px) {
    section.certifications-section div.certifications-grid {
        flex-direction: column !important; /* Stack them vertically on mobile */
        gap: 30px !important;
    }
}
/* =================================================================== */
/* --- FINAL CTA BLOCKS (CORRECTED VERSION) --- */
/* =================================================================== */

.cta-start-project,
.need-something-specific-callout {
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: var(--box-shadow-strong);
    color: var(--white-color); /* Sets ALL default text inside to white */
    text-align: center;
}

.cta-start-project {
    background: var(--primary-gradient); /* The main blue-purple gradient */
}

.need-something-specific-callout {
    background: var(--dark-blue-gradient); /* The darker blue gradient, if used */
}

/* Target the headlines inside BOTH boxes */
.cta-start-project h2,
.need-something-specific-callout h2 {
    color: var(--white-color);
    font-size: 2.5rem;
}

/*
* THIS IS THE KEY FIX:
* It specifically targets the SPAN inside the headline of the CTA box
* and forces it to be plain white, removing the broken gradient effect.
*/
.cta-start-project h2 span,
.need-something-specific-callout h2 span {
    color: inherit !important; /* Inherits the white color from the h2 */
    background: none !important; /* Removes any background gradient */
    -webkit-background-clip: initial !important; /* Resets clipping properties */
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
}

/* Target the paragraphs inside BOTH boxes */
.cta-start-project p,
.need-something-specific-callout p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons inside the CTA */
.cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
/* --- 5. Inner Page Specifics --- */

/* Page Hero (For Inner Pages) */
.page-hero-section { background-color: rgba(255, 255, 255, 0.7); padding: 120px 0 80px; text-align: center; }

/* =================================================================== */
/* --- CONTACT PAGE STYLES (FINAL VERSION) --- */
/* =================================================================== */

.contact-hero-section {
    background: var(--dark-blue-gradient);
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Make the form column slightly wider */
    gap: 80px;
    align-items: start;
}

/* --- Left Column: Information --- */

.contact-info-column .section-label-white {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}

.contact-info-column .section-headline .highlight-yellow {
    background: linear-gradient(90deg, var(--accent-yellow) 0%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info-column > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 500px;
}

.contact-details-list {
    margin-top: 40px;
}

.contact-details-list .contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    color: var(--white-color);
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-icon-box i {
    font-size: 1.5rem;
    color: var(--white-color);
}

.contact-info-item strong {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}
.contact-info-item a, .contact-info-item span {
    color: var(--white-color);
    font-size: 1.1rem;
    font-weight: 500;
}
.contact-info-item a:hover {
    color: var(--accent-yellow);
}

.social-follow {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.social-follow h4 {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-bottom: 15px;
}
.social-follow .socials a {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
}
.social-follow .socials a:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}


/* --- Right Column: Form Card --- */

.form-card {
    background: var(--white-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.form-card h3 {
    font-size: 1.8rem;
    color: var(--dark-text);
}
.form-card p {
    margin-bottom: 30px;
    color: var(--medium-text);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-text);
    font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light-grey);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(76, 130, 247, 0.2);
}

.contact-form button i {
    margin-right: 8px;
}

.privacy-text {
    font-size: 0.8rem;
    color: var(--light-text);
    text-align: center;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.privacy-text i {
    color: var(--medium-text);
}

/* Responsive for Contact Page */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
/* =================================================================== */
/* --- FINAL PRODUCT PAGE STYLES (FLOATING PARALLAX) --- */
/* =================================================================== */

.parallax-showcase-wrapper {
    background-color: var(--white-color);
}

.parallax-item {
    padding: 100px 0;
    position: relative;
    overflow: hidden; /* Contains the large background text */
}

.parallax-item.bg-light-grey {
    background-color: var(--bg-light-grey);
}

.parallax-item .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    position: relative; /* For z-index layering */
}

/* --- Layer 1: Background Text --- */
.parallax-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12rem; /* HUGE text */
    font-weight: 800;
    color: rgba(0, 0, 0, 0.04); /* Very light and subtle */
    z-index: 1;
    user-select: none; /* Make it unselectable */
}

/* --- Layer 2: Text Content --- */
.parallax-content {
    position: relative;
    z-index: 3;
    grid-column: 2 / 3; /* Position in the right column by default */
    grid-row: 1;
}

/* --- Layer 3: Floating Image --- */
.parallax-image {
    position: relative;
    z-index: 2; /* Sits between BG text and content card */
    grid-column: 1 / 2; /* Position in the left column by default */
    grid-row: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.parallax-image img {
    max-width: 90%;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.2)); /* Realistic shadow for floating effect */
}

/* --- Layout Alternation --- */
.parallax-item.reverse .parallax-content {
    grid-column: 1 / 2; /* Move text to the left */
    text-align: right;
}
.parallax-item.reverse .parallax-image {
    grid-column: 2 / 3; /* Move image to the right */
}
.parallax-item.reverse .parallax-bg-text {
    /* Optional: move BG text too */
    left: 40%;
}

/* --- Content Styling --- */
.parallax-content h3 { font-size: 2.8rem; margin-bottom: 20px; }
.parallax-content p { font-size: 1.1rem; margin-bottom: 30px; max-width: 450px; }
.parallax-content ul { list-style: none; margin-bottom: 40px; }
.parallax-content ul li { margin-bottom: 12px; font-weight: 500; }
.parallax-content ul li strong { color: var(--dark-text); display: inline-block; width: 90px; }
.parallax-item.reverse .parallax-content p,
.parallax-item.reverse .parallax-content ul { margin-left: auto; } /* Align to the right */


/* --- Responsive for Parallax Layout --- */
@media (max-width: 992px) {
    .parallax-item .container {
        grid-template-columns: 1fr; /* Stack everything */
    }
    .parallax-bg-text {
        font-size: 8rem;
    }
    .parallax-content, .parallax-item.reverse .parallax-content {
        grid-column: 1;
        grid-row: 2; /* Text always goes below */
        text-align: center;
    }
    .parallax-image, .parallax-item.reverse .parallax-image {
        grid-column: 1;
        grid-row: 1; /* Image always goes on top */
        padding: 40px 0;
    }
    .parallax-content p, .parallax-item.reverse .parallax-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .parallax-content ul, .parallax-item.reverse .parallax-content ul {
        margin-left: auto;
        margin-right: auto;
        display: inline-block;
        text-align: left;
    }
}

/* --- 6. Footer --- */
footer { background-color: var(--bg-dark); color: #ccc; padding: 60px 0 20px; font-size: 0.95rem; }

/* MODIFIED: Footer Grid Layout */
.footer-content { 
    display: grid; 
    /* Changed from 4 columns to 5 */
    grid-template-columns: 1.7fr 1.3fr 1fr 1fr 1.5fr; 
    gap: 40px; 
    margin-bottom: 40px; 
}

/* NEW: Container for footer logo + text */
.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

/* MODIFIED: Footer Logo Size */
.footer-logo { 
    max-width: 60px; /* Adjusted size */
    filter: none; 
}

/* NEW: Footer Logo Text */
.footer-logo-text {
    color: var(--white-color);
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.2;
}
.footer-logo-text span:first-child { font-weight: 800; }
.footer-logo-text span:last-child { 
    font-size: 0.7em; 
    font-weight: 400; 
    color: #ccc; 
    display: block; 
    letter-spacing: 0.5px;
}

.footer-section h3 { color: var(--white-color); margin-bottom: 20px; font-size: 1.2rem; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 10px; }
.footer-section ul li a { color: #b0b0b0; }
.footer-section ul li a:hover { color: var(--primary-color); }
.socials a { color: #b0b0b0; margin-right: 15px; font-size: 1.2rem; }
.socials a:hover { color: var(--white-color); }
.footer-contact-info .contact-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 15px; }
.footer-contact-info .contact-item i { color: var(--primary-color); margin-top: 5px; }
.footer-contact-info .contact-item p, .footer-contact-info .contact-item a { color: #b0b0b0; margin: 0; }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; color: #aaa; display: flex; justify-content: space-between; align-items: center; }
.legal-links a { color: #aaa; margin-left: 20px; }

/* =================================================================== */
/* --- 7. RESPONSIVE STYLES (VERSION 5 - FINAL & POLISHED) --- */
/* =================================================================== */

main {
    padding-top: 75px; /* Pushes content down from under fixed header */
}

/* --- Tablet View (Medium Screens) --- */
@media (max-width: 992px) {
    main { padding-top: 70px; }
    .section-headline { font-size: 2.4rem; }
    .section-padding { padding: 70px 0; }

    .hero-content-wrapper, .about-content-wrapper, .contact-grid {
        grid-template-columns: 1fr; flex-direction: column; gap: 40px;
    }
    .hero-left-column, .about-right-column, .hero-right-column, .about-left-column {
        order: 0; text-align: center;
    }
    .hero-subheadline, .section-description, .about-features-grid, .hero-buttons, .hero-metrics-container {
        text-align: center; justify-content: center;
    }
    .hero-image-container, .about-image-container { margin: 0 auto; }
    .customization-categories-grid, .process-timeline-container { grid-template-columns: 1fr 1fr; }

    .footer-content { grid-template-columns: 1fr 1fr; text-align: center; }
    .footer-logo-container, .socials, .footer-contact-info .contact-item { justify-content: center; }
    /* FIX: Ensure partner logos container is centered */
    .footer-partners { display: flex; flex-direction: column; align-items: center; }
    .footer-partners .partner-logos { flex-direction: row; justify-content: center; align-items: center; gap: 20px; }
    .footer-partners .partner-logos img { max-height: 25px; width: auto; object-fit: contain; }
    
    .parallax-item .container { grid-template-columns: 1fr; }
    .parallax-bg-text { font-size: 8rem; }
    .parallax-content, .parallax-item.reverse .parallax-content { grid-row: 2; text-align: center; }
    .parallax-image, .parallax-item.reverse .parallax-image { grid-row: 1; padding: 40px 0; }
}
/* --- Mobile View (Small Screens) --- */
@media (max-width: 768px) {
    /* ================================================= */
    /* --- GLOBAL & TYPOGRAPHY FINAL FIXES (KEY UPDATE) --- */
    /* ================================================= */
    body {
        overflow-x: hidden; /* Prevents horizontal scrollbars */
    }
    main { padding-top: 65px; }
    .section-padding { padding: 40px 0; } /* Tighter section spacing */
    
    /* FIX: Further reduction of all key font sizes */
    p { font-size: 0.95rem; line-height: 1.6; } /* Global paragraph size */
    .section-headline { font-size: 1.7rem; line-height: 1.3; }
    .section-description { font-size: 0.95rem; line-height: 1.6; }
    .hero-section h1 { font-size: 1.9rem; }
    .hero-subheadline { font-size: 0.9rem; line-height: 1.6; }
    /* ================================================= */

    /* --- Header & Navigation --- */
    .main-logo { height: 40px !important; }
    .logo-text { font-size: 0.9rem !important; }
    .logo-text span:last-child { font-size: 0.6em !important; }
    .navbar .btn-quote { display: none; }
    .nav-menu {
        display: none; flex-direction: column; width: 100%;
        background-color: var(--white-color); position: absolute;
        top: 100%; left: 0; box-shadow: var(--box-shadow-medium);
        padding: 10px 0; border-top: 1px solid #eee;
    }
    .nav-menu.active { display: flex; }
    .nav-item { margin: 1rem 0; width: 100%; text-align: center; }
    .nav-item.dropdown .dropdown-content {
        display: none; position: static; box-shadow: none; border: none; background: #f9f9f9;
        margin-top: 10px; padding-bottom: 10px;
    }
    .nav-item.dropdown.dropdown-active .dropdown-content { display: block; }
    .mobile-quote-btn { background-color: #f8f9fa; margin-top: 10px; padding: 5px 0; }
    .navbar-header { width: 100%; display: flex; justify-content: space-between; align-items: center; }
    .hamburger { display: block; }

    /* --- Hero Section --- */
    .hero-section { padding: 40px 0; }
    .hero-right-column { min-height: 300px; width: 100%; }
    .hero-image-container { min-height: 300px; width: 100%; max-width: 100%; }
    .hero-background-slider { height: 100%; }
    .quality-badge { left: 10px; bottom: 10px; padding: 10px; transform: scale(0.9); }

    /* --- About Us Section Fix (from screenshot) --- */
    .about-features-grid { grid-template-columns: 1fr; }
    .feature-item { justify-content: center; text-align: center; }
    .feature-item h3 { font-size: 1.1rem; }
    .feature-item p { font-size: 0.9rem; }

    /* --- Product Page Refinements --- */
    .page-hero-section { padding: 40px 15px; }
    .parallax-item { padding: 0 0 40px 0; overflow: hidden; }
    .parallax-item .container { gap: 0; }
    .parallax-image, .parallax-item.reverse .parallax-image { grid-row: 1; padding: 0; }
    .parallax-image img { filter: none !important; }
    .parallax-bg-text { display: block; top: 90px; font-size: 4rem; left: 0; width: 100%; text-align: center; transform: none; opacity: 0.5; }
    .parallax-content { padding: 0 20px 20px 20px; }
    .parallax-content h3 { font-size: 1.6rem; }
    .parallax-content p, .parallax-content ul li { font-size: 0.9rem; }
    .parallax-content .btn { padding: 10px 20px; font-size: 0.85rem; }

    /* --- Footer --- */
    .footer-content { grid-template-columns: 1fr; gap: 40px; }
    .footer-partners .partner-logos { flex-direction: column; align-items: center; }
    .footer-partners .partner-logos img { max-width: 120px; height: 40px; object-fit: contain; }
}
/* --- Animations (Keep As-Is) --- */
.animate-on-scroll { opacity: 0; transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-in { transform: translateY(20px); }
.fade-in-up { transform: translateY(50px); }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; } .delay-2 { transition-delay: 0.2s; } .delay-3 { transition-delay: 0.3s; }

/* =================================================================== */
/* --- SERVICES PAGE STYLES (NEW ALTERNATING LAYOUT) --- */
/* =================================================================== */

.alternating-features-section {
    padding-top: 40px; /* Reduced top padding to bring it closer to hero */
    padding-bottom: 80px;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background-color: var(--white-color);
    border-radius: 20px;
    box-shadow: var(--box-shadow-medium);
    overflow: hidden; /* Important for keeping image corners rounded */
    margin-bottom: 60px;
}
.feature-block:last-child {
    margin-bottom: 0;
}

.feature-block.reverse .feature-image {
    order: 2; /* This moves the image to the right */
}

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

.feature-text {
    padding: 60px;
}

.feature-text i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-text h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.feature-text p {
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* --- Responsive for Alternating Blocks --- */
@media (max-width: 992px) {
    .feature-block {
        grid-template-columns: 1fr; /* Stack on tablet */
        gap: 0;
    }
    .feature-block.reverse .feature-image {
        order: 1; /* Reset order so image is always on top */
    }
    .feature-image img {
        height: 300px;
    }
    .feature-text {
        padding: 40px;
        text-align: center;
    }
}
/* --- Decoration Showcase Styles (Services Page) --- */

.customization-techniques {
    background-color: var(--bg-light-grey);
}

.decoration-showcase {
    margin-top: 60px;
}

.decoration-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}
.decoration-item:last-child {
    margin-bottom: 0;
}

.decoration-item.reverse .decoration-image {
    order: 2; /* Move image to the right */
}

.decoration-image {
    border-radius: 20px;
    box-shadow: var(--box-shadow-medium);
    overflow: hidden;
}
.decoration-image img {
    width: 100%;
    display: block;
}

.decoration-details h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.decoration-details p {
    margin-bottom: 25px;
}

.decoration-details ul {
    list-style-position: inside; /* Keeps bullets aligned */
    padding-left: 0;
}

.decoration-details ul li {
    margin-bottom: 10px;
}

/* Responsive for Decoration Section */
@media (max-width: 992px) {
    .decoration-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .decoration-item.reverse .decoration-image {
        order: 1; /* Image always on top */
    }
    .decoration-details {
        text-align: center;
    }
    .decoration-details ul {
        display: inline-block;
        text-align: left;
    }
}
/* =================================================================== */
/* --- PRODUCT PAGE - STYLE GALLERY SLIDER --- */
/* =================================================================== */

.style-gallery-section {
    background-color: var(--bg-light-grey);
}

.style-gallery-container {
    position: relative;
    padding: 40px 60px 60px 60px; /* Top, Horizontal, Bottom */
    margin-top: 40px;
}

.style-gallery-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.style-gallery-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow-medium);
    transition: all var(--transition-speed) ease;
    width: 100%;
    height: 350px; /* Fixed height for all images */
}

.style-gallery-image:hover {
    transform: scale(1.03);
    box-shadow: var(--box-shadow-strong);
}

.style-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Navigation & Pagination Styling --- */
.style-gallery-container .swiper-button-next,
.style-gallery-container .swiper-button-prev {
    background: var(--primary-gradient);
    color: var(--white-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: var(--box-shadow-medium);
    transition: all var(--transition-speed) ease;
    top: 50%;
    transform: translateY(-50%);
}

.style-gallery-container .swiper-button-next:hover,
.style-gallery-container .swiper-button-prev:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: var(--box-shadow-strong);
}

.style-gallery-container .swiper-button-next:after,
.style-gallery-container .swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: 800;
}

.style-gallery-container .swiper-button-prev { left: 0px; }
.style-gallery-container .swiper-button-next { right: 0px; }

.style-gallery-container .swiper-pagination {
    bottom: 10px !important;
}

.style-gallery-container .swiper-pagination-bullet {
    background-color: #ccc;
    opacity: 1;
}

.style-gallery-container .swiper-pagination-bullet-active {
    background: var(--primary-gradient);
    width: 25px;
    border-radius: 5px;
}
/* =================================================================== */
/* --- WHATSAPP FLOATING WIDGET STYLES --- */
/* =================================================================== */

.whatsapp-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000; /* Ensures it's on top of other content */
    display: flex;
    align-items: center;
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    background-color: #25D366; /* Official WhatsApp Green */
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: transform 0.3s ease;
    animation: pulse 2s infinite; /* This applies the blinking animation */
}

.whatsapp-text {
    position: absolute;
    right: 75px; /* Position text to the left of the icon */
    background-color: #222; /* Dark background for contrast */
    color: #fff;
    padding: 8px 15px;
    border-radius: 6px;
    white-space: nowrap; /* Prevents text from breaking into two lines */
    font-weight: 500;
    font-size: 0.9rem;
    
    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

/* Show the text and scale the icon when hovering the container */
.whatsapp-widget:hover .whatsapp-text {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.whatsapp-widget:hover .whatsapp-icon {
    transform: scale(1.1);
    animation: none; /* Stop the pulse animation on hover for a cleaner look */
}

/* The Blinking/Pulsing Animation Keyframes */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* This media query targets tablets and desktops */
@media (min-width: 769px) {
    /* FIX: Hide the mobile-only button on desktop */
    .mobile-quote-btn {
        display: none !important;
    }
}
/* =================================================================== */
/* --- 9. PROMOTIONAL POPUP STYLES --- */
/* =================================================================== */

.promo-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 26, 0.7); /* Dark, semi-transparent backdrop */
    z-index: 2000; /* Ensure it's on top of everything */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;

    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.promo-popup-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.promo-popup {
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    /* Animation will be applied when it becomes visible */
}

/* Entry Animation */
.promo-popup-overlay.is-visible .promo-popup {
    animation: popup-fade-in 0.4s ease-out forwards;
}

.close-popup-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}
.close-popup-btn:hover {
    color: #333;
}

.popup-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    margin: 0 auto 20px auto;
}

.promo-popup h2 {
    font-size: 1.8rem;
    color: var(--dark-text);
    margin-bottom: 15px;
}
.promo-popup p {
    color: var(--medium-text);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* ADD THIS NEW RULE */
.promo-popup .btn {
    margin-top: 10px; /* Add some space above the button */
}
/* Keyframes for the animation */
@keyframes popup-fade-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* Animations */
.animate-on-scroll { opacity: 0; transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-in { transform: translateY(20px); }
.fade-in-up { transform: translateY(50px); }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; } .delay-2 { transition-delay: 0.2s; } .delay-3 { transition-delay: 0.3s; }