:root {
    --primary: #1F8FB5;
    --primary-hover: #236D98;
    --secondary: #2DB8D6;
    --dark: #1F1F1F;
    --white: #FFFFFF;
    --section-bg: #F6F8FA;
    --border: #D9E2E8;
    --body-text: #5D6872;
    --heading: #1F1F1F;
    --footer-bg: #1F1F1F;
    --footer-text: #C8D0D6;
    --soft-cyan: #DDF7FC;
    --dark-navy: #16384D;
    --gradient-start: #236D98;
    --gradient-mid: #1F8FB5;
    --gradient-end: #2DB8D6;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--body-text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--heading);
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

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

.section-padding {
    padding: 80px 0;
}

.section-padding-sm {
    padding: 50px 0;
}

.bg-section {
    background: var(--section-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--heading);
}

.section-title p {
    color: var(--body-text);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
}

.section-title .title-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Navbar */
#mainNav {
    padding: 15px 0;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(217, 226, 232, 0.3);
    z-index: 1050;
}

#mainNav.scrolled {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar-logo {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

#mainNav.scrolled .navbar-logo {
    height: 60px;
}

.brand-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--primary);
    white-space: nowrap;
    line-height: 1.2;
}

.brand-text small {
    display: block;
    font-weight: 400;
    font-size: 0.7rem;
    color: var(--body-text);
    letter-spacing: 0.5px;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--dark) !important;
    padding: 8px 16px !important;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

.navbar-toggler {
    border: 2px solid var(--border);
    padding: 6px 10px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(31, 143, 181, 0.15);
    border-color: var(--primary);
}

.mega-dropdown {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 15px;
    min-width: 350px;
}

.mega-dropdown .dropdown-header {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px 10px;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
}

.mega-dropdown .dropdown-item {
    font-size: 0.85rem;
    padding: 7px 12px;
    border-radius: 6px;
    color: var(--body-text);
    font-weight: 400;
    white-space: nowrap;
}

.mega-dropdown .dropdown-item:hover {
    background: var(--soft-cyan);
    color: var(--primary);
}

/* Buttons */
.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom:hover {
    background: var(--primary-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(31, 143, 181, 0.3);
}

.btn-secondary-custom {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 28px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary-custom:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(31, 143, 181, 0.3);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: var(--soft-cyan);
    color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 10px 28px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Hero Section - Split Layout */
.hero-section-split {
    position: relative;
    height: 512px;
    overflow: hidden;
    background: var(--white);
}

.hero-section-split .carousel-item {
    height: 512px;
}

.hero-slide-split {
    display: flex;
    height: 512px;
    align-items: stretch;
}

.hero-slide-text {
    flex: 0 0 55%;
    max-width: 55%;
    padding: 60px 50px 50px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(35, 109, 152, 0.85) 0%, rgba(31, 143, 181, 0.75) 50%, rgba(45, 184, 214, 0.65) 100%);
    position: relative;
    z-index: 2;
}

.hero-slide-image {
    flex: 0 0 45%;
    max-width: 45%;
    height: 512px;
    position: relative;
    overflow: hidden;
}

.hero-slide-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

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

.hero-slide-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -40px;
    width: 80px;
    height: 100%;
    background: var(--white);
    z-index: 3;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.hero-slide-text h1 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.15;
}

.hero-slide-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.7;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-section-split .carousel-indicators {
    bottom: 40px;
    left: 0;
    right: 55%;
    padding-left: 80px;
    justify-content: flex-start;
}

.hero-section-split .carousel-indicators button {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    opacity: 0.3;
    background-color: var(--primary);
    border: none;
    transition: all 0.3s ease;
}

.hero-section-split .carousel-indicators .active {
    opacity: 1;
    width: 60px;
}

/* Page Header */
.page-header {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(35, 109, 152, 0.9) 0%, rgba(31, 143, 181, 0.8) 50%, rgba(45, 184, 214, 0.7) 100%);
}

.page-header-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
}

