/* ====================================
   SRI DHARSINEE ENTERPRISES
   Modern Industrial Website 2026
   ==================================== */

/* === ROOT VARIABLES === */
:root {
    --primary-color: #1661dd;
    --secondary-color: #3030af;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --border-radius: 16px;
    --transition: all 0.3s ease;
    --box-shadow: 0 10px 40px rgba(22, 97, 221, 0.1);
    --box-shadow-hover: 0 15px 50px rgba(22, 97, 221, 0.2);
}

/* === GLOBAL STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* === UTILITY CLASSES === */
.section-padding {
    padding: 100px 0;
}

.rounded-20 {
    border-radius: 20px;
}

.rounded-16 {
    border-radius: 16px;
}

.rounded-12 {
    border-radius: 12px;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75);
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

/* === SECTION HEADERS === */
.section-header {
    margin-bottom: 40px;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 700px;
}

/* ====================================
   NAVIGATION
   ==================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    padding: 1.125rem 0;
    transition: all 0.4s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 0.75rem 0;
}

/* Logo */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--text-dark);
    text-decoration: none;
}

.navbar-logo {
    height: 2.5rem;
    width: auto;
    transition: all 0.4s ease;
}

.navbar.scrolled .navbar-logo {
    height: 2.125rem;
}

.brand-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.125rem;
}

/* Hamburger Menu Button */
.navbar-toggler {
    display: none;
    border: none;
    padding: 0.5rem;
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    z-index: 1002;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler:hover {
    background: rgba(22, 97, 221, 0.08);
}

/* Hamburger Icon */
.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 1.5rem;
    height: 1.25rem;
    position: relative;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Desktop Menu */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-link .nav-icon {
    font-size: 1rem;
    display: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(22, 97, 221, 0.06);
}

.btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(22, 97, 221, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 97, 221, 0.4);
    color: white;
}

/* ====================================
   MOBILE SIDE MENU - RIGHT SIDE
   ==================================== */

/* Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Side Menu Panel */
.mobile-side-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: white;
    z-index: 1001;
    overflow-y: auto;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
}

.mobile-side-menu.active {
    right: 0;
}

/* Close Button */
.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--bg-light);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-dark);
    font-size: 1.125rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.mobile-menu-close:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

/* Menu Content */
.mobile-menu-content {
    padding: 2rem 1.5rem;
}

/* Mobile Logo */
.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.mobile-menu-logo img {
    height: 2.5rem;
    width: auto;
}

.mobile-menu-logo span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Navigation Links */
.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.mobile-nav-list li {
    margin-bottom: 0.25rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1rem;
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.mobile-nav-link i:first-child {
    font-size: 1.125rem;
    width: 1.5rem;
    text-align: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.mobile-nav-link .arrow-icon {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: linear-gradient(135deg, rgba(22, 97, 221, 0.08), rgba(48, 48, 175, 0.08));
    color: var(--primary-color);
}

.mobile-nav-link:hover i:first-child,
.mobile-nav-link.active i:first-child {
    color: var(--primary-color);
}

.mobile-nav-link:hover .arrow-icon,
.mobile-nav-link.active .arrow-icon {
    color: var(--primary-color);
    transform: translateX(3px);
}

/* Divider */
.mobile-menu-divider {
    height: 1px;
    background: var(--border-light);
    margin: 1.5rem 0;
}

/* Contact Info */
.mobile-contact-info {
    margin-bottom: 1.5rem;
}

.mobile-contact-info h5 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--text-light);
}

.mobile-contact-item i {
    font-size: 0.875rem;
    color: var(--primary-color);
    width: 1.25rem;
    text-align: center;
}

/* Quote Button */
.mobile-quote-btn {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 0.938rem;
    margin-bottom: 1.5rem;
    border-radius: 0.75rem;
}

