/*========================================================
   A.M Metal Solutions - Global Stylesheet
   Version: 1.0
   Framework: Bootstrap 5 Customization
========================================================*/

/*--------------------------------------------------------------
# CSS Variables & Theme Colors
--------------------------------------------------------------*/
:root {
    /* Primary Color Palette */
    --primary-color: #0d47a1;
    /* Deep Corporate Blue */
    --primary-light: #5472d3;
    --primary-dark: #002171;

    /* Secondary/Accent Palette */
    --accent-color: #ff6d00;
    /* Vibrant Orange for Call to Actions */
    --accent-hover: #e65100;

    /* Typography & Backgrounds */
    --text-dark: #212529;
    /* Dark Gray */
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;

    /* Box Shadows & Transitions */
    --shadow-sm: 0 .125rem .25rem rgba(0, 0, 0, .075);
    --shadow-md: 0 .5rem 1rem rgba(0, 0, 0, .15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, .175);
    --hover-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    --transition-fast: all 0.3s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

    /* Fonts */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

/*--------------------------------------------------------------
# Global Resets & Defaults
--------------------------------------------------------------*/
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Custom Selection Color */
::selection {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

/*--------------------------------------------------------------
# Common Utilities & Utilities Classes
--------------------------------------------------------------*/
.section-padding {
    padding: 40px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 25px 0;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
    color: var(--primary-dark);
}

.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    bottom: 0;
    left: calc(50% - 30px);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 15px auto 0;
}

.bg-gray {
    background-color: var(--bg-light);
}

.premium-bg-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #eef2f7 100%);
    position: relative;
    overflow: hidden;
}

.premium-bg-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(13, 71, 161, 0.08) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    z-index: 0;
}

.premium-bg-light .container {
    position: relative;
    z-index: 1;
}

/* Primary Button Styling */
.btn-primary-custom {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 2px solid var(--primary-color);
    transition: var(--transition-smooth);
}

.btn-primary-custom:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Accent Button Styling */
.btn-accent-custom {
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    border: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 6px rgba(255, 109, 0, 0.3);
}

.btn-accent-custom:hover {
    background-color: var(--accent-hover);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 109, 0, 0.4);
}

/* Card Hover Effects - Enhanced for Visibility */
.hover-card-effect {
    transition: var(--transition-smooth);
    border: 1px solid rgba(13, 71, 161, 0.1);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hover-card-effect:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(13, 71, 161, 0.12);
    border-color: var(--primary-color);
}

.row.g-premium {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
}

@media (max-width: 768px) {
    .row.g-premium {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 1.5rem;
    }
}

/* Scroll Animation Element Classes Defaults */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/*--------------------------------------------------------------
# About Section Decorative Elements
--------------------------------------------------------------*/
.about-img-wrapper {
    position: relative;
    z-index: 1;
}

.about-img-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 90%;
    background: var(--primary-color);
    border-radius: 12px;
    z-index: -1;
    transform: translate(-20px, -20px);
    opacity: 0.1;
    border: 2px solid var(--primary-color);
}

.about-main-img {
    border-radius: 12px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/*--------------------------------------------------------------
# Counter / States Section
--------------------------------------------------------------*/
.counter-box {
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    border: 1px solid rgba(13, 71, 161, 0.05);
    height: 100%;
}

.counter-box:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 35px rgba(255, 109, 0, 0.15);
}

.counter-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
    display: block;
}

.counter-text {
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta-section {
    background: linear-gradient(rgba(0, 26, 77, 0.9), rgba(0, 26, 77, 0.9)), url('../images/tensile\ structure\ design.jpg') center/cover no-repeat;
    color: #fff;
    position: relative;
}

.cta-section h2 {
    color: #fff !important;
}

/*--------------------------------------------------------------
# Navbar Styles
--------------------------------------------------------------*/
.custom-navbar {
    padding: 15px 0;
    transition: var(--transition-smooth);
    background-color: var(--bg-white) !important;
    backdrop-filter: blur(10px);
}

.custom-navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md) !important;
    background-color: var(--bg-white) !important;
}