.page-header-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.page-header-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.breadcrumb-area {
    position: relative;
    z-index: 2;
    padding-top: 15px;
}

.breadcrumb-area .breadcrumb {
    justify-content: center;
    margin-bottom: 0;
}

.breadcrumb-area .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.breadcrumb-area .breadcrumb-item.active {
    color: var(--white);
    font-size: 0.9rem;
}

.breadcrumb-area .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Cards */
.category-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid var(--border);
    height: 100%;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(31, 143, 181, 0.15);
    border-color: var(--primary);
}

.category-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.category-card .card-img-wrapper {
    overflow: hidden;
    position: relative;
}

.category-card .card-body {
    padding: 20px;
    text-align: center;
}

.category-card .card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 12px;
}

.category-card .card-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.category-card .card-link:hover {
    color: var(--secondary);
    gap: 8px;
}

/* Why Choose Us Cards */
.why-card {
    text-align: center;
    padding: 35px 25px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(31, 143, 181, 0.1);
    border-color: var(--primary);
}

.why-card .icon-box {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: var(--soft-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.why-card:hover .icon-box {
    background: var(--primary);
}

.why-card .icon-box i {
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.why-card:hover .icon-box i {
    color: var(--white);
}

.why-card h5 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Product Cards */
.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid var(--border);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(31, 143, 181, 0.12);
}

.product-card .card-img-top {
    height: 220px;
    object-fit: cover;
}

.product-card .card-body {
    padding: 22px;
}

.product-card .card-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-card .card-text {
    font-size: 0.9rem;
    color: var(--body-text);
    margin-bottom: 18px;
}

/* Subcategory Cards */
.subcategory-card {
    background: var(--white);
    border-radius: 12px;
    padding: 28px;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    height: 100%;
}

.subcategory-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(31, 143, 181, 0.1);
    border-color: var(--primary);
}

.subcategory-card h5 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.subcategory-card h5 i {
    font-size: 1.2rem;
}

.subcategory-card .product-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.subcategory-card .product-list li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--body-text);
    border-bottom: 1px solid rgba(217, 226, 232, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
}

.subcategory-card .product-list li:last-child {
    border-bottom: none;
}

.subcategory-card .product-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
    padding: 70px 0;
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.92;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.site-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
}

.footer-top {
    padding: 70px 0 40px;
}

.footer-logo img {
    max-height: 70px;
    margin-bottom: 0;
    filter: brightness(0) invert(1);
}

.footer-about {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-text);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--primary);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--footer-text);
    font-size: 0.88rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.88rem;
}

.footer-contact li i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact a {
    color: var(--footer-text);
}

.footer-contact a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(31, 143, 181, 0.3);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-hover);
    color: var(--white);
    transform: translateY(-3px);
}

/* Forms */
.form-control, .form-select {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: var(--dark);
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(31, 143, 181, 0.1);
}

.form-control::placeholder {
    color: #aab4be;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--heading);
    margin-bottom: 6px;
}

.form-label .required {
    color: #D93025;
}

