/*
|--------------------------------------------------------------------------
| Lufga Font Integration (Place this block at the very start of your CSS)
|--------------------------------------------------------------------------
| The path '../inc/lufga/' assumes your CSS is one level up from the 'inc' folder.
*/

/* Lufga Regular (400) */
@font-face {
    font-family: 'Lufga';
    src: url('../../lufga/LufgaRegular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Lufga Medium (500) */
@font-face {
    font-family: 'Lufga';
    src: url('../../lufga/LufgaMedium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Lufga SemiBold (600) */
@font-face {
    font-family: 'Lufga';
    src: url('../../lufga/LufgaSemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Lufga Bold (700) */
@font-face {
    font-family: 'Lufga';
    src: url('../../lufga/LufgaBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Lufga ExtraBold (800) */
@font-face {
    font-family: 'Lufga';
    src: url('../../lufga/LufgaExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* Lufga Black (900) */
@font-face {
    font-family: 'Lufga';
    src: url('../../lufga/LufgaBlack.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ============================================= */
/* 0. GLOBAL & FONT SETUP                        */
/* ============================================= */
:root {
    /* Color Palette */
    --color-navy: #08103E;
    --color-highlight: #FF6B35;
    --color-light-gray: #F7F9FC;
    /* Main background for overall site */
    --color-subheading: #4B4B8C;
    --color-body: #08103E;
    /* Updated body color */
    --color-white: #FFFFFF;
    --color-dark-text-light: #C0C0D0;
    /* Light text for readability */
    --color-dark-border: rgba(255, 255, 255, 0.15);
    /* Slightly clearer border */

    /* Typography */
    --font-heading: 'Lufga';
    --font-body: 'Lufga';
    --font-accent: 'Great Vibes', cursive;

    /* Spacing */
    --spacing-lg: 40px;
    --spacing-md: 20px;
    --spacing-sm: 10px;
}

html {
    scroll-behavior: smooth; /* <-- THIS IS THE KEY FOR SMOOTH SCROLLING */
}

/* Reset and global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: var(--font-body);
    color: var(--color-body);
    background-color: var(--color-light-gray);
    overflow-x: hidden;
}


/* Header styling */

/* --- Main Header Styles --- */
#main-header {
    background-color: var(--color-navy);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: var(--font-heading);
    transition: background-color 0.3s ease;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 15px var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Logo Styling with Image --- */
.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    /* Set a standard height for the logo image */
    width: auto;
    transition: opacity 0.3s ease;
}

/* --- Navigation Links Styling --- */
.desktop-nav {
    display: flex;
    gap: 30px;
    margin-left: auto;
}

.desktop-nav .nav-link {
    text-decoration: none;
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.desktop-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-highlight);
}

/* --- Header Actions (CTA & Menu) --- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    /* This ensures the CTA and hamburger button are always on the far right */
    margin-left: var(--spacing-sm);
}

/* --- CTA Button Styling (Primary Highlight) --- */
.cta-button {
    /* ... (unchanged styles) ... */
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 6px;
    text-align: center;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    background-color: var(--color-highlight);
    color: var(--color-white);
    border: 2px solid var(--color-highlight);
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.4);
}

.cta-button:hover {
    background-color: #ff855c;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(255, 107, 53, 0.6);
}


/* --- Mobile Navigation Menu Styles --- */
.hamburger-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: none;
    /* Hidden by default on desktop */
}

.mobile-nav {
    display: none;
    /* HIDDEN BY DEFAULT (This is what JS will toggle) */
    position: absolute;
    top: 70px;
    /* Position it below the main header bar */
    left: 0;
    width: 100%;
    background-color: var(--color-navy);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    padding: var(--spacing-sm) 0;
    flex-direction: column;
    z-index: 999;
    /* Smooth slide down effect */
    transition: max-height 0.3s ease-out;
    max-height: 0;
    /* Used for animation */
    overflow: hidden;
}

.mobile-nav.open {
    display: flex;
    /* Show the menu */
    max-height: 300px;
    /* Sufficient height to show all links */
}

.mobile-nav-link {
    display: block;
    text-decoration: none;
    color: var(--color-white);
    font-size: 1.1rem;
    padding: 12px var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.mobile-nav-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.mobile-cta {
    margin: var(--spacing-sm) var(--spacing-md);
    text-align: center;
    padding: 12px 20px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .desktop-nav {
        display: none;
        /* Hide desktop navigation */
    }

    .hamburger-menu {
        display: block;
        /* Show hamburger menu */
    }

    .header-container {
        padding: 12px var(--spacing-sm);
        /* Adjusted padding for mobile */
    }

    /* Ensure CTA is visible even on mobile, placed before the hamburger */
    .header-actions .cta-button {
        display: block;
    }
}

/* Hero banner styles */
#hero-banner {
    width: 100%;
    min-height: 100vh;
    /* padding-top: 100px; */
    background-color: var(--color-light-gray);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Background Glow Elements */
.background-glow-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.glow-top-left,
.glow-bottom-right {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(120px);
    background: radial-gradient(circle, var(--color-highlight) 0%, rgba(255, 107, 53, 0) 70%);
    animation: pulseGlow 12s infinite alternate ease-in-out;
}

.glow-top-left {
    top: -15%;
    left: -15%;
    background: radial-gradient(circle, var(--color-subheading) 0%, rgba(75, 75, 140, 0) 70%);
    opacity: 0.1;
    animation-delay: 2s;
}

.glow-bottom-right {
    bottom: -15%;
    right: -15%;
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.9);
        opacity: 0.15;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.15;
    }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 64px 64px;
    display: flex;
    align-items: center;
    gap: 96px;
    position: relative;
    z-index: 1;
}

.text-side {
    flex: 1;
    max-width: 60%;
    text-align: left;
}

.pre-heading {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-body);
    letter-spacing: 3px;
    margin-bottom: 24px;
    font-size: 16px;
    text-transform: uppercase;
}

h1 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-navy);
    font-size: 67px;
    line-height: 1.1;
    margin-bottom: 32px;
}

.accent-text {
    color: var(--color-highlight);
    font-family: var(--font-accent);
    font-size: 44px;
    display: block;
    line-height: 1;
}

.subheading {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-body);
    font-size: 22px;
    margin-bottom: 64px;
    line-height: 1.5;
}

.subheading strong {
    color: var(--color-navy);
    font-weight: 700;
}

.cta-group {
    display: flex;
    gap: 24px;
    align-items: center;
}

/* Button styling */
/* --- CTA Group Styling --- */

/* Container for the buttons (using flex for layout) */
.cta-group {
    display: flex;
    /* Space between the two buttons */
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    /* Aligns to the left side */
    margin-top: 30px;
}

/* --- General Button Styles --- */
.cta-group a {
    /* Set display: flex to center text/icons if added later */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-group span {
    /* Ensure the text itself is styled */
    line-height: 1;
}

/* --- Primary Button: Highlight Color & Pulse Animation --- */
.primary-button {
    background-color: var(--color-highlight);
    color: var(--color-white);
    border: 2px solid var(--color-highlight);
    /* Strong shadow for lift */
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    position: relative;
}

.primary-button:hover {
    background-color: #ff855c;
    /* Slightly brighter highlight on hover */
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.6);
}

/* Pulse Animation Keyframes */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.6);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

/* Apply Pulse Animation */
.pulse-animation {
    animation: pulse 2s infinite;
}


/* --- Secondary Button: Outline/Subtle Style --- */
.secondary-button {
    background-color: transparent;
    color: var(--color-navy);
    /* Dark text on light background */
    border: 2px solid var(--color-navy);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.secondary-button:hover {
    background-color: var(--color-navy);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* --- Responsiveness (Mobile View) --- */
@media (max-width: 600px) {
    .cta-group {
        /* Stack buttons vertically */
        flex-direction: column;
        gap: 15px;
        /* Center group when content is centered on mobile */
        justify-content: center;
        margin-top: 20px;
        width: 100%;
        /* Ensure it takes full width for stacking */
    }

    .cta-group a {
        /* Force buttons to take full width of the container */
        width: 50%;
        max-width: 300px;
        /* Optional: Constrain max width for better appearance */
        padding: 12px 20px;
        font-size: 1rem;
        margin: 0 auto;
        /* Center buttons horizontally */
    }

    /* Ensure pulse animation is responsive */
    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
        }

        70% {
            box-shadow: 0 0 0 8px rgba(255, 107, 53, 0);
            /* Reduced size for mobile */
        }

        100% {
            box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
        }
    }
}

/* Visual Side Styling */
.visual-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px;
}