.custom-navbar .logo-text {
    color: var(--primary-color) !important;
}

.custom-navbar .nav-link {
    color: var(--primary-dark) !important;
}

.custom-navbar.scrolled .nav-link:hover,
.custom-navbar.scrolled .nav-link.active,
.custom-navbar:not(.scrolled) .nav-link:hover,
.custom-navbar:not(.scrolled) .nav-link.active {
    color: var(--accent-color) !important;
    font-weight: 700;
}


/*--------------------------------------------------------------
# Homepage Enquiry Form
--------------------------------------------------------------*/
.enquiry-form-container {
    border: 1px solid rgba(13, 71, 161, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12) !important;
    border-top: 5px solid var(--accent-color);
}

.enquiry-form-container h3 {
    color: var(--primary-dark);
}

.navbar-brand .logo-text {
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    line-height: 1;
}

/* Footer Styles Improved */
.footer-logo {
    height: 60px;
    /* Reduced from 80px */
    width: auto;
    max-width: 200px;
    object-fit: contain;
    margin-bottom: 12px;
}

#footer .logo-text {
    color: var(--white);
}

.navbar-brand .logo-img {
    height: 48px;
    /* Further reduced from 65px */
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .navbar-brand .logo-img {
        height: 38px;
    }

    .navbar-brand .logo-text {
        font-size: 1rem;
        font-family: 'Montserrat', sans-serif;
    }
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

#footer .logo-text {
    font-family: 'Montserrat', sans-serif;
}

.custom-navbar.scrolled .logo-img {
    height: 40px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px 15px !important;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    transition: var(--transition-fast);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Underline Animation for Nav Links */
@media (min-width: 992px) {
    .navbar-nav .nav-item:not(:last-child) .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background-color: var(--accent-color);
        transition: var(--transition-smooth);
    }

    .navbar-nav .nav-item:not(:last-child) .nav-link:hover::after,
    .navbar-nav .nav-item:not(:last-child) .nav-link.active::after {
        width: 80%;
    }
}

/* Dropdown Menu Styles */
.dropdown-menu {
    border-radius: 8px;
    padding: 10px 0;
    animation: fadeIn 0.3s ease-in-out;
}

.dropdown-item {
    padding: 8px 20px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background-color: rgba(13, 71, 161, 0.05);
    color: var(--primary-color);
    padding-left: 25px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    height: 70vh;
    min-height: 500px;
    background: url('../images/website\ background\ .jpg') center center/cover no-repeat;
    position: relative;
    padding-top: 40px;
    /* Accounts for navbar */
    overflow: hidden;
}

/* Fallback gradient if image is not present */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(0, 33, 113, 0.6) 0%, rgba(13, 71, 161, 0.2) 100%);
    z-index: 0;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 15, 45, 0.35);
    /* Further reduced for clarity */
    z-index: 1;
}

.relative {
    position: relative;
}

.z-index-1 {
    z-index: 2;
}

/* Places content above overlay */

.hero .hero-content {
    animation: slideInLeft 1s ease-out;
}

/* Mobile Adjustments for Hero */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 450px;
        background-position: center bottom;
        /* Often captures more of the structure on vertical screens */
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero .hero-content .btn {
        width: 100%;
        margin-bottom: 5px;
    }
}

.hero .hero-badge {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    margin-top: 35px !important;
    /* Move line away from buttons */
}

@media (max-width: 768px) {
    .hero-stats {
        margin-top: 25px !important;
    }

    .hero-stats h3 {
        font-size: 1.4rem !important;
    }

    .hero-stats p {
        font-size: 0.7rem !important;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        margin-top: 20px !important;
    }

    .hero-stats h3 {
        font-size: 1.2rem !important;
    }

    .hero-stats p {
        font-size: 0.6rem !important;
        letter-spacing: -0.2px;
    }
}