/* Social Links */
.mobile-social-links {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.mobile-social-links a {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.mobile-social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 991.98px) {
    .navbar-toggler {
        display: flex;
    }

    .navbar-collapse {
        display: none;
    }

    .mobile-side-menu {
        display: block;
    }
}

@media (min-width: 992px) {
    .mobile-side-menu,
    .mobile-menu-overlay {
        display: none;
    }
}



.btn-quote {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(22, 97, 221, 0.3);
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(22, 97, 221, 0.4);
    color: white;
}

.navbar-toggler {
    border: none;
    padding: 5px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ====================================
   MODERN HERO SLIDER - IMAGE BACKGROUNDS
   ==================================== */

.modern-hero-slider {
    margin-top: 76px;
    position: relative;
    overflow: hidden;
}

.hero-modern-slide {
    min-height: 100vh;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Dark Overlay for Text Readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

/* Animated Geometric Shapes */
.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.08;
    z-index: 2;
}

.shape {
    position: absolute;
    border: 2px solid #1661dd;
    border-radius: 20px;
}

.shape-1 {
    width: 250px;
    height: 250px;
    top: 10%;
    right: 10%;
    animation: float 20s ease-in-out infinite;
    transform: rotate(45deg);
}

.shape-2 {
    width: 180px;
    height: 180px;
    bottom: 20%;
    left: 5%;
    animation: float 15s ease-in-out infinite reverse;
    transform: rotate(30deg);
}

.shape-3 {
    width: 130px;
    height: 130px;
    top: 50%;
    left: 50%;
    animation: float 25s ease-in-out infinite;
    transform: rotate(60deg);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    50% {
        transform: translateY(-40px) rotate(90deg);
    }
}

/* Hero Content */
.hero-modern-content {
    position: relative;
    z-index: 10;
    color: white;
}

/* Hero Badge - SMALLER */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-badge i {
    color: #1661dd;
    font-size: 14px;
}

/* Hero Title - SMALLER */
.hero-modern-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #1661dd 0%, #3030af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1661dd 0%, #3030af 100%);
    border-radius: 2px;
}

/* Hero Subtitle - SMALLER */
.hero-modern-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    font-weight: 400;
}

/* Hero Stats - SMALLER */
.hero-stats {
    display: flex;
    gap: 35px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.hero-stats .stat-item {
    text-align: left;
}

.hero-stats .stat-number {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #1661dd 0%, #3030af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 5px;
}

.hero-stats .stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Modern Buttons - SMALLER */
.hero-modern-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn-modern:hover::before {
    width: 300px;
    height: 300px;
}

.btn-modern-primary {
    background: linear-gradient(135deg, #1661dd 0%, #3030af 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(22, 97, 221, 0.35);
}

.btn-modern-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(22, 97, 221, 0.5);
    color: white;
}

.btn-modern-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-modern-outline:hover {
    border-color: #1661dd;
    background: rgba(22, 97, 221, 0.15);
    transform: translateY(-2px);
    color: white;
}

.btn-modern i {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.btn-modern:hover i {
    transform: translateX(4px);
}

/* Feature List - SMALLER */
.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.feature-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 13px;
    font-weight: 500;
}

.feature-list-item i {
    color: #1661dd;
    font-size: 16px;
    flex-shrink: 0;
}

/* Floating Cards - SMALLER */
.hero-image-wrapper {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 18px 16px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    animation: floatCard 6s ease-in-out infinite;
    z-index: 2;
}

.floating-card i {
    font-size: 28px;
    color: #1661dd;
    margin-bottom: 8px;
}

.floating-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 3px;
}

.floating-card p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.floating-card-1 {
    top: 8%;
    left: -8%;
    animation-delay: 0s;
}

.floating-card-2 {
    top: 45%;
    right: -8%;
    animation-delay: 2s;
}