.visual-cluster-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
    width: 100%;
    max-width: 650px;
}

.grid-item {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

/* Specific grid placements */
.dashboard {
    grid-column: 1 / span 2;
    grid-row: 1 / 2;
    background-color: var(--color-white);
    max-height: 250px;
}

.mobile {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    background-color: var(--color-white);
    max-height: 200px;
}

.product {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    background-color: var(--color-white);
    max-height: 200px;
}

/* Responsive media queries */
@media (max-width: 1024px) {
    .header-content {
        padding: 19px 32px;
    }

    .desktop-nav,
    .cta-mini {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    #hero-banner {
        padding-top: 80px;
    }

    .hero-content {
        flex-direction: column;
        gap: 48px;
        padding: 48px 32px;
        text-align: center;
    }

    .text-side {
        max-width: 100%;
    }

    h1 {
        font-size: 51px;
    }

    .accent-text {
        font-size: 61px;
        display: inline;
    }

    .subheading {
        font-size: 19px;
        margin-bottom: 32px;
    }

    .cta-group {
        justify-content: center;
    }

    .visual-cluster-grid {
        max-width: 600px;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .dashboard {
        max-height: 200px;
    }

    .mobile,
    .product {
        max-height: 150px;
    }

    .glow-top-left,
    .glow-bottom-right {
        width: 350px;
        height: 350px;
        filter: blur(80px);
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 40px;
    }

    .accent-text {
        font-size: 48px;
        display: block;
    }

    .pre-heading {
        font-size: 14px;
    }

    .subheading {
        font-size: 17px;
    }

    .cta-group {
        flex-direction: column;
        gap: 13px;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        padding: 14px 24px;
    }

    .visual-side {
        padding: 16px;
    }

    .visual-cluster-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        max-width: 400px;
        gap: 13px;
    }

    .dashboard {
        max-height: 180px;
    }

    .mobile {
        max-height: 120px;
    }

    .product {
        max-height: 120px;
    }

    .glow-top-left,
    .glow-bottom-right {
        width: 200px;
        height: 200px;
        filter: blur(60px);
        opacity: 0.08;
    }
}

.hero-features {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.feature-badge span {
    font-size: 14px;
    font-weight: 500;
}

.primary-button span,
.secondary-button span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}


/* ============================================= */
/* 6. ABOUT US SECTION (New Section)             */
/* ============================================= */

.about-us-section {
    background-color: var(--color-navy);
    /* Dark background */
    padding: 100px 0;
    /* Vertical padding */
    color: var(--color-white);
    /* Default text color for dark section */
    overflow: hidden;
    /* For animations */
}

.about-content-wrapper {
    max-width: 1400px;
    /* Aligns with header and hero */
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 100px;
    /* Large gap for visual separation */
    padding: 0 40px;
    /* Horizontal padding */
}

.about-image-side {
    flex: 1;
    position: relative;
    padding: 20px;
    /* Inner padding to offset rounded image */
}

.about-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    /* Rounded corners as per image */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    /* Soft shadow */
    display: block;
    /* Remove extra space below image */
}

.image-overlay-card {
    position: absolute;
    bottom: 50px;
    /* Position above bottom edge of main image */
    left: 20px;
    background-color: rgba(255, 255, 255, 0.15);
    /* Semi-transparent white */
    backdrop-filter: blur(10px);
    /* Glassmorphism effect */
    border-radius: 15px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Subtle border */
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
}

.overlay-icon {
    font-size: 20px;
    line-height: 1;
}

.about-text-side {
    flex: 1;
    max-width: 50%;
}

/* Styles for the new Subheading */
.about-subheading {
    font-family: var(--font-body);
    font-size: 1.15rem;
    /* Slightly larger, modern subheading */
    color: var(--color-light-gray);
    /* Subheading color */
    max-width: 600px;
    margin-top: 15px;
    /* Space below the H2 */
    line-height: 1.6;
}

.about-subheading strong {
    color: var(--color-body);
    /* Darker purple for emphasis */
    font-weight: 600;
}

/* New Style for the Cursive Highlight within the H2 */
.highlight-cursive {
    font-family: var(--font-accent);
    /* 'Great Vibes' */
    font-size: 1.3em;
    /* Slightly larger than surrounding text */
    color: var(--color-highlight);
    /* Orange highlight color */
    display: inline-block;
    line-height: 0.8;
    transform: translateY(5px);
    /* Fine-tune vertical alignment */
}

/* Existing highlight style (assuming it's used for the navy text with an underline effect) */
.highlight-underline {
    color: var(--color-light-gray);
    /* Navy text color */
}

/* Ensure the main heading is large and bold */
.about-heading {
    font-family: var(--font-heading);
    font-size: 3rem;
    /* Example size */
    font-weight: 800;
    color: var(--color-light-gray);
    margin-bottom: 20px;
    /* Default color for un-highlighted text */
}