.text-accent {
    color: var(--accent-color);
}

.bg-accent {
    background-color: var(--accent-color);
}

/* Mouse Scroll Animation */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator:hover {
    color: var(--bg-white);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--bg-white);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
#about-image-column .position-absolute {
    /* Responsive adjustment for the badge on the image */
    right: -20px !important;
    bottom: -20px !important;
}

@media (max-width: 991px) {
    #about-image-column .position-absolute {
        right: 10px !important;
        bottom: 10px !important;
        transform: scale(0.85);
        transform-origin: bottom right;
    }
}

#about p.lead {
    font-size: 1.1rem;
    line-height: 1.8;
}

#about ul li h5 {
    color: var(--primary-dark);
}

/*--------------------------------------------------------------
# Products & Services Section
--------------------------------------------------------------*/
.product-card {
    border: none;
    border-radius: 12px;
}

.product-img {
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img {
    transform: scale(1.08);
    /* Slight zoom on hover */
}

.product-card .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: absolute;
    top: -30px;
    right: 30px;
}

.product-details {
    z-index: 2;
    border-top: 3px solid var(--primary-color);
}

.product-card:nth-child(2) .product-details {
    border-top-color: var(--accent-color);
}

.product-link {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 3px;
}

.product-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
}

.product-link.text-accent::after {
    background-color: var(--accent-color);
}

.product-card:hover .product-link::after {
    width: 100%;
}

/*--------------------------------------------------------------
# Industries Section
--------------------------------------------------------------*/
.bg-dark {
    background-color: var(--primary-dark) !important;
}

.premium-cta {
    background: linear-gradient(135deg, #002171 0%, #0d47a1 100%);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.premium-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    z-index: 0;
}

.premium-cta .container {
    position: relative;
    z-index: 1;
}

.industry-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.industry-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.industry-card:hover::before {
    transform: scaleX(1);
}

.industry-icon i {
    transition: var(--transition-smooth);
    color: var(--accent-color) !important;
}

.industry-card:hover .industry-icon i {
    transform: scale(1.15) rotate(-5deg);
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonial-card {
    transition: var(--transition-smooth);
    border-top: 4px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md) !important;
    border-top-color: var(--primary-color);
}

.testimonial-card:nth-child(2):hover {
    border-top-color: var(--accent-color);
}

.testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.testimonial-card .fa-quote-left {
    z-index: 0;
}

/*--------------------------------------------------------------
# Enquiry Form Section
--------------------------------------------------------------*/
#enquiry {
    z-index: 1;
}

/* Fix for Global Floating Labels Overlap */
.form-floating>.form-control {
    padding-top: 1.625rem !important;
    padding-bottom: 0.625rem !important;
}

.form-floating>.form-select {
    padding-top: 1.625rem !important;
    padding-bottom: 0.625rem !important;
}

.form-floating>label {
    padding: 1rem 0.75rem !important;
    color: var(--text-muted);
}

/* Specific Focus Effects for Project Forms */
.form-control:focus,
.form-select:focus {
    background-color: var(--bg-white) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.25rem rgba(13, 71, 161, 0.1) !important;
    outline: none;
}

#enquiry .form-control,
#enquiry .form-select {
    border: 1px solid #ced4da;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: var(--transition-fast);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-info-card {
    transition: var(--transition-smooth);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md) !important;
}

.icon-box-lg {
    transition: var(--transition-smooth);
}