.captcha-box {
    background: var(--section-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.captcha-box label {
    font-weight: 500;
    color: var(--heading);
    white-space: nowrap;
}

.captcha-box .captcha-question {
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
}

/* Brands */
.brand-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.brand-card:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(31, 143, 181, 0.1);
    transform: translateY(-3px);
}

.brand-card .brand-name {
    font-weight: 500;
    color: var(--heading);
    font-size: 0.9rem;
}

.brand-category-section {
    margin-bottom: 40px;
}

.brand-category-section h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-category-section h4 i {
    font-size: 1.3rem;
}

/* Disclaimer */
.disclaimer-box {
    background: linear-gradient(135deg, rgba(31, 143, 181, 0.05) 0%, rgba(45, 184, 214, 0.08) 100%);
    border: 1px solid rgba(31, 143, 181, 0.2);
    border-left: 4px solid var(--primary);
    border-radius: 10px;
    padding: 25px 30px;
    margin-bottom: 40px;
}

.disclaimer-box h5 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.disclaimer-box p {
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.8;
}

/* Search & Filter */
.search-filter-bar {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 40px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
}

/* Contact Info Card */
.contact-info-card {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
    border-radius: 12px;
    padding: 30px 25px;
    color: var(--white);
    height: auto;
    max-height: 450px;
    overflow: hidden;
}

.contact-info-card h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-info-item i {
    font-size: 1.3rem;
    margin-top: 2px;
    opacity: 0.9;
}

.contact-info-item h6 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-info-item p, .contact-info-item a {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-info-item a:hover {
    color: var(--soft-cyan);
}

/* Map Placeholder */
.map-placeholder {
    background: var(--section-bg);
    border: 2px dashed var(--border);
    border-radius: 12px;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--body-text);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

/* About Page */
.about-intro {
    padding: 60px 0;
}

.about-intro img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.mission-vision-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 35px;
    height: 100%;
    transition: all 0.3s ease;
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(31, 143, 181, 0.1);
}

.mission-vision-card .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--soft-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mission-vision-card .icon-wrapper i {
    font-size: 1.5rem;
    color: var(--primary);
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
    padding-right: calc(50% + 30px);
    text-align: right;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
    padding-left: calc(50% + 30px);
    text-align: left;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary);
    z-index: 2;
}

.timeline-content {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content .year {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.timeline-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Quote Form */
.quote-form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Alert Messages */
.alert-custom-success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #155724;
    border-radius: 10px;
    padding: 15px 20px;
}

.alert-custom-error {
    background: rgba(217, 48, 37, 0.1);
    border: 1px solid rgba(217, 48, 37, 0.3);
    color: #721c24;
    border-radius: 10px;
    padding: 15px 20px;
}

/* Industries */
.industry-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.industry-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(31, 143, 181, 0.1);
}

.industry-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.industry-card h6 {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Values */
.value-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(31, 143, 181, 0.1);
}

.value-card .value-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--soft-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.value-card .value-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-slide-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-slide-text {
        flex: 0 0 auto;
        max-width: 100%;
        padding: 100px 30px 30px;
        text-align: center;
        align-items: center;
    }

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

    .hero-slide-image {
        flex: 0 0 auto;
        max-width: 100%;
        height: 350px;
    }

    .hero-slide-image::before {
        display: none;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-section-split .carousel-indicators {
        left: 0;
        right: 0;
        padding-left: 0;
        justify-content: center;
    }

    .hero-section-split {
        min-height: auto;
    }

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

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

    .navbar-collapse {
        background: var(--white);
        border-radius: 12px;
        padding: 15px;
        margin-top: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .mega-dropdown {
        min-width: auto;
        box-shadow: none;
        background: var(--section-bg);
        border-radius: 8px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        text-align: left;
        justify-content: flex-start;
    }

    .timeline-dot {
        left: 20px;
    }
}

@media (max-width: 767.98px) {
    .hero-slide-text {
        padding: 100px 20px 30px;
    }

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

    .hero-slide-text p {
        font-size: 0.95rem;
    }

    .hero-slide-image {
        height: 35vh;
    }

    .page-header {
        padding: 130px 0 60px;
    }

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

    .section-padding {
        padding: 50px 0;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }

    .footer-top {
        padding: 50px 0 30px;
    }

    .quote-form-card {
        padding: 25px 20px;
    }

    .contact-info-card {
        padding: 30px 20px;
    }
}

@media (max-width: 575.98px) {
    .hero-slide-text h1 {
        font-size: 1.6rem;
    }

    .hero-slide-text {
        padding: 80px 15px 20px;
    }

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

    .hero-slide-image {
        height: 250px;
    }

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

    .hero-slide-text p {
        font-size: 0.9rem;
    }

    .hero-slide-image {
        height: 300px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

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

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

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

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Loading Animation */
.skeleton {
    background: linear-gradient(90deg, var(--section-bg) 25%, #e8edf2 50%, var(--section-bg) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 6px;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