/* Responsive Adjustments (Example) */
@media (max-width: 768px) {
    .about-heading {
        font-size: 2.2rem;
    }

    .highlight-cursive {
        font-size: 1.1em;
        transform: translateY(2px);
    }
}

.about-description {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    /* Lighter white for body text */
    margin-bottom: 40px;
}

.about-description strong {
    color: var(--color-white);
    font-weight: 600;
}

.about-cta {
    display: inline-block;
    /* Make button behave like a block for padding/margin */
    margin-bottom: 50px;
    padding: 15px 30px;
    /* Adjust button size */
    font-size: 16px;
    border-radius: 8px;
    /* Uses primary-button styles from global definitions */
}

/* Adjust primary button colors for dark section if needed */
.about-text-side .primary-button {
    background-color: var(--color-highlight);
    border: none;
    color: var(--color-white);
}

.about-text-side .primary-button:hover {
    background-color: #e65a25;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}


.feature-cards-container {
    display: flex;
    gap: 30px;
    /* Spacing between cards */
    margin-top: 30px;
}

.feature-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.08);
    /* Dark card background */
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;

    /* 3D Animation on hover */
    perspective: 1000px;
    /* Needed for 3D transforms */
    transform-style: preserve-3d;
}

.feature-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    /* Lift and subtle 3D rotation */
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.card-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-highlight);
    /* Highlight icon background */
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.card-icon svg {
    width: 24px;
    height: 24px;
}


.card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 22px;
    color: var(--color-white);
    margin-bottom: 10px;
}

.card-description {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================= */
/* 7. RESPONSIVE MEDIA QUERIES (About Us)        */
/* ============================================= */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {

    /* Header and Hero adjustments as previously defined */
    .header-content {
        padding: 12px 20px;
    }

    #hero-banner {
        padding-top: 80px;
    }

    .hero-content {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
        text-align: center;
    }

    .text-side {
        max-width: 100%;
    }

    h1 {
        font-size: 50px;
    }

    .accent-text {
        font-size: 55px;
        display: inline;
    }

    .subheading {
        font-size: 19px;
        margin-bottom: 30px;
    }

    .cta-group {
        justify-content: center;
    }

    .visual-cluster-grid {
        max-width: 600px;
        gap: 10px;
    }

    .dashboard {
        max-height: 200px;
    }

    .mobile,
    .product {
        max-height: 150px;
    }

    .glow-top-left,
    .glow-bottom-right {
        width: 350px;
        height: 350px;
        filter: blur(80px);
    }

    /* About Us Section specific */
    .about-content-wrapper {
        flex-direction: column;
        /* Stack image and text */
        gap: 60px;
        padding: 0 20px;
    }

    .about-image-side {
        width: 100%;
        padding: 0;
    }

    .about-main-image {
        max-width: 80%;
        /* Shrink image slightly */
        margin: 0 auto;
    }

    .image-overlay-card {
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        /* Center overlay card */
    }

    .about-text-side {
        max-width: 100%;
        text-align: center;
    }

    .about-heading {
        font-size: 40px;
    }

    .highlight-underline {
        padding-bottom: 3px;
    }

    .highlight-underline::after {
        height: 3px;
        left: 50%;
        /* Center underline */
        transform: translateX(-50%);
        width: 80%;
        /* Shorter underline */
    }

    .about-cta {
        margin-bottom: 40px;
    }

    .feature-cards-container {
        flex-direction: column;
        /* Stack feature cards */
        gap: 20px;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {

    /* Header and Hero adjustments as previously defined */
    .header-content {
        padding: 8px 10px;
    }

    h1 {
        font-size: 40px;
    }

    .accent-text {
        font-size: 45px;
        display: block;
    }

    .subheading {
        font-size: 18px;
    }

    .cta-group {
        flex-direction: column;
        gap: 8px;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        padding: 15px 20px;
    }

    .visual-cluster-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        max-width: 400px;
    }

    .dashboard {
        max-height: 180px;
    }

    .mobile,
    .product {
        max-height: 120px;
    }

    .glow-top-left,
    .glow-bottom-right {
        width: 200px;
        height: 200px;
        filter: blur(60px);
        opacity: 0.08;
    }


    /* About Us Section specific */
    .about-us-section {
        padding: 80px 0;
    }

    .about-content-wrapper {
        gap: 40px;
        padding: 0 15px;
    }

    .about-main-image {
        border-radius: 15px;
        max-width: 100%;
    }

    .image-overlay-card {
        bottom: 20px;
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 12px;
        gap: 8px;
    }

    .overlay-icon {
        font-size: 18px;
    }

    .about-heading {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .about-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .about-cta {
        margin-bottom: 30px;
    }

    .feature-cards-container {
        gap: 15px;
    }

    .feature-card {
        padding: 25px;
        border-radius: 12px;
    }

    .card-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }

    .card-icon svg {
        width: 20px;
        height: 20px;
    }

    .card-title {
        font-size: 20px;
    }

    .card-description {
        font-size: 14px;
    }
}


/* ============================================= */
/* 2. SERVICES SECTION (White BG + Dark Glassmorphism Grid) */
/* ============================================= */

.services-section-new {
    background-color: var(--color-white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}


.services-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* --- HEADING STYLES (Matching New Image) --- */
.section-top-label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: #08103E;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.services-new-main-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 50px;
    line-height: 1.1;
    color: #08103E;
    margin-bottom: 20px;
    text-align: center;
    text-transform: none;
    letter-spacing: normal;
}

/* Cursive Highlight Style */
.highlight-elegant {
    font-family: var(--font-accent);
    font-size: 50px;
    color: var(--color-highlight);
    display: inline-block;
    line-height: 0.8;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 700;
    transform: translateY(5px);
}

/* --- GRID LAYOUT (3 then 2) --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    perspective: 1000px;
}

/* --- CARD STYLES (Dark Glassmorphism with 3D and Blur) --- */
.service-grid-card {
    background: rgba(8, 16, 62, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid var(--color-dark-border);
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    position: relative;
    overflow: hidden;
    color: var(--color-card-text);
    z-index: 1;
    transform-style: preserve-3d;
    perspective: 1000px;
    /* Removed card hover transition */
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.service-grid-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(8, 16, 62, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-grid-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    transform: translateZ(10px);
}

/* --- REMOVED HOVER EFFECTS FOR THE CARD ITSELF --- */
/* .service-grid-card:hover::before,
.service-grid-card:hover::after {
    opacity: 1;
} */

/* .service-grid-card:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(2deg) scale(1.02);
    border-color: var(--color-highlight);
} */

/* --- CARD CONTENT STYLES --- */
.card-icon-new {
    width: 70px;
    height: 70px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 20px 0;
    font-size: 32px;
    color: var(--color-highlight);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
    box-shadow: 0 0 10px rgba(217, 84, 180, 0.4);
}

.card-icon-new::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--color-highlight), transparent);
    border-radius: 17px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    transform: translateZ(-1px);
}