.contact-info-card:hover .icon-box-lg {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/
.footer {
    background-color: var(--primary-dark) !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

.product-card-v2 {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px !important;
    overflow: hidden;
}

.product-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.footer .text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer a:not(.btn) {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer a:not(.btn):hover {
    color: var(--accent-color) !important;
}

.footer h5 {
    color: var(--bg-white) !important;
}

.footer .social-links a {
    transition: var(--transition-smooth);
}

.footer .social-links a:hover {
    background-color: var(--accent-color) !important;
    transform: translateY(-3px);
}

.custom-footer-links li a {
    display: inline-block;
}

.custom-footer-links li a:hover {
    color: var(--bg-white) !important;
    transform: translateX(5px);
}


/*--------------------------------------------------------------
# Inner Page Styles
--------------------------------------------------------------*/
.inner-page-hero {
    padding-top: 150px;
    padding-bottom: 40px;
    background: linear-gradient(135deg, #001a4d 0%, #0d47a1 100%);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.inner-page-hero .container {
    position: relative;
    z-index: 1;
}

/* Individual Page Backgrounds */
.about-hero {
    background: linear-gradient(rgba(13, 71, 161, 0.75), rgba(0, 33, 113, 0.6)), url('../images/Untitled design (4).jpg') center/cover no-repeat;
}

.services-hero {
    background: linear-gradient(rgba(13, 71, 161, 0.7), rgba(0, 33, 113, 0.5)), url('../images/Untitled design (1).png') center/cover no-repeat;
}

.products-hero {
    background: linear-gradient(rgba(13, 71, 161, 0.65), rgba(0, 33, 113, 0.5)), url('../images/Swimming Pool Tensile Structure (2).jpg') center/cover no-repeat;
}

.contact-hero {
    background: linear-gradient(rgba(13, 71, 161, 0.8), rgba(0, 33, 113, 0.7)), url('../images/Tensile Membrane Structure.jpg') center/cover no-repeat;
}

.inner-page-hero h1 {
    color: var(--bg-white) !important;
}

.breadcrumb-custom {
    background: transparent;
}

.breadcrumb-custom .breadcrumb-item,
.breadcrumb-custom .breadcrumb-item a,
.breadcrumb-custom .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8) !important;
}

.breadcrumb-custom .breadcrumb-item a:hover {
    color: var(--bg-white) !important;
}

.breadcrumb-custom .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/*--------------------------------------------------------------
# Process Timeline
--------------------------------------------------------------*/
.border-dashed {
    border-style: dashed !important;
    border-color: rgba(13, 71, 161, 0.2) !important;
}

/* Removed process timeline lines as per user request */





/*--------------------------------------------------------------
# Font Awesome Icon Visibility & Enhancements
--------------------------------------------------------------*/
i[class^="fa-"],
i[class*=" fa-"] {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    transition: var(--transition-fast);
}

/* Global white icon utility as requested */
.fa-white {
    color: #ffffff !important;
}

/* Enhanced visibility for icons in cards and sections */
.industry-icon i,
.icon-box i,
.icon-box-lg i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Make quote icons more visible in testimonials */
.testimonial-card .fa-quote-left {
    opacity: 0.15 !important;
    color: var(--primary-color);
}

/* Ensure social links icons are perfectly white and centered */
.social-links a i {
    color: #ffffff !important;
    font-size: 1.1rem;
}

/* Hover effect for all icons to feel alive */
i[class^="fa-"]:hover,
i[class*=" fa-"]:hover {
    transform: scale(1.1);
}



/* ==============================================
   Gallery Folder System Styles
   =============================================== */
.category-folder-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.category-folder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 26, 77, 0.12) !important;
}

.category-folder-card:hover img {
    transform: scale(1.08);
}

.folder-cover {
    overflow: hidden;
}

.folder-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(13, 71, 161, 0.85);
    backdrop-filter: blur(5px);
    font-weight: 700;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.folder-icon {
    transition: all 0.3s ease;
}

.category-folder-card:hover .folder-icon {
    background: var(--primary-color) !important;
    color: white !important;
    transform: rotate(-10deg);
}

.small-play {
    width: 40px !important;
    height: 40px !important;
    font-size: 1rem !important;
}

#gallery-nav {
    border-left: 5px solid var(--primary-color);
}

.transition-transform {
    transition: transform 0.6s ease;
}

.cursor-pointer {
    cursor: pointer;
}

#btn-back:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateX(-5px);
}

.category-images-grid .gallery-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
}