.floating-card-3 {
    bottom: 8%;
    left: 8%;
    animation-delay: 4s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Split Images */
.hero-split-images {
    position: relative;
    height: 500px;
}

.split-image-1,
.split-image-2 {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.split-image-1 {
    width: 60%;
    height: 65%;
    top: 0;
    left: 0;
    z-index: 2;
}

.split-image-2 {
    width: 60%;
    height: 65%;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.split-image-1 img,
.split-image-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.split-image-1:hover img,
.split-image-2:hover img {
    transform: scale(1.08);
}

/* Product Showcase - SMALLER */
.product-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 35px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.product-showcase-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px 15px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
}

.product-showcase-item:hover {
    background: rgba(22, 97, 221, 0.15);
    border-color: #1661dd;
    transform: translateY(-8px);
}

.product-showcase-item .product-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1661dd 0%, #3030af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.product-showcase-item .product-icon i {
    font-size: 22px;
    color: white;
}

.product-showcase-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.product-showcase-item p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

/* Custom Navigation Controls */
.hero-nav-controls {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 25px;
    z-index: 20;
}

.hero-nav-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-nav-btn:hover {
    background: #1661dd;
    border-color: #1661dd;
    transform: scale(1.1);
}

.hero-indicators {
    display: flex;
    gap: 10px;
}

.hero-indicators button {
    width: 35px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-indicators button.active {
    background: #1661dd;
    width: 50px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 35px;
    right: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 20;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #1661dd, transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% {
        opacity: 0;
        transform: translateY(-15px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Carousel Fade Effect */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* ====================================
   RESPONSIVE - SMALLER FONTS
   ==================================== */

@media (max-width: 1199px) {
    .hero-modern-title {
        font-size: 42px;
    }

    .hero-modern-subtitle {
        font-size: 15px;
    }

    .product-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-image-wrapper {
        height: 450px;
    }
}

@media (max-width: 991px) {
    .hero-modern-title {
        font-size: 36px;
    }

    .hero-modern-subtitle {
        font-size: 14px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 5px 14px;
    }

    .hero-stats {
        gap: 25px;
    }

    .hero-stats .stat-number {
        font-size: 26px;
    }

    .hero-stats .stat-label {
        font-size: 11px;
    }

    .feature-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .feature-list-item {
        font-size: 12px;
    }

    .product-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .btn-modern {
        padding: 10px 24px;
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .hero-modern-slide {
        min-height: auto;
        padding: 100px 0 80px;
    }

    .hero-modern-title {
        font-size: 28px;
    }

    .hero-modern-subtitle {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stats .stat-number {
        font-size: 22px;
    }

    .hero-stats .stat-label {
        font-size: 10px;
    }

    .hero-modern-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-modern {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 12px;
    }

    .product-showcase {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .product-showcase-item {
        padding: 16px 12px;
    }

    .product-showcase-item h4 {
        font-size: 13px;
    }

    .product-showcase-item p {
        font-size: 10px;
    }

    .hero-nav-controls {
        gap: 15px;
        bottom: 25px;
    }

    .hero-nav-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .shape {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-modern-title {
        font-size: 24px;
    }

    .hero-modern-subtitle {
        font-size: 12px;
    }

    .hero-badge {
        font-size: 9px;
        padding: 4px 12px;
        gap: 6px;
    }

    .hero-badge i {
        font-size: 12px;
    }

    .floating-card {
        padding: 14px 12px;
    }

    .floating-card i {
        font-size: 22px;
    }

    .floating-card h4 {
        font-size: 15px;
    }

    .floating-card p {
        font-size: 10px;
    }

    .hero-indicators button {
        width: 25px;
    }

    .hero-indicators button.active {
        width: 35px;
    }
}
/* === ABOUT IMAGE WRAPPER === */
.about-image-wrapper {
    position: relative;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.badge-content h3 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 5px;
}

.badge-content p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-dark);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 20px;
}
/* ====================================
   VISION & MISSION - TWO WHITE CARDS
   ==================================== */

.vm-card {
    background: white;
    border-radius: 16px;
    padding: 40px 35px;
    height: 100%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.vm-card:hover::before {
    transform: scaleX(1);
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(22, 97, 221, 0.12);
    border-color: rgba(22, 97, 221, 0.2);
}

/* Icon Box */
.vm-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.vision-icon-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.mission-icon-box {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.vm-icon-box i {
    font-size: 28px;
    color: white;
}

/* Card Title */
.vm-card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

/* Divider */
.vm-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    margin-bottom: 20px;
}

/* Quote */
.vm-card-quote {
    font-size: 18px;
    font-weight: 700;
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Text */
.vm-card-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

/* List */
.vm-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vm-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.vm-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ====================================
   RESPONSIVE
   ==================================== */

@media (max-width: 991px) {
    .vm-card {
        padding: 35px 30px;
    }

    .vm-card-title {
        font-size: 22px;
    }

    .vm-card-quote {
        font-size: 16px;
    }

    .vm-card-text {
        font-size: 13px;
    }

    .vm-list li {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .vm-card {
        padding: 30px 25px;
    }

    .vm-icon-box {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .vm-icon-box i {
        font-size: 24px;
    }

    .vm-card-title {
        font-size: 20px;
    }

    .vm-card-quote {
        font-size: 15px;
    }

    .vm-card-text {
        font-size: 12px;
    }

    .vm-list li {
        font-size: 12px;
        gap: 10px;
    }

    .vm-dot {
        width: 6px;
        height: 6px;
    }
}
/* === PILLAR CARDS === */
.pillar-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.pillar-featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(22, 97, 221, 0.3);
}

.pillar-icon i {
    font-size: 36px;
    color: white;
}

.pillar-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.pillar-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.pillar-list {
    list-style: none;
    padding: 0;
}

.pillar-list li {
    padding: 8px 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pillar-list i {
    color: var(--primary-color);
    font-size: 12px;
}

/* ====================================
   PRODUCT CARDS WITH IMAGES
   ==================================== */

.product-card-img {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

.product-card-img:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(22, 97, 221, 0.15);
    border-color: var(--primary-color);
}

/* Product Image Wrapper */
.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f8f9fa;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card-img:hover .product-image {
    transform: scale(1.1);
}

/* Product Overlay with Icon */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(22, 97, 221, 0.85), rgba(48, 48, 175, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card-img:hover .product-overlay {
    opacity: 1;
}

.product-overlay i {
    font-size: 60px;
    color: white;
    animation: zoomIn 0.5s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Product Content */
.product-content {
    padding: 25px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title-img {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-description-img {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.product-features-img {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.product-features-img li {
    padding: 6px 0;
    font-size: 12px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-features-img i {
    color: var(--primary-color);
    font-size: 10px;
    flex-shrink: 0;
}

.product-link-img {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.product-link-img i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.product-link-img:hover {
    color: var(--secondary-color);
    gap: 12px;
}

.product-link-img:hover i {
    transform: translateX(4px);
}

/* Badge on Image (Optional) */
.product-badge-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(22, 97, 221, 0.4);
}

/* Responsive */
@media (max-width: 991px) {
    .product-image-wrapper {
        height: 200px;
    }

    .product-title-img {
        font-size: 16px;
    }

    .product-description-img {
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .product-image-wrapper {
        height: 240px;
    }

    .product-content {
        padding: 20px 18px;
    }
}

/* ====================================
   FULL WIDTH INDUSTRIES SECTION
   ==================================== */

.industries-full-width {
    width: 100%;
    background: white;
    padding: 0;
}

.industries-row {
    display: flex;
    width: 100%;
    margin-bottom: 0;
}

.industry-item {
    flex: 1;
    min-height: 200px;
    border-right: 1px solid #f0f0f0;
    position: relative;
}

.industry-item:last-child {
    border-right: none;
}

.industry-card-full {
    height: 100%;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: white;
    overflow: hidden;
}

.industry-card-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.industry-card-full:hover::before {
    transform: scaleX(1);
}

.industry-card-full:hover {
    background: linear-gradient(135deg, rgba(22, 97, 221, 0.03), rgba(48, 48, 175, 0.03));
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(22, 97, 221, 0.1);
}

/* Industry Icon Wrapper */
.industry-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(22, 97, 221, 0.08), rgba(48, 48, 175, 0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.industry-card-full:hover .industry-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scale(1.1);
}

/* Industry Icon Image */
.industry-icon-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: none;
}

.industry-card-full:hover .industry-icon-img {
    filter: brightness(0) invert(1);
    transform: scale(1.1);
}

/* Industry Name */
.industry-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.industry-card-full:hover .industry-name {
    color: var(--primary-color);
}

/* Industry Description */
.industry-desc {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.industry-card-full:hover .industry-desc {
    color: var(--primary-color);
}

/* ====================================
   RESPONSIVE FULL WIDTH
   ==================================== */

@media (max-width: 1399px) {
    .industry-card-full {
        padding: 35px 25px;
    }

    .industry-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .industry-icon-img {
        width: 45px;
        height: 45px;
    }

    .industry-name {
        font-size: 15px;
    }

    .industry-desc {
        font-size: 11px;
    }
}

@media (max-width: 1199px) {
    .industry-card-full {
        padding: 30px 20px;
    }

    .industry-icon-wrapper {
        width: 65px;
        height: 65px;
        margin-bottom: 15px;
    }

    .industry-icon-img {
        width: 40px;
        height: 40px;
    }

    .industry-name {
        font-size: 14px;
    }

    .industry-desc {
        font-size: 10px;
    }
}

@media (max-width: 991px) {
    .industries-row {
        flex-wrap: wrap;
    }

    .industry-item {
        flex: 0 0 50%; /* 2 per row on tablet */
        border-right: 1px solid #f0f0f0;
        border-bottom: 1px solid #f0f0f0;
    }

    .industry-item:nth-child(2n) {
        border-right: none;
    }

    .industry-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .industry-card-full {
        padding: 30px 20px;
    }
}

@media (max-width: 767px) {
    .industry-item {
        flex: 0 0 100%; /* 1 per row on mobile */
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }

    .industry-item:last-child {
        border-bottom: none;
    }

    .industry-card-full {
        padding: 30px 25px;
        text-align: center;
    }

    .industry-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .industry-icon-img {
        width: 42px;
        height: 42px;
    }

    .industry-name {
        font-size: 16px;
    }

    .industry-desc {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .industry-card-full {
        padding: 25px 20px;
    }

    .industry-icon-wrapper {
        width: 65px;
        height: 65px;
        margin-bottom: 15px;
    }

    .industry-icon-img {
        width: 38px;
        height: 38px;
    }

    .industry-name {
        font-size: 15px;
    }

    .industry-desc {
        font-size: 11px;
    }
}

/* ====================================
   CLIENT LOGOS - ORIGINAL COLORS
   ==================================== */

.clients-scroll-container {
    width: 100%;
    overflow: hidden;
    background: #fafbfc;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.clients-scroll-row {
    display: flex;
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    position: relative;
}

.clients-scroll-row:first-child {
    border-bottom: 1px solid #f0f0f0;
}

/* Scroll Track */
.clients-scroll-track {
    display: flex;
    align-items: center;
    gap: 60px;
    will-change: transform;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/* Scroll Animations */
.scroll-left-to-right .clients-scroll-track {
    animation: scrollLeftToRight 30s linear infinite;
}

.scroll-right-to-left .clients-scroll-track {
    animation: scrollRightToLeft 30s linear infinite;
}

@keyframes scrollLeftToRight {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0%);
    }
}

@keyframes scrollRightToLeft {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Client Logo Items */
.client-logo-item {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f5f5f5;
    padding: 20px;
}

.client-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(22, 97, 221, 0.15);
    border-color: var(--primary-color);
}

/* Client Logo Images - NO GRAYSCALE */
.client-logo {
    max-width: 140px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    /* Removed grayscale filter - shows original colors */
    transition: transform 0.3s ease;
}

.client-logo-item:hover .client-logo {
    transform: scale(1.08);
}

/* Pause Animation on Hover */
.clients-scroll-row:hover .clients-scroll-track {
    animation-play-state: paused;
}

/* Gradient Fade Edges */
.clients-scroll-container::before,
.clients-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.clients-scroll-container::before {
    left: 0;
    background: linear-gradient(to right, #fafbfc, transparent);
}

.clients-scroll-container::after {
    right: 0;
    background: linear-gradient(to left, #fafbfc, transparent);
}

/* ====================================
   RESPONSIVE
   ==================================== */

@media (max-width: 1199px) {
    .clients-scroll-track {
        gap: 50px;
    }

    .client-logo-item {
        width: 160px;
        height: 90px;
        padding: 18px;
    }

    .client-logo {
        max-width: 120px;
        max-height: 55px;
    }
}

@media (max-width: 991px) {
    .clients-scroll-track {
        gap: 40px;
    }

    .client-logo-item {
        width: 140px;
        height: 80px;
        padding: 15px;
    }

    .client-logo {
        max-width: 110px;
        max-height: 50px;
    }

    .clients-scroll-row {
        padding: 25px 0;
    }
}

@media (max-width: 767px) {
    .clients-scroll-track {
        gap: 30px;
    }

    .client-logo-item {
        width: 120px;
        height: 70px;
        padding: 12px;
    }

    .client-logo {
        max-width: 95px;
        max-height: 45px;
    }

    .clients-scroll-row {
        padding: 20px 0;
    }
}

@media (max-width: 576px) {
    .client-logo-item {
        width: 110px;
        height: 65px;
        padding: 10px;
    }

    .client-logo {
        max-width: 90px;
        max-height: 40px;
    }

    .scroll-left-to-right .clients-scroll-track,
    .scroll-right-to-left .clients-scroll-track {
        animation-duration: 25s;
    }
}




/* === TESTIMONIAL CARDS === */
.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: var(--primary-color);
    opacity: 0.2;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.author-info h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--text-dark);
}

.author-info p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.rating i {
    color: #ffc107;
    font-size: 14px;
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -200px;
    right: -200px;
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* === ACCORDION/FAQ === */
.modern-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.modern-accordion .accordion-button {
    background: white;
    color: var(--text-dark);
    font-weight: 600;
    padding: 20px 25px;
    border: none;
    box-shadow: none;
}

.modern-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.modern-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.modern-accordion .accordion-body {
    padding: 20px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

/* === FOOTER === */
.footer {
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px;
}

.footer-brand {
    font-size: 22px;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-brand i {
    color: var(--primary-color);
    font-size: 28px;
    margin-right: 10px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* === SCROLL TO TOP BUTTON === */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(22, 97, 221, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(22, 97, 221, 0.5);
}

/* === BREADCRUMB SECTION === */
.breadcrumb-section {
    background-size: cover;
    background-position: center;
    padding: 150px 0 100px;
    margin-top: 76px;
    position: relative;
}

.breadcrumb-content {
    text-align: center;
    color: white;
}

.breadcrumb-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 30px;
    display: inline-flex;
    margin: 0;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item a {
    color: white;
    font-weight: 600;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* === ABOUT PAGE SPECIFIC === */
.about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.grid-image-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    height: 100%;
    object-fit: cover;
}

.grid-image-2 {
    grid-column: 2 / 3;
    margin-top: 50px;
}

.stats-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.vision-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    border-left: 5px solid var(--primary-color);
}

.founder-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 60px;
    color: white;
}

.vision-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: rgba(22, 97, 221, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.vision-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.vision-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.infrastructure-card {
    background: white;
    padding: 35px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

.infrastructure-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.infra-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(22, 97, 221, 0.1), rgba(48, 48, 175, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.infra-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.infrastructure-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.infrastructure-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.vertical-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    height: 100%;
    transition: var(--transition);
}

.vertical-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.vertical-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.vertical-icon i {
    font-size: 32px;
    color: white;
}

.vertical-card h4 {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.vertical-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin-bottom: 20px;
}

.vertical-list {
    list-style: none;
    padding: 0;
}

.vertical-list li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vertical-list i {
    color: white;
    font-size: 12px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: scale(1.05);
    box-shadow: var(--box-shadow-hover);
}

.value-card i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.value-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* === PRODUCTS PAGE === */
.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(22, 97, 221, 0.1), rgba(48, 48, 175, 0.1));
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
}

.product-page-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.product-page-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-grid {
    display: grid;
    gap: 20px;
}

.feature-item-inline {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-item-inline i {
    color: var(--primary-color);
    font-size: 24px;
    margin-top: 3px;
}

.feature-item-inline h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.feature-item-inline p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.product-specs h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.product-specs ul {
    list-style: none;
    padding: 0;
}

.product-specs li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.product-specs li::before {
    content: '▪';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 20px;
}

.sub-product-card {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

.sub-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.sub-product-card i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.sub-product-card h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.sub-product-card p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.comparison-table {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.comparison-table th,
.comparison-table td {
    padding: 20px 15px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-table th {
    font-weight: 700;
    font-size: 14px;
}

.comparison-table td {
    font-size: 14px;
    color: var(--text-dark);
}

.comparison-table tbody tr:hover {
    background: #f8f9fa;
}

/* === EXPERTISE PAGE === */
.process-timeline {
    position: relative;
}

.process-step {
    position: relative;
    margin-bottom: 60px;
}

.step-number {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(22, 97, 221, 0.3);
    z-index: 1;
}

.step-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: rgba(22, 97, 221, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-icon i {
    font-size: 36px;
    color: var(--primary-color);
}

.step-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.step-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-feature-item i {
    color: var(--primary-color);
    font-size: 24px;
    margin-top: 3px;
}

.step-feature-item h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.step-feature-item p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.tools-used {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
}

.tools-used h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.tools-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tool-badge {
    background: linear-gradient(135deg, rgba(22, 97, 221, 0.1), rgba(48, 48, 175, 0.1));
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.process-connector {
    text-align: center;
    margin: 40px 0;
}

.process-connector i {
    font-size: 40px;
    color: var(--primary-color);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.cert-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.cert-card i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cert-card h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.cert-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.why-process-works {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
}

.process-benefit {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
}

.process-benefit i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.process-benefit h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.process-benefit p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* === CONTACT PAGE === */
.modern-form .form-group {
    margin-bottom: 20px;
}

.modern-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.modern-form .form-label i {
    color: var(--primary-color);
}

.modern-form .form-control,
.modern-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 15px;
    transition: var(--transition);
}

.modern-form .form-control:focus,
.modern-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(22, 97, 221, 0.1);
}

.modern-form textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.contact-info-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: flex;
    gap: 20px;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(22, 97, 221, 0.1), rgba(48, 48, 175, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.contact-details h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-details p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.8;
}

.contact-details a {
    color: var(--text-light);
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary-color);
}

.emergency-support-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--box-shadow);
}

.emergency-support-badge i {
    font-size: 36px;
}

.emergency-support-badge h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.emergency-support-badge p {
    font-size: 13px;
    margin: 0;
    opacity: 0.9;
}

.contact-social h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.alternate-contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.alternate-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.alternate-contact-card i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.alternate-contact-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.alternate-contact-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* === BUTTONS === */
.btn {
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(22, 97, 221, 0.3);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
}

.btn-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .section-title {
        font-size: 32px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .navbar-nav .nav-link {
        padding: 10px 15px;
    }

    .btn-quote {
        margin-top: 10px;
        width: 100%;
    }

    .pillar-featured {
        transform: scale(1);
    }

    .breadcrumb-title {
        font-size: 36px;
    }

    .product-page-title {
        font-size: 28px;
    }

    .step-title {
        font-size: 24px;
    }

    .cta-title {
        font-size: 32px;
    }

    .about-image-grid {
        grid-template-columns: 1fr;
    }

    .grid-image-2 {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .hero-slide {
        min-height: 600px;
    }

    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .stats-row {
        justify-content: center;
    }

    .breadcrumb-section {
        padding: 120px 0 80px;
    }
}