/* --- REMOVED HOVER EFFECTS FOR ICON --- */
/* .service-grid-card:hover .card-icon-new {
    transform: translateY(-5px) translateZ(20px) rotateY(10deg);
    background: rgba(255, 107, 53, 0.15);
} */

/* .service-grid-card:hover .card-icon-new::before {
    opacity: 1;
} */

.card-title-new {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 22px;
    color: var(--color-white);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
    /* Kept transition for general responsiveness, but removed hover changes */
    transition: all 0.4s ease;
}

/* --- REMOVED HOVER EFFECTS FOR TITLE --- */
/* .service-grid-card:hover .card-title-new {
    color: var(--color-highlight);
    transform: translateZ(15px);
    text-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
} */

.card-description-new {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-dark-text-light);
    margin-bottom: 25px;
    min-height: 90px;
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
    /* Kept transition for general responsiveness, but removed hover changes */
    transition: all 0.4s ease 0.1s;
}

/* --- REMOVED HOVER EFFECTS FOR DESCRIPTION --- */
/* .service-grid-card:hover .card-description-new {
    color: var(--color-white);
    transform: translateZ(10px);
} */

.learn-more-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    color: var(--color-highlight);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    z-index: 2;
    display: inline-block;
    transform-style: preserve-3d;
}

.learn-more-link::after {
    content: '→';
    font-size: 18px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

/* --- REMOVED HOVER EFFECTS FOR LINK --- */
/* .learn-more-link:hover {
    color: var(--color-white);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    transform: translateZ(5px);
}

.learn-more-link:hover::after {
    transform: translateX(5px) translateZ(5px);
} */
/* ============================================= */
/* 3. RESPONSIVE MEDIA QUERIES */
/* ============================================= */

/* Tablet (max-width: 1200px) - Adjust grid to 2 columns */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(280px, 1fr));
        max-width: 800px;
        gap: 20px;
    }

    .services-new-main-heading {
        font-size: 48px;
    }

    .highlight-elegant {
        font-size: 48px;
        transform: translateY(8px);
    }
}

/* Mobile (max-width: 767px) - Single Column */
@media (max-width: 767px) {
    .services-section-new {
        padding: 60px 0;
    }

    .services-content-wrapper {
        padding: 0 15px;
    }

    .services-new-main-heading {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .highlight-elegant {
        font-size: 32px;
        display: block;
        transform: translateY(0);
        line-height: 1.2;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        gap: 15px;
    }

    .service-grid-card {
        padding: 20px;
        text-align: center;
    }

    .service-grid-card:hover {
        transform: translateY(-5px) rotateX(1deg) rotateY(1deg) scale(1.01);
    }

    .card-icon-new {
        margin: 0 auto 15px auto;
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .service-grid-card:hover .card-icon-new {
        transform: translateY(-3px) translateZ(15px) rotateY(5deg);
    }

    .card-description-new {
        min-height: auto;
    }

    .bg-sphere {
        display: none;
    }
}

/* Ensure icons display properly */
.card-icon-new i {
    font-size: 2rem;
}

/* --- Testimonial Section Styles (Dark Theme) --- */
.testimonial-section-dark {
    /* Use Navy as the primary background for this distinct section */
    background-color: var(--color-navy);
    padding: var(--spacing-lg) 0;
    color: var(--color-white);
    /* Creative gradient background for visual interest */
    background-image: radial-gradient(circle at 10% 80%, rgba(75, 75, 140, 0.1), transparent),
        radial-gradient(circle at 90% 20%, rgba(255, 107, 53, 0.1), transparent);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Header/Title Styles */
.testimonial-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.testimonial-heading-vibrant {
    font-family: var(--font-heading);
    font-size: 50px;
    font-weight: 700;
    /* Gradient text color to match the image's vibrant title */
    background: var(--color-highlight);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 2px;
}

.testimonial-subheading-light {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-light-gray);
    opacity: 0.8;
}

/* Slider Layout */
.testimonial-slider-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.5fr;
    /* Visual area smaller than content */
    gap: var(--spacing-lg);
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Left Visual Area */
.testimonial-left-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    /* Fixed height for visual consistency */
}

.main-avatar-container {
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Creative border glow effect */
    border: 3px solid var(--color-subheading);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.main-reviewer-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
    /* Transition for slider change */
}

/* Bubble Avatars (Decorative) */
.bubble-avatar {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-white);
    animation: floatBubble 10s infinite alternate ease-in-out;
}

.bubble-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Positioning the Bubbles Creatively */
.bubble-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.bubble-2 {
    top: 60%;
    left: -20%;
    width: 40px;
    height: 40px;
    animation-delay: 2s;
}

.bubble-3 {
    top: -10%;
    right: -5%;
    width: 60px;
    height: 60px;
    animation-delay: 4s;
}

.bubble-4 {
    bottom: 10%;
    right: -15%;
    animation-delay: 6s;
}

.bubble-5 {
    bottom: -10%;
    left: 30%;
    width: 45px;
    height: 45px;
    animation-delay: 8s;
}

@keyframes floatBubble {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(10px, 10px) scale(0.95);
        opacity: 1;
    }
}


/* Right Content Area */
.testimonial-content-area {
    padding-left: var(--spacing-md);
}

.testimonial-text-slide {
    min-height: 250px;
    /* Ensure consistent height during slide transition */
    transition: opacity 0.5s ease-in-out;
}

.reviewer-name-vibrant {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-white);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    position: relative;
    padding-bottom: 5px;
}

.reviewer-name-vibrant::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--color-highlight);
}

.review-text-vibrant {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-light-gray);
    line-height: 1.8;
}

.review-text-vibrant strong {
    color: var(--color-highlight);
    font-weight: 600;
}

/* Slider Controls */
.slider-controls {
    margin: var(--spacing-md) 0;
    display: flex;
    gap: var(--spacing-sm);
}

.arrow-btn {
    /* Use a clear, slightly transparent white background */
    background: rgba(255, 255, 255, 0.15);
    /* Explicitly set the arrow icon color to White */
    color: var(--color-white);
    /* Added a larger font size to ensure the icon is visible */
    font-size: 1.5rem;

    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    /* Slightly wider button */
    height: 50px;
    /* Slightly taller button */
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;

    /* Ensure the icon is vertically and horizontally centered */
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow-btn:hover {
    background-color: var(--color-highlight);
    color: var(--color-navy);
    transform: scale(1.1);
    border-color: var(--color-highlight);
}

/* View All Button */
.btn-view-all {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(90deg, var(--color-highlight), #ff8c47);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: var(--spacing-sm);
}

.btn-view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .testimonial-slider-wrapper {
        grid-template-columns: 1fr;
        /* Stack on mobile */
        text-align: center;
    }

    .testimonial-left-visual {
        order: -1;
        /* Move visual to the top */
        height: 300px;
        /* margin-bottom: var(--spacing-md); */
    }

    .main-avatar-container {
        width: 200px;
        height: 200px;
    }

    /* Center text elements */
    .testimonial-content-area {
        padding-left: 0;
    }

    .reviewer-name-vibrant::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .slider-controls {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .testimonial-heading-vibrant {
        font-size: 2.5rem;
    }

    .bubble-avatar {
        display: none;
        /* Hide bubbles on smallest screens for clarity */
    }

    .review-text-vibrant {
        line-height: 1.6;
    }
}

/* Why choose us css */
/* --- Why Clients Trust Us Section Styles (trust-section-new) --- */

/* Utility Classes (Ensure these are defined once globally) */
.section-padded {
    padding: var(--spacing-lg) 0;
}

.container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Section Styling */
.trust-section-new {
    background-color: var(--color-light-gray);
    /* Light gray background */
    padding: var(--spacing-lg) 0;
}

/* Header Styles */
.trust-header-new {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

.trust-heading {
    font-family: var(--font-heading);
    font-size: 50px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: var(--spacing-sm);
}

.trust-heading .accent-text {
    color: var(--color-highlight);
    /* Accent color for the word "Software" */
}

.trust-subheading {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-subheading);
    line-height: 1.6;
}

/* Grid Layout */
.trust-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

/* Left Visual Card */
.trust-visual-card {
    background-color: var(--color-white);
    padding: var(--spacing-md);
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    /* Initial state for slide-up animation (defined in JS section) */
    opacity: 1;
    transform: translateY(20px);
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.trust-visual-card:hover {
    transform: translateY(-5px);
    /* Creative hover lift */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.trust-visual-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.trust-main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

/* Right Value Propositions */
.trust-value-propositions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.value-card {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    background-color: var(--color-white);
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;

    /* Initial state for fade-in animation (defined in JS section) */
    opacity: 1;
}

.value-card:hover {
    background-color: color-mix(in srgb, var(--color-light-gray), var(--color-highlight) 3%);
    /* Subtle background change */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.value-card.animated {
    opacity: 1;
}

.icon-bubble {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    /* Soft pastel orange background */
    background-color: color-mix(in srgb, var(--color-light-gray), var(--color-highlight) 10%);
    color: var(--color-highlight);
    font-size: 1.5rem;
    flex-shrink: 0;
    /* Prevents shrinking on smaller screens */
}

.value-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 5px;
}

.value-description {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-body);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .trust-grid-layout {
        grid-template-columns: 1fr;
        /* Stack vertically */
    }

    .trust-visual-card {
        order: 2;
        /* Visual below the text on mobile */
    }

    .trust-value-propositions {
        order: 1;
    }

    .trust-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .value-card {
        flex-direction: column;
        text-align: center;
    }

    .icon-bubble {
        margin: 0 auto 10px;
    }
}

/* --- Frequently Asked Questions Section --- */
.faq-section-new {
    background-color: var(--color-light-gray);
    /* Light background for contrast */
    padding: var(--spacing-lg) 0;
}

/* Header */
.faq-header-new {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-md);
}

.faq-heading {
    font-family: var(--font-heading);
    font-size: 50px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: var(--spacing-sm);
}

.faq-subheading {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-subheading);
    line-height: 1.6;
}

/* Accordion Container */
.faq-accordion-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Individual FAQ Item */
.faq-item {
    background-color: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 12px;
    /* Space between cards */
    overflow: hidden;
    /* Important for the answer content transition */
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.faq-item.active {
    border-color: var(--color-highlight);
    /* Highlight active item */
}

/* Question Button */
.faq-question-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: var(--spacing-md);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-navy);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

/* Toggle Icon */
.faq-toggle-icon {
    color: var(--color-highlight);
    font-size: 1rem;
    transition: transform 0.3s ease;
    margin-left: 15px;
}

.faq-question-btn[aria-expanded="true"] .faq-toggle-icon {
    transform: rotate(180deg);
}

/* Answer Content */
.faq-answer-content {
    /* Initial state for accordion animation */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 var(--spacing-md);
}

.faq-answer-content p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-body);
    padding-bottom: var(--spacing-md);
    line-height: 1.6;
}

/* --- Creative Touch: Highlight the active question text --- */
.faq-item.active .faq-question-btn {
    color: var(--color-highlight);
}

/* Creative Touch: Highlight circle (similar to the image) for the active icon */
.faq-item.active .faq-toggle-icon {
    background-color: var(--color-highlight);
    color: var(--color-white);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* --- Responsive Adjustments --- */
@media (max-width: 600px) {
    .faq-heading {
        font-size: 2rem;
    }

    .faq-question-btn {
        font-size: 1rem;
        padding: var(--spacing-sm);
    }

    .faq-answer-content {
        padding: 0 var(--spacing-sm);
    }

    .faq-answer-content p {
        padding-bottom: var(--spacing-sm);
    }
}


/* --- WHO CAN USE OUR SOFTWARE Section Styles --- */
.user-section-bg-shape {
    background: linear-gradient(135deg, var(--color-navy) 0%, #0a154e 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    margin: 40px 0;
}

/* Add animated background elements */
.user-section-bg-shape::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.user-section-content-wrapper {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 30px;
    color: var(--color-white);
    position: relative;
    z-index: 2;
}

/* Header Styling */
.user-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.user-section-heading {
    font-family: var(--font-heading);
    font-size: 50px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

.user-section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--color-highlight);
    border-radius: 2px;
}

.user-section-subheading {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-light-gray);
    opacity: 0.9;
    line-height: 1.6;
    letter-spacing: 0.5px;
    font-weight: 500;
    margin-top: 25px;
}

/* Card Grid Layout */
.user-card-grid {
    /* UPDATED: Force 4 equal columns on larger screens */
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px;
}

/* Individual Card Styling */
.user-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--color-navy);
    padding: 40px 25px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.1),
        0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.user-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.7s ease;
}

.user-card:hover::before {
    left: 100%;
}

.user-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 10px 30px rgba(255, 107, 53, 0.2);
}

/* Accent Card Styling */
.user-card-accent {
    background: linear-gradient(145deg, var(--color-highlight) 0%, #e55a2b 100%);
    color: var(--color-white);
    box-shadow:
        0 15px 45px rgba(255, 107, 53, 0.3),
        0 5px 20px rgba(255, 107, 53, 0.2);
}

.user-card-accent:hover {
    box-shadow:
        0 30px 70px rgba(255, 107, 53, 0.4),
        0 15px 40px rgba(255, 107, 53, 0.3);
}

/* Font Awesome Icon Styling */
.user-card-icon {
    background: linear-gradient(135deg, var(--color-navy) 0%, #1a237e 100%);
    color: var(--color-white);
    width: 90px;
    height: 90px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    box-shadow: 0 12px 30px rgba(8, 16, 62, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.user-card-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.user-card:hover .user-card-icon::before {
    transform: translateX(100%);
}

.user-card-icon i {
    font-size: 2.2rem;
    transition: transform 0.3s ease;
}

.user-card:hover .user-card-icon {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 18px 40px rgba(8, 16, 62, 0.4);
}

.user-card:hover .user-card-icon i {
    transform: scale(1.1);
}

/* Accent Card Icon Styling */
.user-card-accent .user-card-icon {
    background: var(--color-white);
    color: var(--color-highlight);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
}

.user-card-accent:hover .user-card-icon {
    background: var(--color-navy);
    color: var(--color-white);
    box-shadow: 0 18px 40px rgba(8, 16, 62, 0.4);
}

/* Title and Description */
.user-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: inherit;
    line-height: 1.3;
}

.user-card-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    color: inherit;
    margin: 0;
}

/* Animation States */
.user-card {
    opacity: 1;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.user-card.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .user-section-heading {
        font-size: 2.2rem;
    }

    .user-card-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .user-card-icon {
        width: 80px;
        height: 80px;
    }

    .user-card-icon i {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .user-section-bg-shape {
        padding: 60px 0;
        border-radius: 30px;
        margin: 30px 0;
    }

    .user-section-heading {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .user-section-subheading {
        font-size: 1.1rem;
    }

    .user-card {
        padding: 35px 20px;
    }

    .user-card-icon {
        width: 75px;
        height: 75px;
    }

    .user-card-icon i {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .user-section-bg-shape {
        border-radius: 20px;
        padding: 50px 0;
    }

    .user-section-heading {
        font-size: 1.6rem;
    }

    .user-card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .user-card {
        padding: 30px 20px;
    }

    .user-card-icon {
        width: 70px;
        height: 70px;
    }

    .user-card-icon i {
        font-size: 1.6rem;
    }
}




/* --- Global Theme Variables (Ensure these are present) --- */
/* :root {
    --color-navy: #08103E;
    --color-highlight: #FF6B35;
    --color-white: #FFFFFF;
    --color-text-body: #4B3F72;
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'IBM Plex Sans', sans-serif;
    --font-accent: 'Great Vibes', cursive;
} */
:root {
    --spacing-lg: 100px;
    --spacing-md: 40px;
    --spacing-sm: 20px;
}

/* --- Product Showcase Section Styles --- */
.product-showcase-section {
    background-color: var(--color-white);
    padding: var(--spacing-lg) 0;
    text-align: center;
    overflow: hidden;
    position: relative;
    font-family: var(--font-body);
    color: var(--color-navy);
}

/* Section Header */
.product-showcase-header {
    margin-bottom: var(--spacing-lg);
    opacity: 1;
    /* Initial state visibility */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.product-showcase-category {
    font-size: 14px;
    color: var(--color-text-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.product-showcase-title {
    font-family: var(--font-heading);
    font-size: 50px;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.2;
}

.accent-cursive-text {
    font-family: var(--font-accent);
    color: var(--color-highlight);
    font-size: 50px;
    font-weight: 400;
    line-height: 1;
    display: inline-block;
    padding: 0 5px;
}

/* Carousel Area Wrapper */
.carousel-area-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: var(--spacing-md);
}

/* Carousel Track - The container for all slides */
.carousel-track {
    display: block;
    justify-content: center;
    align-items: center;
    height: 600px;
    perspective: 1500px;
    position: relative;
    margin-bottom: var(--spacing-md);
    padding: 0 5%;
}

/* Individual Carousel Item (Slide) */
.carousel-item {
    position: absolute;
    width: 60%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.8s ease-out, z-index 0.01s;
    pointer-events: none;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Carousel Item States (Managed by JavaScript) */

/* Active (Center) Item */
.carousel-item.is-active {
    left: 50%;
    transform: translateX(-50%) scale(1) rotateY(0deg);
    opacity: 1;
    z-index: 10;
    pointer-events: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

/* Left Angled Item (Side view) */
.carousel-item.is-left {
    left: 15%;
    transform: translateX(-50%) scale(0.75) rotateY(20deg) translateX(-80px);
    opacity: 0.5;
    z-index: 5;
    width: 45%;
    pointer-events: auto;
}

/* Right Angled Item (Side view) */
.carousel-item.is-right {
    left: 85%;
    transform: translateX(-50%) scale(0.75) rotateY(-20deg) translateX(80px);
    opacity: 0.5;
    z-index: 5;
    width: 45%;
    pointer-events: auto;
}

/* Hidden Items (Off-stage) */
.carousel-item.is-hidden {
    opacity: 1;
    z-index: 1;
    pointer-events: none;
    transform: translateX(-50%) scale(0.6) rotateY(0deg);
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.8s ease-out, z-index 0.8s;
}


/* Carousel Controls (Arrows and Text) */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-sm);
    opacity: 1;
    /* Initial state visibility */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.carousel-nav-arrow {
    background-color: var(--color-navy);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.carousel-nav-arrow:hover {
    background-color: var(--color-highlight);
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.carousel-text-info {
    text-align: center;
    color: var(--color-navy);
}

.carousel-product-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.carousel-product-location {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-body);
}


/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .product-showcase-title {
        font-size: 2.2rem;
    }

    .carousel-track {
        height: 450px;
        padding: 0 2%;
    }

    .carousel-item.is-active {
        width: 70%;
    }

    .carousel-item.is-left,
    .carousel-item.is-right {
        width: 38%;
        transform: translateX(-50%) scale(0.7) rotateY(15deg) translateX(-50px);
    }

    .carousel-item.is-right {
        transform: translateX(-50%) scale(0.7) rotateY(-15deg) translateX(50px);
    }
}

@media (max-width: 768px) {
    .product-showcase-title {
        font-size: 1.8rem;
    }

    .carousel-track {
        height: 350px;
    }

    .carousel-item.is-active {
        width: 90%;
    }

    /* Hide side images on small screens */
    .carousel-item.is-left,
    .carousel-item.is-right {
        display: none;
    }
}

@media (max-width: 480px) {
    .product-showcase-title {
        font-size: 1.5rem;
    }

    .carousel-track {
        height: 250px;
    }

    .carousel-item.is-active {
        width: 95%;
    }

    .carousel-controls {
        /* flex-direction: column; */
        gap: var(--spacing-sm);
    }
}


/* --- Contact Section Styles --- */
/* --- Contact Section Styles --- */
.contact-section {
    /* Theme is light on the section wrapper */
    background-color: var(--color-white);
    padding: var(--spacing-lg) var(--spacing-md);
    font-family: var(--font-body);
    color: var(--color-navy);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.contact-card-wrapper {
    background-color: var(--color-light-gray);
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    width: 100%;
    overflow: hidden;
}

/* --- Content Area (Left Side) --- */
.contact-content-area {
    flex: 1;
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

/* Header & Description */
.contact-header {
    margin-bottom: var(--spacing-lg);
    /* REMOVED: opacity/transform for animation */
    width: 100%;
}

/* REMOVED: .contact-header.animated */

.contact-tag {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-white);
    color: var(--color-navy);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-tag i {
    margin-right: 8px;
    color: var(--color-highlight);
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
}

.accent-cursive-text {
    font-family: var(--font-accent);
    color: var(--color-highlight);
    font-size: 1em;
    font-weight: 400;
    line-height: 1;
    display: inline-block;
    padding: 0 5px;
}

.contact-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-body);
    max-width: 500px;
}

/* Creative Image Display (with 3D tilt) */
.contact-images {
    position: relative;
    width: 100%;
    height: 350px;
    margin-top: var(--spacing-md);
    /* REMOVED: opacity/transform/transition for animation */
}

/* REMOVED: .contact-images.animated */

.contact-image-card {
    position: absolute;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-main {
    width: 75%;
    height: 100%;
    left: 0;
    top: 0;
    transform: rotateY(10deg) rotateX(5deg);
    transform-origin: bottom left;
    z-index: 2;
}

.card-overlay {
    width: 55%;
    height: 70%;
    right: 0;
    bottom: 0;
    transform: rotateY(-15deg) rotateX(-5deg);
    transform-origin: top right;
    z-index: 3;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* --- Form Area (Right Side) with Dark Glassmorphism --- */
.contact-form-area {
    flex: 1;
    padding: var(--spacing-md) var(--spacing-sm);
    background: var(--color-navy);
    /* Solid Navy background for a cleaner dark look */
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    /* REMOVED: opacity/transform/transition for animation */
}

/* REMOVED: .contact-form-area.animated */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    position: relative;
    width: 100%;
}

/* Inputs, Textarea, and Select Fields */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Placeholder Text */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

/* Focus State */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--color-highlight);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
}

.phone-group {
    display: flex;
    gap: 10px;
}

.phone-group select {
    flex-basis: 90px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M287%2C114.7L154.7%2C247.1L22.3%2C114.7c-4.4-4.4-4.4-11.4,0-15.8c4.4-4.4,11.4-4.4,15.8,0l116.6,116.6L271.2,98.9c4.4-4.4,11.4-4.4,15.8,0C291.4,103.3,291.4,110.3,287,114.7z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 35px;
}

.phone-group input {
    flex: 1;
}

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

/* Submit Button */
.send-message-btn {
    background-color: var(--color-highlight);
    color: var(--color-white);
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    align-self: flex-start;
    margin-top: var(--spacing-sm);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.send-message-btn:hover {
    background-color: #ff855c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.5);
}

.send-message-btn:active {
    transform: translateY(0);
}

/* --- CSS for Best Time to Call Dropdown --- */

.form-select-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    text-align: left;
}

.select-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 5px;
}

.form-select {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" fill="%23FFFFFF" viewBox="0 0 24 24"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-select:focus {
    border-color: var(--color-highlight);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.3);
}

.form-select option[value=""] {
    color: rgba(255, 255, 255, 0.5);
}

.form-select option {
    font-family: var(--font-body);
    color: var(--color-navy);
    background-color: var(--color-white);
    padding: 10px;
}

/* --- Responsive Adjustments (Consolidated and Refined) --- */

@media (max-width: 1200px) {
    .contact-card-wrapper {
        max-width: 1000px;
    }

    .contact-content-area {
        padding: var(--spacing-md);
    }

    .contact-title {
        font-size: 2.5rem;
    }

    .contact-header {
        margin-bottom: var(--spacing-md);
    }
}

@media (max-width: 992px) {
    .contact-card-wrapper {
        flex-direction: column;
        /* Stack content and form vertically */
        max-width: 700px;
    }

    .contact-form-area {
        border-radius: 30px 30px 30px 30px;
        /* Adjust border radius when stacked */
        border-top: none;
    }

    .contact-content-area {
        padding-bottom: var(--spacing-sm);
        align-items: center;
        /* Center content when stacked */
        text-align: center;
    }

    .contact-description {
        max-width: 600px;
    }

    .contact-images {
        height: 300px;
        margin-bottom: var(--spacing-md);
    }

    /* Remove 3D tilt on smaller screens and ensure images stack correctly */
    .card-main, .card-overlay {
        transform: none;
        position: relative;
        width: 100%;
        height: 100%;
        left: auto;
        top: auto;
        right: auto;
        bottom: auto;
    }

    .card-overlay {
        display: none;
        /* Hide overlay image to simplify */
    }

    .send-message-btn {
        align-self: center;
        /* Center button when form is stacked */
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: var(--spacing-md) var(--spacing-sm);
        min-height: auto;
    }

    .contact-card-wrapper {
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .contact-content-area,
    .contact-form-area {
        padding: var(--spacing-sm) 20px;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-tag {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .contact-description {
        font-size: 0.9rem;
    }

    .contact-images {
        height: 250px;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .send-message-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* Ensure form elements and phone group stay responsive on very small screens */
@media (max-width: 480px) {
    .contact-form-area {
        padding: 20px 15px;
    }

    .phone-group {
        flex-direction: row;
        gap: 8px;
    }

    .phone-group select {
        flex-basis: 80px;
        min-width: 80px;
        padding-left: 10px;
    }

    .phone-group input {
        flex: 1;
    }

    /* Ensure all text inputs and select match the reduced padding */
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form textarea,
    .contact-form select {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .contact-form select {
        background-position: right 10px center;
    }

    .form-select {
        background-position: right 10px center;
    }
}

/* --- Main Footer Section Styles --- */
.main-footer {
    /* Use Navy background and subtle 3D tilt for creative look */
    background-color: var(--color-navy);
    padding: var(--spacing-md) 0 0 0;
    /* Increased bottom padding for better visual weight */
    font-family: var(--font-body);
    color: var(--color-dark-text-light);
    line-height: 1.7;
    /* Enhanced line height for readability */
    overflow: hidden;
    /* Apply subtle 3D perspective to the container */
    transform-style: preserve-3d;
    perspective: 1000px;
    transform: rotateX(0.5deg) translateY(0px);
    /* Very slight, always-on upward tilt */
    transition: transform 0.5s ease-out;
    /* Smooth transition */
}

.footer-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1.5fr 3fr;
    gap: 60px;
    /* Increased gap for better spacing */
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--color-dark-border);
    margin-bottom: var(--spacing-sm);
    /* Increased margin bottom */
}

/* --- Footer Column General Styles (No unnecessary opacity/transforms) --- */
.footer-col {
    /* Ensure immediate visibility */
    opacity: 1;
    transform: none;
}


.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    /* Slightly larger headings */
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
    /* Better vertical link spacing */
}

.footer-col ul li a,
.footer-contact address p,
.footer-contact address a {
    color: var(--color-dark-text-light);
    text-decoration: none;
    font-size: 1rem;
    /* Slightly larger font size */
    font-style: normal;
    /* Ensure normal text mode */
    transition: color 0.3s ease;
}

.footer-col ul li a:hover,
.footer-contact address a:hover {
    color: var(--color-highlight);
    text-decoration: none;
}

/* --- Column 1: Logo & Description --- */
/* --- Logo Image Styling --- */
/* Target the image inside the logo link */
.footer-col .logo-icon {
    /* Ensure the image scales properly and has a defined size */
    width: 150px;
    /* Adjust size as needed for the full logo image */
    height: auto;
    /* Maintain aspect ratio */
    display: block;
    /* Ensures proper alignment */
    margin-bottom: 5px;
    /* Add slight space below the logo before description */
}

/* --- Social Icon Styling (Focus on the SVG/FontAwesome icons themselves) --- */
.social-icon {
    /* Existing styles maintained: background, size, 3D hover effects */
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--color-dark-text-light);
    font-size: 1.3rem;
    border: 1px solid var(--color-dark-border);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* --- Centering the Footer Bottom Content --- */
.footer-bottom {
    /* OVERRIDES previous justify-content: space-between; */
    display: flex;
    /* Center all items horizontally */
    justify-content: center;
    align-items: center;
    /* Stack them vertically if they can't fit side-by-side */
    flex-direction: column;

    font-size: 0.9rem;
    color: var(--color-dark-text-light);
    flex-wrap: wrap;
    /* Add padding back to the bottom section */
    padding: var(--spacing-sm) 0;
}

.footer-copyright {
    margin: 0 0 5px 0;
    /* Add small margin below copyright */
    text-align: center;
}

.footer-made-by {
    /* Ensure the made-by section is centered as well */
    justify-content: center;
    text-align: center;
    margin: 0;
}

/* --- Responsive Adjustments (Cleanup for the centered footer-bottom) --- */
@media (max-width: 768px) {
    .footer-bottom {
        /* This media query is now redundant but kept for cleanliness */
        flex-direction: column;
        text-align: center;
        gap: 5px;
        /* Reduced gap */
        padding-bottom: 20px;
    }
}

.footer-description {
    font-size: 1rem;
    color: var(--color-dark-text-light);
    margin-bottom: var(--spacing-md);
    max-width: 350px;
}

.footer-description strong {
    color: var(--color-white);
}

/* --- Updated Social Icon Styling for Centering --- */

.footer-social-links {
    display: flex;
    gap: 15px;
    margin-top: var(--spacing-sm);
}

.social-icon {
    /* Existing dimensions and background styles */
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--color-dark-text-light);
    border: 1px solid var(--color-dark-border);
    border-radius: 50%;
    /* Ensure it's perfectly round */

    /* ENFORCE ICON CENTERING USING FLEXBOX */
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */

    /* Icon styling and transition */
    font-size: 1.3rem;
    /* Controls the size of the icon inside */
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Creative "Floating" Effect for Social Icons (Kept from previous revisions) */
.social-icon:hover {
    background-color: var(--color-highlight);
    color: var(--color-white);
    transform: translateY(-4px);
    /* Lift significantly */
    /* Vibrant shadow for creative contrast */
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6), 0 0 10px rgba(255, 107, 53, 0.2);
}

/* --- Column 4: Contact Info --- */
.footer-contact address {
    font-style: normal;
}

.footer-contact address p {
    margin-bottom: 15px;
    /* Better contact spacing */
    font-style: normal;
}

.footer-contact address p strong {
    color: var(--color-white);
}


/* --- Footer Bottom Section (Copyright & Legal) --- */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 0 var(--spacing-sm);
    padding-top: var(--spacing-sm);  */
    /* Using consistent dark theme colors */
    font-size: 0.9rem;
    color: var(--color-dark-text-light);
    flex-wrap: wrap;
}

.footer-copyright {
    margin: 0;
}

.footer-made-by {
    display: flex;
    align-items: center;
    gap: 4px;
    /* Small gap between text elements */
    color: var(--color-dark-text-light);
}

.footer-made-by .heart-icon {
    /* Use a slight vertical lift and color adjustment for the heart icon */
    color: var(--color-highlight);
    transform: translateY(1px);
    display: inline-block;
}

.footer-made-by .asquarex-link {
    color: var(--color-highlight);
    /* Highlight the company name */
    text-decoration: none;
    font-weight: 600;
    /* Bold the link for emphasis */
    transition: color 0.3s ease;
}

.footer-made-by .asquarex-link:hover {
    color: var(--color-white);
    /* White hover for maximum contrast */
}

/* --- Responsive Adjustments for Bottom Section --- */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        /* Stack vertically on smaller screens */
        text-align: center;
        gap: 10px;
        /* Space between the stacked elements */
        padding-bottom: 20px;
    }
}

/* --- Responsive Adjustments (Optimized Spacing) --- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-md) 30px;
    }

    .footer-info {
        grid-column: span 2;
    }

    .footer-contact {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .main-footer {
        padding: var(--spacing-md) 0 40px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .footer-info {
        grid-column: span 1;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-social-links {
        justify-content: center;
        margin-bottom: var(--spacing-sm);
    }

    .footer-heading {
        margin-top: var(--spacing-sm);
        text-align: center;
        border-top: 1px solid var(--color-dark-border);
        padding-top: var(--spacing-sm);
    }

    .footer-col ul, .footer-contact address {
        text-align: center;
        margin-bottom: var(--spacing-sm);
    }

    .footer-contact {
        grid-column: span 1;
    }

    .footer-bottom {
        padding: 0 15px;
    }
}