/* ===========================================
   Fatema Trade Center - Custom Styles
   =========================================== */

/* CSS Variables for consistent theming */
:root {
    --primary-color: #c0392b;
    --secondary-color: #1c1c1c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --dark-overlay: rgba(0, 0, 0, 0.6);
    
    /* Typography Variables - All 400 Weight */
    --font-primary: 'Roboto', 'Arial', 'Tahoma', sans-serif;
    --font-heading: 'Roboto', 'Arial', 'Tahoma', sans-serif;
    --font-weight-light: 400;
    --font-weight-normal: 400;
    --font-weight-medium: 400;
    --font-weight-semibold: 400;
    --font-weight-bold: 400;
}


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

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-normal);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

/* Container Fixes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0; 
}

.container-fluid {
    width: 100%;
    padding: 0 15px;
}

/* Professional Typography System - All 400 Weight */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 12px;
    line-height: 1.3;
}

h1 { font-size: 24px; font-weight: normal; }
h2 { font-size: 20px; font-weight: normal; }
h3 { font-size: 18px; font-weight: normal; }
h4 { font-size: 16px; font-weight: normal; }
h5 { font-size: 14px; font-weight: normal; }
h6 { font-size: 13px; font-weight: normal; }

.section-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: normal;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 12px;
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 2rem;
    line-height: 1.6;
}


/* Social icons styles moved to components.css */

/* Unused corner positioning styles removed */



/* Mobile Menu Styling */
.navbar-toggler {
    border: none;
    padding: 8px 12px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:hover {
    background-color: transparent;
}

/* Active Navigation Link */
.navbar-nav .nav-link.active {
    color: #FFEB3B !important;
    font-weight: normal;
    position: relative;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #FFEB3B;
    border-radius: 2px;
}


/* Mobile Navigation Adjustments */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        margin: 5px 0;
        padding: 12px 20px !important;
        border-radius: 8px;
        text-align: center;
    }
    
    .navbar-nav .nav-link:hover {
        transform: none;
        background: rgba(255, 235, 59, 0.2);
        color: #FFEB3B !important;
    }
    
    .dropdown-menu {
        margin-top: 5px;
        border-radius: 8px;
    }
    
    .dropdown-item {
        margin: 1px 5px;
        padding: 10px 20px;
    }
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background-attachment: fixed;
}

/* WebP Image Support */
.hero-slide {
    background-image: url('../images/slider/1.webp');
}

/* Fallback for browsers that don't support WebP */
@supports not (background-image: url('../images/slider/1.webp')) {
    .hero-slide {
        background-image: url('../images/slider/1.jpg');
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: normal;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
    text-align: left;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: normal;
    color: #fff;
    margin-bottom: 24px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
    text-align: left;
    line-height: 1.5;
}

.hero-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.6s both;
    border: 2px solid;
    background: transparent;
    text-align: left;
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 10px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 1rem;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Outline Button Styles */
/* Button styles moved to components.css */

.btn-outline-warning {
    color: #FFEB3B;
    border-color: #FFEB3B;
}

.btn-outline-warning:hover {
    background-color: #FFEB3B;
    color: #000;
    border-color: #FFEB3B;
}

.btn-outline-success {
    color: #27ae60;
    border-color: #27ae60;
}

.btn-outline-success:hover {
    background-color: #27ae60;
    color: #fff;
    border-color: #27ae60;
}

.btn-outline-danger {
    color: #e74c3c;
    border-color: #e74c3c;
}

.btn-outline-danger:hover {
    background-color: #e74c3c;
    color: #fff;
    border-color: #e74c3c;
}

.btn-outline-light {
    color: #fff;
    border-color: #fff;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 30px;
    margin-bottom: 0;
    z-index: 15;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    border: none;
    margin: 0 4px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.carousel-indicators button.active {
    background-color: rgba(255, 255, 255, 1);
    transform: scale(1.2);
    opacity: 1;
}

.carousel-indicators button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
    opacity: 1;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(255, 235, 59, 0.8);
    border-color: #FFEB3B;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Play/Pause Button */
.carousel-play-pause {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-play-pause:hover {
    background-color: rgba(255, 235, 59, 0.8);
    border-color: #FFEB3B;
    transform: scale(1.1);
}

.carousel-play-pause i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Carousel Animation */
.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.carousel-item.active .hero-title,
.carousel-item.active .hero-subtitle,
.carousel-item.active .hero-btn {
    animation: fadeInUp 1s ease-out;
}

.carousel-item.active .hero-subtitle {
    animation-delay: 0.3s;
}

.carousel-item.active .hero-btn {
    animation-delay: 0.6s;
}

/* About Section - Compressed Professional Style */
.about-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(192, 57, 43, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 235, 59, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.about-section .container {
    position: relative;
    z-index: 2;
}

/* Image Wrapper */
.about-image-wrapper {
    position: relative;
    height: 500px;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 3px solid #ffffff;
}

.about-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-container:hover .about-main-image {
    transform: scale(1.05);
}

/* About Section Image Overlay */
.about-image-wrapper .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.about-image-wrapper .image-container:hover .image-overlay {
    opacity: 1;
}

.overlay-badge {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.overlay-badge i {
    font-size: 1rem;
}

/* Floating Stats */
.floating-stats {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
}

.stat-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 8px 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(192, 57, 43, 0.2);
    display: flex;
    align-items: center;
    gap: 6px;
    animation: floatBubble 3s ease-in-out infinite;
    backdrop-filter: blur(8px);
}


.stat-1 {
    top: 20px;
    right: 20px;
    transform: rotate(-3deg);
    --rotation: -3deg;
    animation-delay: 0s;
}

.stat-2 {
    top: 50%;
    left: 20px;
    transform: translateY(-50%) rotate(2deg);
    --rotation: 2deg;
    animation-delay: 1s;
}

.stat-3 {
    bottom: 20px;
    right: 30px;
    transform: rotate(-1deg);
    --rotation: -1deg;
    animation-delay: 2s;
}

/* Stat Icon and Info Styles for About Section */
.stat-icon {
    width: 32px;
    height: 32px;
    background: rgba(183, 28, 28, 0.1);
    border: 1px solid #B71C1C;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B71C1C;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(192, 57, 43, 0.2);
    flex-shrink: 0;
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.stat-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

@keyframes floatBubble {
    0%, 100% { 
        transform: translateY(0px) rotate(var(--rotation, 0deg)); 
    }
    50% { 
        transform: translateY(-4px) rotate(calc(var(--rotation, 0deg) + 1deg)); 
    }
}

/* Compressed Content */
.about-content-compressed {
    padding-left: 40px;
}

.content-header {
    margin-bottom: 30px;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: #B71C1C;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-badge i {
    font-size: 0.9rem;
}

.content-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #FFEB3B);
    border-radius: 2px;
    margin-bottom: 20px;
}

.main-description {
    margin-bottom: 30px;
}

.main-description p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

/* Features Compressed */
.features-compressed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-compressed {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(192, 57, 43, 0.05);
    transition: all 0.3s ease;
}

.feature-compressed:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(192, 57, 43, 0.1);
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: rgba(183, 28, 28, 0.1);
    border: 2px solid #B71C1C;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B71C1C;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(192, 57, 43, 0.3);
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
    line-height: 1.3;
}

.feature-text p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    font-weight: 600;
}

/* Bottom Stats */
.bottom-stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(192, 57, 43, 0.1);
    position: relative;
    overflow: hidden;
}

.bottom-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #FFEB3B);
    z-index: 1;
}

.stat-item {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 2;
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 2px solid rgba(192, 57, 43, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(192, 57, 43, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}


.hexagon-card {
    position: absolute;
    width: 180px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.hexagon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(192, 57, 43, 0.2), rgba(255, 235, 59, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hexagon-card:hover::before {
    opacity: 1;
}

.hexagon-card:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hexagon-1 {
    top: 0;
    left: 20px;
    animation: hexFloat1 8s ease-in-out infinite;
}

.hexagon-2 {
    top: 0;
    right: 20px;
    animation: hexFloat2 8s ease-in-out infinite 2s;
}

.hexagon-3 {
    bottom: 0;
    left: 20px;
    animation: hexFloat3 8s ease-in-out infinite 4s;
}

.hexagon-4 {
    bottom: 0;
    right: 20px;
    animation: hexFloat4 8s ease-in-out infinite 6s;
}

@keyframes hexFloat1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes hexFloat2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(-1deg); }
}

@keyframes hexFloat3 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes hexFloat4 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-18px) rotate(-1deg); }
}

.hexagon-content {
    padding: 25px 20px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hexagon-icon {
    width: 50px;
    height: 50px;
    background: rgba(183, 28, 28, 0.1);
    border: 2px solid #B71C1C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #B71C1C;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hexagon-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #B71C1C;
    margin-bottom: 8px;
}

.hexagon-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin: 0;
}

/* Circular Stats */
.circular-stats {
    position: relative;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loyalty-circle {
    position: relative;
    margin-bottom: 40px;
}

.circle-progress {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-circle {
    transition: stroke-dasharray 0.35s;
    transform-origin: 50% 50%;
}

.progress-ring-fill {
    stroke-dasharray: 0 565.48;
    stroke-linecap: round;
    animation: progressFill 2s ease-out forwards;
}

@keyframes progressFill {
    to {
        stroke-dasharray: 508.93 565.48;
    }
}

.circle-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #B71C1C;
}

.counter-number {
    font-size: 3rem;
    font-weight: 900;
    color: #FFEB3B;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

.counter-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFEB3B;
    margin-left: 5px;
}

.counter-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

.loyalty-info {
    text-align: center;
    margin-top: 20px;
}

.loyalty-info i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    display: block;
}

.loyalty-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* Floating Images */
.floating-images {
    position: relative;
    width: 100%;
    height: 200px;
}

.image-float {
    position: absolute;
    width: 120px;
    height: 90px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.image-float:hover {
    transform: scale(1.1) rotate(5deg);
    z-index: 10;
}

.image-float-1 {
    top: 0;
    left: 0;
    animation: imageFloat1 6s ease-in-out infinite;
}

.image-float-2 {
    bottom: 0;
    right: 0;
    animation: imageFloat2 6s ease-in-out infinite 3s;
}

@keyframes imageFloat1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes imageFloat2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(-2deg); }
}

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

.image-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: rgba(183, 28, 28, 0.1);
    border: 2px solid #B71C1C;
    color: #B71C1C;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* Stats Bar */
.stats-bar {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 30px;
    margin-top: 60px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    text-align: center;
    color: #B71C1C;
}




/* Service & Support Section - Enhanced Design */
.service-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
}

.service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(192, 57, 43, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 235, 59, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.service-section .container {
    position: relative;
    z-index: 2;
}

/* Service Image Container - 600x500 Design */
/* Image Section */
.service-image-section {
    padding: 20px 0 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 402px;
}

.service-image-container {
    position: relative;
    padding: 20px 20px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 600px;
}

.service-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    background: linear-gradient(135deg, #C0392B, #8B0000);
    padding: 6px;
    border: 3px solid rgba(192, 57, 43, 0.1);
}

.service-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(183, 28, 28, 0.1), rgba(255, 235, 59, 0.1));
    border-radius: 25px;
    z-index: 1;
}

.service-image-wrapper:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 30px 80px rgba(183, 28, 28, 0.25);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.service-image-wrapper:hover .service-image {
    transform: scale(1.03);
    filter: brightness(1.05) contrast(1.05);
}

/* Service Section Image Overlay */
.service-image-wrapper .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(183, 28, 28, 0.85), rgba(139, 0, 0, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(2px);
    border-radius: 20px;
    z-index: 3;
}

.service-image-wrapper:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: #FFFFFF;
    padding: 30px;
    transform: translateY(25px);
    transition: transform 0.4s ease 0.1s;
}

.service-image-wrapper:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 4.5rem;
    margin-bottom: 20px;
    display: block;
    color: #FFFFFF;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    animation: pulseIcon 2s ease-in-out infinite;
}

.overlay-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.overlay-content p {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    color: #FFFFFF;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 280px;
    margin: 0 auto;
}

/* Service Content */
.service-content {
    padding: 40px 40px 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 400px;
}

.service-header {
    margin-bottom: 30px;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    color: #C0392B;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid #C0392B;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(192, 57, 43, 0.2);
    transition: all 0.3s ease;
}

.service-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(192, 57, 43, 0.3);
}

.service-badge i {
    margin-right: 8px;
    color: #C0392B;
    font-size: 1.1rem;
}

.service-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #C0392B;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.service-subtitle {
    color: #555;
    font-size: 1.2rem;
    line-height: 1.7;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

.service-underline {
    width: 120px;
    height: 4px;
    background: linear-gradient(135deg, #C0392B, #FFEB3B);
    margin: 0 auto 35px;
    border-radius: 2px;
}

.service-description {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-description-top {
    margin-bottom: 30px;
}

.service-description-bottom {
    margin-top: 0;
}

.service-intro {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 500;
}

/* Service Highlights */
.highlight-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #B71C1C;
}

.highlight-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.95);
}

.highlight-icon {
    width: 45px;
    height: 45px;
    background: rgba(183, 28, 28, 0.1);
    border: 2px solid #B71C1C;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon {
    background: rgba(183, 28, 28, 0.2);
    transform: scale(1.1);
}

.highlight-icon i {
    font-size: 1.2rem;
    color: #B71C1C;
}

.highlight-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.highlight-text strong {
    color: #B71C1C;
    font-weight: 700;
}

/* Animations */
@keyframes pulseIcon {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* About Section Buttons */
.about-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    padding: 0 20px;
}

.about-buttons .btn {
    padding: 15px 35px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


/* Content Section */
.service-content-section {
    padding: 20px 20px 20px 0;
}

.service-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.service-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(192, 57, 43, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 120px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #C0392B, #FFEB3B);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(192, 57, 43, 0.2);
    border-color: rgba(192, 57, 43, 0.3);
}

.service-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(192, 57, 43, 0.1);
    border: 2px solid #C0392B;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
    background: rgba(192, 57, 43, 0.2);
    transform: scale(1.1);
}

.service-card-icon i {
    font-size: 1.5rem;
    color: #C0392B;
}

.service-card-content {
    flex: 1;
}

.service-card-content h3 {
    color: #C0392B;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.service-card-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}


/* Products Section - New Modern Layout */
.products-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(192, 57, 43, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 235, 59, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Products Header */
.products-header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 60px;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.products-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), #e74c3c);
    color: #B71C1C;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(192, 57, 43, 0.3);
}

.products-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.products-underline {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #FFEB3B);
    margin: 0 auto 20px;
    border-radius: 2px;
    animation: expand 2s ease-out;
}

.products-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Product Categories */
.product-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid transparent;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #666;
    backdrop-filter: blur(10px);
}

.category-tab:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.category-tab.active {
    background: linear-gradient(135deg, var(--primary-color), #e74c3c);
    color: #B71C1C;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(192, 57, 43, 0.3);
}

.tab-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.category-tab.active .tab-icon {
    background: rgba(255, 255, 255, 0.3);
}

.tab-icon i {
    font-size: 1.1rem;
    color: inherit;
}

/* Product Cards - Modern Grid */


.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(192, 57, 43, 0.05), rgba(255, 235, 59, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.product-card:hover::before {
    opacity: 1;
}

/* Product Image Container */
.product-image-container {
    position: relative;
    overflow: hidden;
    height: 300px;
    background: #f8f9fa;
    border-radius: 15px 15px 0 0;
}

.product-image-main,
.product-image-hover {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    transition: opacity 0.3s ease;
    display: block;
    background: #f8f9fa;
    border: none;
}

/* Image loading state */
.product-image-main:not([src]),
.product-image-hover:not([src]) {
    background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%), 
                linear-gradient(-45deg, #f0f0f0 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, #f0f0f0 75%), 
                linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.product-image-main {
    opacity: 1;
    z-index: 2;
}

.product-image-hover {
    opacity: 0;
    z-index: 1;
}



.product-card:hover .product-image-hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Remove conflicting card-img-top styles for product images */

/* News Section */
.news-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(192, 57, 43, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 235, 59, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* News Header */
.news-header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 60px;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.news-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), #e74c3c);
    color: #B71C1C;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(192, 57, 43, 0.3);
}

.news-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.news-underline {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #FFEB3B);
    margin: 0 auto 20px;
    border-radius: 2px;
    animation: expand 2s ease-out;
}

.news-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* News Cards */
.news-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    position: relative;
    margin-bottom: 30px;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(192, 57, 43, 0.05), rgba(255, 235, 59, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.news-card:hover::before {
    opacity: 1;
}

/* News Read More Button */
.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.news-read-more:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(192, 57, 43, 0.3);
    text-decoration: none;
}

.news-read-more i {
    transition: transform 0.3s ease;
}

.news-read-more:hover i {
    transform: translateX(3px);
}

/* Ensure consistent news content layout */
.news-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-excerpt {
    flex-grow: 1;
    margin-bottom: 20px !important;
}

.news-read-more {
    margin-top: auto !important;
    align-self: flex-start;
}

/* News Image */
.news-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #B71C1C;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(10px);
}

.news-category i {
    font-size: 0.9rem;
}

/* News Content */
.news-content {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #666;
}

.news-date,
.news-author {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-date i,
.news-author i {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.news-headline {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* View All News Button */
.view-all-news-container {
    margin-top: 50px;
}

.view-all-news-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.view-all-news-btn:hover {
    background: var(--primary-color);
    color: #B71C1C;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(192, 57, 43, 0.3);
}

.view-all-news-btn i {
    transition: transform 0.3s ease;
}

.view-all-news-btn:hover i:last-child {
    transform: translateX(3px);
}

/* products new */
.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.product-actions .btn {
    flex: 1;
    min-width: 133px;
    padding: 9px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
}
.product-card .card-body {
    padding: 25px;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card .card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
    min-height: 108px;
}

.product-card .card-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
.nav-link:focus, .nav-link:hover {
    color: #fff !important;
}
/* Read more button styles moved to components.css */

/* View More Button */
.view-more-container {
    margin-top: 50px;
}

.view-more-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.view-more-btn:hover {
    background: var(--primary-color);
    color: #B71C1C;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(192, 57, 43, 0.3);
}

.view-more-btn i {
    transition: transform 0.3s ease;
}

.view-more-btn:hover i {
    transform: translateY(3px);
}

/* No Products State */
.no-products {
    padding: 60px 20px;
    text-align: center;
    color: #666;
}

.no-products i {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 20px;
    display: block;
}

.no-products h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.no-products p {
    font-size: 1rem;
    color: #666;
}

/* Contact Section */
.contact-section {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}



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

.product-card h5 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.product-card p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.product-btn {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.product-btn:hover {
    background-color: #a93226;
    color: #fff;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(192, 57, 43, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 235, 59, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

/* Contact Header */
.contact-header {
    margin-bottom: 50px;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: #B71C1C;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-badge i {
    font-size: 1rem;
}

.contact-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.contact-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #FFEB3B);
    border-radius: 2px;
    margin: 0 auto 25px;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

a.link {
    text-decoration: none;
}
a {
    color: gray;
    text-decoration: none;
}
/* Contact Info Card */
.contact-info-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(192, 57, 43, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #FFEB3B);
}

.contact-info-header {
    margin-bottom: 35px;
    text-align: center;
}

.contact-info-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-header p {
    color: #666;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

/* Contact Info Items */
.contact-info-items {
    margin-bottom: 35px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 15px;
    border: 2px solid rgba(192, 57, 43, 0.05);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-3px);
    background: rgba(248, 249, 250, 1);
    border-color: rgba(192, 57, 43, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(183, 28, 28, 0.1);
    border: 2px solid #B71C1C;
    border-radius: 12px;
    display:inline-flex;
    align-items: center;
    justify-content: center;
    color: #B71C1C;
    font-size: 1.3rem;
    margin-bottom: 10px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(192, 57, 43, 0.3);
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 10px;
}

.contact-details p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
    margin-left: 10px;
}

/* Contact Social */
.contact-social {
    text-align: center;
    padding-top: 25px;
    border-top: 2px solid rgba(192, 57, 43, 0.1);
}

.contact-social h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Social links styles moved to components.css */

/* Contact Form Card */
.contact-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(192, 57, 43, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #FFEB3B);
}

.contact-form-header {
    margin-bottom: 35px;
    text-align: center;
}

.contact-form-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form-header p {
    color: #666;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

/* Contact Form */
.contact-form {
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(192, 57, 43, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    color: #333;
    background: rgba(248, 249, 250, 0.8);
    transition: all 0.3s ease;
    font-weight: 500;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.form-control::placeholder {
    color: #999;
    font-weight: 400;
}

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

/* Form Check */
.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-check-input {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
}

.form-check-label {
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
    margin: 0;
    cursor: pointer;
}

/* Form Submit */
.form-submit {
    text-align: center;
    margin-top: 30px;
}

/* Map Container */
.map-container {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(192, 57, 43, 0.1);
    position: relative;
    overflow: hidden;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #FFEB3B);
}

.map-header {
    text-align: center;
    margin-bottom: 25px;
}

.map-header h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.map-header p {
    color: #666;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* ===========================================
   About Us Page Styles
   =========================================== */

/* Page Header Section */
.page-header-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #d32f2f 100%);
    padding: 20px 0px 30px;
    text-align: center;
    color: #B71C1C;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.page-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 235, 59, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-header-section .container {
    position: relative;
    z-index: 2;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #d32f2f 100%);
    padding: 20px 0px 30px;
    text-align: center;
    color: #B71C1C;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 235, 59, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    color: #B71C1C;
    padding: 12px 28px;
    border-radius: 35px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border: 2px solid #B71C1C;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(183, 28, 28, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.page-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(183, 28, 28, 0.1), transparent);
    transition: left 0.6s ease;
}

.page-badge:hover::before {
    left: 100%;
}

.page-badge:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(183, 28, 28, 0.25);
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F0F0 100%);
    border-color: #8B0000;
}

.page-badge i {
    font-size: 19px;
    color: #B71C1C;
    transition: all 0.3s ease;
}

.page-badge:hover i {
    color: #8B0000;
    transform: scale(1.1);
}

.page-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    color: #C0392B;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.page-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #FFEB3B, rgba(255, 235, 59, 0.7));
    border-radius: 2px;
    margin: 0 auto 25px;
}

.page-subtitle {
    font-size: 1.0rem;
    color: #ffffff;
    line-height: 1.7;
    margin: 0;
    font-weight: 300;
    max-width: 751px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb-section {
    background: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid rgba(192, 57, 43, 0.1);
}

.breadcrumb {
    margin: 0;
    background: none;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: var(--primary-color);
    font-weight: bold;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: #d32f2f;
}

.breadcrumb-item.active {
    color: #666;
    font-weight: 600;
}

/* About Intro Section */
.about-intro-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.about-intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(192, 57, 43, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 235, 59, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.about-intro-section .container {
    position: relative;
    z-index: 2;
}

.about-intro-content {
    padding-right: 40px;
    text-align: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    color: #B71C1C;
    padding: 10px 24px;
    border-radius: 35px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border: 2px solid #B71C1C;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(183, 28, 28, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(183, 28, 28, 0.1), transparent);
    transition: left 0.6s ease;
}

.section-badge:hover::before {
    left: 100%;
}

.section-badge:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(183, 28, 28, 0.25);
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F0F0 100%);
    border-color: #8B0000;
}

.section-badge i {
    font-size: 1.2rem;
    color: #B71C1C;
    transition: all 0.3s ease;
}

.section-badge:hover i {
    color: #8B0000;
    transform: scale(1.1);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.section-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #FFEB3B);
    border-radius: 2px;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 500;
}

.intro-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(192, 57, 43, 0.05);
    transition: all 0.3s ease;
    min-height: 70px;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border-color: rgba(192, 57, 43, 0.1);
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: rgba(183, 28, 28, 0.1);
    border: 2px solid #B71C1C;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B71C1C;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(192, 57, 43, 0.3);
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
    line-height: 1.3;
}

.feature-text p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    font-weight: 600;
}

.about-intro-image {
    position: relative;
    height: 500px;
}

.about-intro-image .image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 3px solid #ffffff;
}

.about-intro-image .about-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-intro-image .image-container:hover .about-main-image {
    transform: scale(1.05);
}

.about-intro-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-intro-image .image-container:hover .image-overlay {
    opacity: 1;
}

.about-intro-image .overlay-content {
    text-align: center;
    color: #B71C1C;
    padding: 20px;
}

.about-intro-image .overlay-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-intro-image .overlay-content p {
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.about-intro-image .floating-stats {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
}

.about-intro-image .stat-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    padding: 3px 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(192, 57, 43, 0.12);
    display: flex;
    align-items: center;
    gap: 3px;
    animation: floatBubble 3s ease-in-out infinite;
    backdrop-filter: blur(4px);
    max-width: 80px;
    min-width: 60px;
    white-space: nowrap;
    overflow: hidden;
}

.about-intro-image .stat-icon {
    width: 20px;
    height: 20px;
    background: rgba(183, 28, 28, 0.1);
    border: 1px solid #B71C1C;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B71C1C;
    font-size: 0.7rem;
    box-shadow: 0 1px 3px rgba(192, 57, 43, 0.12);
    flex-shrink: 0;
}

.about-intro-image .stat-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
    flex: 1;
    overflow: hidden;
}

.about-intro-image .stat-number {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.about-intro-image .stat-label {
    font-size: 0.55rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.about-intro-image .stat-1 {
    top: 15px;
    right: 15px;
    transform: rotate(-2deg);
    --rotation: -2deg;
    animation-delay: 0s;
}

.about-intro-image .stat-2 {
    bottom: 15px;
    left: 15px;
    transform: rotate(1deg);
    --rotation: 1deg;
    animation-delay: 1s;
}

/* What We Do Section */
.what-we-do-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.what-we-do-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(192, 57, 43, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 235, 59, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.what-we-do-card {
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(192, 57, 43, 0.1);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.what-we-do-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(192, 57, 43, 0.15);
    border-color: rgba(192, 57, 43, 0.2);
}

.what-we-do-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #C0392B, #FFEB3B);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 30px 20px 30px;
    background: linear-gradient(135deg, rgba(192, 57, 43, 0.05), rgba(255, 235, 59, 0.05));
    border-bottom: 1px solid rgba(192, 57, 43, 0.1);
}

.header-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #C0392B, #8B0000);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(192, 57, 43, 0.3);
    transition: all 0.3s ease;
}

.what-we-do-card:hover .header-icon {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(192, 57, 43, 0.4);
}

.header-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.header-content h3 {
    color: #C0392B;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.2;
}

.header-content p {
    color: #666;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
    line-height: 1.5;
}

.card-body {
    padding: 30px;
}

.content-text {
    margin-bottom: 30px;
}

.content-text p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
    text-align: justify;
}

.key-points {
    display: block;
   
}

.point-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 15px;
    border: 2px solid rgba(192, 57, 43, 0.05);
    transition: all 0.3s ease;
    min-height: 80px;
    margin-bottom:20px;
    
}

.point-item:hover {
    transform: translateY(-3px);
    background: rgba(248, 249, 250, 1);
    border-color: rgba(192, 57, 43, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.point-icon {
    width: 50px;
    height: 50px;
    background: rgba(192, 57, 43, 0.1);
    border: 2px solid #C0392B;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.point-item:hover .point-icon {
    background: rgba(192, 57, 43, 0.2);
    transform: scale(1.1);
}

.point-icon i {
    font-size: 1.3rem;
    color: #C0392B;
    font-family: "bootstrap-icons" !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.point-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #C0392B;
    margin-bottom: 5px;
    line-height: 1.3;
}

.point-text p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

.what-we-do-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(192, 57, 43, 0.1);
    position: relative;
    overflow: visible;
    max-width: 100%;
    word-wrap: break-word;
}

.what-we-do-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #FFEB3B);
}

.main-description {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-highlights {
    margin-top: 30px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 12px;
    border: 2px solid rgba(192, 57, 43, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 15px;
    min-height: 70px;
    width: 100%;
}

.service-item:hover {
    transform: translateY(-2px);
    background: rgba(248, 249, 250, 1);
    border-color: rgba(192, 57, 43, 0.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 40px;
    height: 40px;
    background: rgba(192, 57, 43, 0.1);
    border: 2px solid #C0392B;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C0392B;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(192, 57, 43, 0.2);
    transition: all 0.3s ease;
}

.service-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-content p {
    color: #666;
    font-size: 0.8rem;
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

/* Partners Section */
.partners-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(192, 57, 43, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 235, 59, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.partners-section .container {
    position: relative;
    z-index: 2;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.partner-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(192, 57, 43, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #FFEB3B);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(192, 57, 43, 0.2);
}

.partner-icon {
    width: 70px;
    height: 70px;
    background: rgba(183, 28, 28, 0.1);
    border: 2px solid #B71C1C;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B71C1C;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(192, 57, 43, 0.3);
}

.partner-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* Supply Section */
.supply-section {
    background: #ffffff;
    position: relative;
}

.supply-image {
    position: relative;
    height: 500px;
}

.supply-image .image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 3px solid #ffffff;
}

.supply-image .supply-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.supply-image .image-container:hover .supply-main-image {
    transform: scale(1.05);
}

.supply-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.supply-image .image-container:hover .image-overlay {
    opacity: 1;
}

.supply-image .overlay-content {
    text-align: center;
    color: #B71C1C;
    padding: 20px;
}

.supply-image .overlay-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.supply-image .overlay-content p {
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.supply-content {
    padding-left: 40px;
}

.supply-items {
    margin-top: 30px;
}

.supply-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 15px;
    border: 2px solid rgba(192, 57, 43, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.supply-item:hover {
    transform: translateY(-3px);
    background: rgba(248, 249, 250, 1);
    border-color: rgba(192, 57, 43, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.supply-icon {
    width: 55px;
    height: 55px;
    background: rgba(183, 28, 28, 0.1);
    border: 2px solid #B71C1C;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B71C1C;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(192, 57, 43, 0.3);
}

.supply-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.supply-text p {
    color: #555;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

/* Strength Section */
.strength-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.strength-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(192, 57, 43, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 235, 59, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.strength-section .container {
    position: relative;
    z-index: 2;
}

.strength-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(192, 57, 43, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.strength-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #FFEB3B);
}

.strength-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(192, 57, 43, 0.2);
}

.strength-icon {
    width: 60px;
    height: 60px;
    background: rgba(183, 28, 28, 0.1);
    border: 2px solid #B71C1C;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B71C1C;
    font-size: 1.6rem;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(192, 57, 43, 0.3);
    font-family: "bootstrap-icons" !important;
}

.strength-icon i {
    font-size: 1.6rem;
    color: #B71C1C;
    transition: all 0.3s ease;
    font-family: "bootstrap-icons" !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.strength-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.strength-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Mission Section */
.mission-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #d32f2f 100%);
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 235, 59, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.mission-section .container {
    position: relative;
    z-index: 2;
}

.coming-soon-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.coming-soon-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B71C1C;
    font-size: 2rem;
    margin: 0 auto 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.coming-soon-card h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #B71C1C;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coming-soon-card p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 500;
}

.progress-indicator {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}

.progress-bar {
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, #FFEB3B, rgba(255, 235, 59, 0.7));
    border-radius: 2px;
    animation: progressAnimation 2s ease-in-out infinite;
}

@keyframes progressAnimation {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(0%); }
}

/* Repeat Business Section */
.repeat-business-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.repeat-business-content {
    padding: 60px 0;
}

.repeat-business-content .main-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}


/* Section Subtitle */
.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.map-container iframe {
    border-radius: 10px;
}

/* ===== Footer Styling ===== */
.footer {
  background-color: #1f1f1f;
  color: #ccc;
  padding: 25px 0 5px;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Footer Titles */
.footer h5 {
  color: #fff;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 16px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #007bff;
  padding-left: 3px;
}

/* Contact Info */
.footer p {
  margin: 5px 0;
    display: flex;
}

.footer p i {
 color: #ffffff;
 margin-right: 6px;
 margin-top: 3px;
}

/* Social Icons */
.footer-social-links {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #333;
  color: #fff;
  border-radius: 50%;
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background-color: #007bff;
  color: #fff;
}

/* Divider Line */
.footer-divider {
  border-color: rgba(255, 255, 255, 0.15);
  margin: 5px 0 2px; /* ✅ Smaller gap */
}

/* Copyright Section */
.footer .copyright {
  color: #999;
  font-size: 14px;
  margin: 2px 0 0; /* ✅ Very tight alignment */
  text-align: center;
}

.footer .copyright a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer .copyright a:hover {
  color: #fff;
}

/* Remove all outer spacing */
body {
  margin: 0;
  padding: 0;
}

footer.footer {
  margin: 0;
  padding-bottom: 0;
}





/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.back-to-top:hover {
    background-color: #a93226;
    transform: translateY(-2px);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.125rem;
    }
    
    .page-title {
        font-size: 1.25rem;
    }
    
    .top-bar-contact {
        font-size: 0.8rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .navbar-nav .nav-link {
        margin: 5px 0;
    }
    
    /* Carousel Mobile */
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
    
    .carousel-indicators {
        bottom: 25px;
    }
    
    .carousel-indicators button {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.25rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .hero-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1rem;
    }
    
    .page-title {
        font-size: 1.125rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    /* Carousel Mobile Small */
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    .carousel-indicators button {
        width: 6px;
        height: 6px;
        margin: 0 2px;
    }
}

/* Loading Animation for Products */
.loading {
    text-align: center;
    padding: 50px 0;
}

.loading i {
    font-size: 2rem;
    color: var(--primary-color);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a93226;
}

/* ===========================================
   Enhanced Icon Colors and Hover Effects
   =========================================== */

/* Icon Hover Effects */
.stat-icon:hover {
    background: rgba(183, 28, 28, 0.2);
    border-color: #8B0000;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.stat-icon:hover i {
    color: #8B0000;
}

.feature-icon:hover {
    background: rgba(183, 28, 28, 0.2);
    border-color: #8B0000;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.feature-icon:hover i {
    color: #8B0000;
}

.service-icon:hover {
    background: rgba(183, 28, 28, 0.2);
    border-color: #8B0000;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.service-icon:hover i {
    color: #8B0000;
}

.partner-icon:hover {
    background: rgba(183, 28, 28, 0.2);
    border-color: #8B0000;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.partner-icon:hover i {
    color: #8B0000;
}

.supply-icon:hover {
    background: rgba(183, 28, 28, 0.2);
    border-color: #8B0000;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.supply-icon:hover i {
    color: #8B0000;
}

.strength-icon:hover {
    background: rgba(183, 28, 28, 0.2);
    border-color: #8B0000;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.strength-icon:hover i {
    color: #8B0000;
}

/* Text Color Improvements */
.feature-text h4,
.service-content h4,
.partner-card h4,
.supply-text h4,
.strength-content h4 {
    color: #B71C1C;
    font-weight: 700;
}

.feature-text p,
.service-content p,
.supply-text p,
.strength-content p {
    color: #555;
    font-weight: 500;
}

/* Fixed Badge and Category Visibility */
.products-badge {
    display: inline-flex;
    align-items: center;
    background: #FFFFFF;
    color: #B71C1C;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #B71C1C;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(183, 28, 28, 0.2);
}

.products-badge i {
    margin-right: 8px;
    color: #B71C1C;
}

.news-badge {
    display: inline-flex;
    align-items: center;
    background: #FFFFFF;
    color: #B71C1C;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #B71C1C;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(183, 28, 28, 0.2);
}

.news-badge i {
    margin-right: 8px;
    color: #B71C1C;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    color: #B71C1C;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #B71C1C;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(183, 28, 28, 0.2);
}

.contact-badge i {
    font-size: 1rem;
    color: #B71C1C;
}

/* Fixed Category Tab Visibility */
.category-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: #FFFFFF;
    border: 2px solid #E0E0E0;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #666;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-tab:hover {
    background: #F8F9FA;
    border-color: #B71C1C;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(183, 28, 28, 0.2);
    color: #B71C1C;
}

.category-tab.active {
    background: #B71C1C;
    color: #FFFFFF;
    border-color: #B71C1C;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(183, 28, 28, 0.3);
}

.category-tab.active .tab-icon {
    background: rgba(255, 255, 255, 0.2);
}

.category-tab.active .tab-icon i {
    color: #FFFFFF;
}

.tab-icon {
    width: 35px;
    height: 35px;
    background: rgba(183, 28, 28, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tab-icon i {
    font-size: 1.1rem;
    color: #B71C1C;
}

.view-more-btn {
    background: transparent;
    border: 2px solid #B71C1C;
    color: #B71C1C;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.view-more-btn:hover {
    background: #B71C1C;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(183, 28, 28, 0.3);
}

.view-all-news-btn {
    background: transparent;
    border: 2px solid #B71C1C;
    color: #B71C1C;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.view-all-news-btn:hover {
    background: #B71C1C;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(183, 28, 28, 0.3);
}

.product-btn {
    background-color: #B71C1C;
    color: #FFFFFF;
    border: 2px solid #B71C1C;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.product-btn:hover {
    background-color: #8B0000;
    border-color: #8B0000;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(183, 28, 28, 0.3);
}

/* Fixed News Category Badge */
.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #B71C1C;
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 3px 10px rgba(183, 28, 28, 0.3);
}

.news-category i {
    font-size: 0.9rem;
    color: #FFFFFF;
}

/* Fixed Header Badge */
.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    color: #B71C1C;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #B71C1C;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(183, 28, 28, 0.2);
}

.header-badge i {
    font-size: 0.9rem;
    color: #B71C1C;
}

/* Fixed Image Badge */
.image-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #B71C1C;
    color: #FFFFFF;
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(183, 28, 28, 0.3);
}

/* Fixed Overlay Badge */
.overlay-badge {
    background: #FFFFFF;
    backdrop-filter: blur(10px);
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #B71C1C;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(183, 28, 28, 0.2);
    border: 2px solid #B71C1C;
}

.overlay-badge i {
    font-size: 1rem;
    color: #B71C1C;
}

/* Stat Card Improvements */
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(183, 28, 28, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: rgba(183, 28, 28, 0.2);
    border-color: #8B0000;
}

.stat-card:hover .stat-icon i {
    color: #8B0000;
}

.stat-card:hover .stat-number {
    color: #8B0000;
}

.stat-card:hover .stat-label {
    color: #8B0000;
}

/* Partner Card Improvements */
.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(183, 28, 28, 0.2);
    transition: all 0.3s ease;
}

.partner-card:hover .partner-icon {
    background: rgba(183, 28, 28, 0.2);
    border-color: #8B0000;
}

.partner-card:hover .partner-icon i {
    color: #8B0000;
}

.partner-card:hover h4 {
    color: #8B0000;
}

/* Strength Card Improvements */
.strength-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(183, 28, 28, 0.2);
    transition: all 0.3s ease;
}

.strength-card:hover .strength-icon {
    background: rgba(183, 28, 28, 0.2);
    border-color: #8B0000;
}

.strength-card:hover .strength-icon i {
    color: #8B0000;
}

.strength-card:hover h4 {
    color: #8B0000;
}

/* Service Item Improvements */
.service-item:hover {
    transform: translateY(-3px);
    background: rgba(248, 249, 250, 1);
    border-color: rgba(183, 28, 28, 0.2);
    box-shadow: 0 8px 25px rgba(183, 28, 28, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    background: rgba(183, 28, 28, 0.2);
    border-color: #8B0000;
}

.service-item:hover .service-icon i {
    color: #8B0000;
}

.service-item:hover h4 {
    color: #8B0000;
}

/* Supply Item Improvements */
.supply-item:hover {
    transform: translateY(-3px);
    background: rgba(248, 249, 250, 1);
    border-color: rgba(183, 28, 28, 0.2);
    box-shadow: 0 8px 25px rgba(183, 28, 28, 0.1);
    transition: all 0.3s ease;
}

.supply-item:hover .supply-icon {
    background: rgba(183, 28, 28, 0.2);
    border-color: #8B0000;
}

.supply-item:hover .supply-icon i {
    color: #8B0000;
}

.supply-item:hover h4 {
    color: #8B0000;
}

/* Feature Item Improvements */
.feature-item:hover {
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: rgba(192, 57, 43, 0.2);
    transform: scale(1.05);
}

.feature-item:hover .feature-icon i {
    color: #8B0000;
}

.feature-item:hover h4 {
    color: #8B0000;
}

/* Stat Number and Label Improvements */
.stat-number {
    color: #B71C1C;
    font-weight: 800;
    font-size: 2.5rem;
}

.stat-label {
    color: #555;
    font-weight: 600;
    font-size: 1rem;
}

/* Section Title Improvements */
.section-title {
    color: #B71C1C;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.page-title {
    color: #FFFFFF;
    font-weight: 800;
    font-size: 2.00rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Section Underline Improvements */
.section-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #B71C1C, #FFEB3B);
    margin: 0 auto 30px;
    border-radius: 2px;
}

.page-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #FFEB3B, #FFFFFF);
    margin: 0 auto 30px;
    border-radius: 2px;
}

/* Social Icon Improvements */
.social-icon {
    transition: all 0.3s ease;
}

/* Duplicated social icon styles removed */

/* Navigation Improvements */
.navbar-nav .nav-link:hover {
    color: #FFEB3B !important;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Button Improvements */

/* ===========================================

   Service & Support Section - Redesigned

   =========================================== */



/* Service Badge - Enhanced Design */
.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    color: #B71C1C;
    padding: 10px 24px;
    border-radius: 35px;
    font-family: var(--font-primary);
    font-weight: normal;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border: 2px solid #B71C1C;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(183, 28, 28, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(183, 28, 28, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-badge:hover::before {
    left: 100%;
}

.service-badge:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(183, 28, 28, 0.25);
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F0F0 100%);
    border-color: #8B0000;
}

.service-badge i {
    font-size: 19px;
    color: #B71C1C;
    transition: all 0.3s ease;
}

.service-badge:hover i {
    color: #8B0000;
    transform: scale(1.1);
}

/* Responsive Page Header Section */
@media (max-width: 768px) {
    .page-header-section {
        padding: 120px 0 60px;
    }
    
    .page-header-section .page-title {
        font-size: 20px;
    }
    
    .page-header-section .page-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .page-header-section {
        padding: 100px 0 50px;
    }
    
    .page-header-section .page-title {
        font-size: 18px;
        letter-spacing: 0.8px;
    }
    
    .page-header-section .page-subtitle {
        font-size: 13px;
    }
}

/* Responsive Badge Design */
@media (max-width: 768px) {
    .page-badge,
    .section-badge,
    .service-badge {
        padding: 8px 18px;
        font-size: 13px;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }
    
    .page-badge i,
    .section-badge i,
    .service-badge i {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .page-badge,
    .section-badge,
    .service-badge {
        padding: 6px 14px;
        font-size: 12px;
        letter-spacing: 0.5px;
        margin-bottom: 12px;
    }
    
    .page-badge i,
    .section-badge i,
    .service-badge i {
        font-size: 13px;
    }
}






/* Services Grid */

.services-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;

    margin-bottom: 40px;

}



.service-card {

    background: #FFFFFF;

    border-radius: 20px;

    padding: 30px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

    border: 2px solid rgba(183, 28, 28, 0.1);

    transition: all 0.3s ease;

    position: relative;

    overflow: hidden;

}



.service-card::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    height: 4px;

    background: linear-gradient(135deg, #B71C1C, #FFEB3B);

    transform: scaleX(0);

    transition: transform 0.3s ease;

}



.service-card:hover::before {

    transform: scaleX(1);

}



.service-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 50px rgba(183, 28, 28, 0.2);

    border-color: rgba(183, 28, 28, 0.3);

}



.service-card-header {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 20px;

}



.service-card .service-icon {

    width: 60px;

    height: 60px;

    background: rgba(183, 28, 28, 0.1);

    border: 2px solid #B71C1C;

    border-radius: 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    transition: all 0.3s ease;

}



.service-card:hover .service-icon {

    background: rgba(183, 28, 28, 0.2);

    transform: scale(1.1);

}



.service-card .service-icon i {

    font-size: 1.5rem;

    color: #B71C1C;

}



.service-card-header h3 {

    color: #B71C1C;

    font-weight: 700;

    font-size: 1.3rem;

    margin: 0;

}



.service-card-body p {

    color: #666;

    font-size: 1rem;

    line-height: 1.6;

    margin-bottom: 20px;

}



.service-features-list {

    list-style: none;

    padding: 0;

    margin: 0;

}



.service-features-list li {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #555;

    font-size: 0.95rem;

    margin-bottom: 8px;

    padding: 5px 0;

}



.service-features-list li i {

    color: #B71C1C;

    font-size: 1rem;

}



/* Service Visual */

.service-visual {

    position: sticky;

    top: 100px;

}



/* Service CTA */

.service-cta {

    background: linear-gradient(135deg, #B71C1C, #8B0000);

    border-radius: 20px;

    padding: 50px;

    text-align: center;

    color: #FFFFFF;

    position: relative;

    overflow: hidden;

}



.service-cta::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');

    opacity: 0.3;

}



.cta-content {

    position: relative;

    z-index: 2;

}



.cta-content h3 {

    font-size: 2.5rem;

    font-weight: 800;

    margin-bottom: 20px;

    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);

}



.cta-content p {

    font-size: 1.2rem;

    margin-bottom: 30px;

    opacity: 0.9;

}






/* Service & Support Page Specific Styles */
.service-support-page .about-intro-section {
    padding: 80px 0;
}

.service-support-page .about-intro-content {
    padding: 20px 40px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 500px;
}

.service-support-page .about-intro-image {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-support-page .intro-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-support-page .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 15px;
    border: 2px solid rgba(192, 57, 43, 0.05);
    transition: all 0.3s ease;
    min-height: 80px;
}

.service-support-page .feature-item:hover {
    transform: translateY(-3px);
    background: rgba(248, 249, 250, 1);
    border-color: rgba(192, 57, 43, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-support-page .feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(192, 57, 43, 0.1);
    border: 2px solid #C0392B;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-support-page .feature-item:hover .feature-icon {
    background: rgba(192, 57, 43, 0.2);
    transform: scale(1.1);
}

.service-support-page .feature-icon i {
    font-size: 1.3rem;
    color: #C0392B;
}

.service-support-page .feature-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #C0392B;
    margin-bottom: 5px;
    line-height: 1.3;
}

.service-support-page .feature-text p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

/* Perfect alignment for alternating sections */
.service-support-page .about-intro-section:nth-child(even) .row {
    flex-direction: row-reverse;
}

.service-support-page .about-intro-section:nth-child(even) .about-intro-content {
    padding: 20px 20px 20px 40px;
}

/* Responsive adjustments for Service & Support page */
@media (max-width: 992px) {
    .service-support-page .about-intro-content {
        padding: 20px;
        min-height: auto;
        margin-bottom: 30px;
    }
    
    .service-support-page .about-intro-image {
        padding: 20px;
    }
    
    .service-support-page .about-intro-section:nth-child(even) .about-intro-content {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .service-support-page .about-intro-section {
        padding: 60px 0;
    }
    
    .service-support-page .intro-features {
        margin-top: 25px;
        gap: 12px;
    }
    
    .service-support-page .feature-item {
        padding: 12px 15px;
        min-height: 70px;
        gap: 12px;
    }
    
    .service-support-page .feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .service-support-page .feature-icon i {
        font-size: 19px;
    }
    
    .service-support-page .feature-text h4 {
        font-size: 16px;
    }
    
    .service-support-page .feature-text p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .service-support-page .about-intro-section {
        padding: 50px 0;
    }
    
    .service-support-page .about-intro-content {
        padding: 15px;
    }
    
    .service-support-page .about-intro-image {
        padding: 15px;
    }
    
    .service-support-page .intro-features {
        margin-top: 20px;
        gap: 10px;
    }
    
    .service-support-page .feature-item {
        padding: 10px 12px;
        min-height: 65px;
        gap: 10px;
    }
    
    .service-support-page .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .service-support-page .feature-icon i {
        font-size: 18px;
    }
    
    .service-support-page .feature-text h4 {
        font-size: 15px;
    }
    
    .service-support-page .feature-text p {
        font-size: 13px;
    }
}

/* ===========================================
   News Page Styles
   =========================================== */

/* Featured News Section */
.featured-news-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.featured-news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(192, 57, 43, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 235, 59, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.featured-news-section .container {
    position: relative;
    z-index: 2;
}

/* Featured News Card */
.featured-news-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(192, 57, 43, 0.05);
    transition: all 0.4s ease;
    margin-top: 30px;
}

.featured-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(192, 57, 43, 0.1);
}

.news-image-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-news-card:hover .news-image {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 12px;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-content {
    padding: 30px;
}

.news-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: normal;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.news-excerpt {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.news-author,
.news-read-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #888;
}

/* News Sidebar */
.news-sidebar {
    padding-left: 30px;
}

.sidebar-section {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(192, 57, 43, 0.05);
}

.sidebar-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: normal;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Quick Updates */
.quick-updates-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-update-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid rgba(192, 57, 43, 0.05);
    transition: all 0.3s ease;
}

.quick-update-item:hover {
    background: #ffffff;
    border-color: rgba(192, 57, 43, 0.1);
    transform: translateY(-2px);
}

.update-icon {
    width: 40px;
    height: 40px;
    background: rgba(192, 57, 43, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.update-icon i {
    font-size: 16px;
    color: var(--primary-color);
}

.update-content h5 {
    font-size: 14px;
    font-weight: normal;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.update-content p {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.update-time {
    font-size: 11px;
    color: #999;
}

/* Newsletter Form */
.newsletter-form {
    text-align: center;
}

.newsletter-form p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.newsletter-signup .form-group {
    margin-bottom: 15px;
}

.newsletter-signup .form-control {
    border: 2px solid #eee;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-signup .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(192, 57, 43, 0.25);
}

/* News Grid Section */
.news-grid-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* News Cards */
.news-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(192, 57, 43, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(192, 57, 43, 0.1);
}

.news-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .card-image {
    transform: scale(1.05);
}

.news-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-card-date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
}

.news-card-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: normal;
    color: var(--secondary-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-card-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.news-card-footer {
    margin-top: auto;
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.news-card-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(192, 57, 43, 0.3);
    text-decoration: none;
}

/* Industry Insights Section */
.industry-insights-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.insight-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(192, 57, 43, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(192, 57, 43, 0.1);
}

.insight-icon {
    width: 60px;
    height: 60px;
    background: rgba(192, 57, 43, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.insight-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.insight-content h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: normal;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.insight-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.insight-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: normal;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.insight-link:hover {
    color: #8B0000;
    transform: translateX(5px);
}

/* Responsive Design for News Page */
@media (max-width: 992px) {
    .news-sidebar {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .featured-news-card {
        margin-top: 20px;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .news-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .featured-news-section {
        padding: 60px 0;
    }
    
    .news-image-container {
        height: 250px;
    }
    
    .news-content {
        padding: 15px;
    }
    
    .news-title {
        font-size: 18px;
    }
    
    .news-excerpt {
        font-size: 14px;
    }
    
    .news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .sidebar-section {
        padding: 20px;
    }
    
    .insight-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .insight-icon {
        align-self: center;
    }
}

@media (max-width: 576px) {
    .featured-news-section {
        padding: 50px 0;
    }
    
    .news-image-container {
        height: 200px;
    }
    
    .news-content {
        padding: 15px;
    }
    
    .news-title {
        font-size: 16px;
    }
    
    .news-excerpt {
        font-size: 13px;
    }
    
    .news-card-content {
        padding: 15px;
    }
    
    .news-card-title {
        font-size: 14px;
    }
    
    .news-card-excerpt {
        font-size: 13px;
    }
    
    .sidebar-section {
        padding: 15px;
    }
    
    .insight-card {
        padding: 15px;
    }
    
    .insight-content h4 {
        font-size: 16px;
    }
    
    .insight-content p {
        font-size: 13px;
    }
}

/* Breadcrumb Section */
.breadcrumb-section {
    background: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #8B0000;
}

.breadcrumb-item.active {
    color: #666;
}

.back-to-news {
    margin-top: 15px;
    text-align: right;
}

.back-to-news .btn {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: normal;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.back-to-news .btn:hover {
    transform: translateX(-3px);
}

/* News Details Section */
.news-details-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.news-details-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(192, 57, 43, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 235, 59, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.news-details-section .container {
    position: relative;
    z-index: 2;
}

/* News Meta Information */
.news-meta-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 20px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(192, 57, 43, 0.05);
}

.news-category-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-publish-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.publish-date,
.publish-author,
.read-time {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #666;
}

/* Featured Image */
.news-featured-image {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-featured-image:hover .featured-image {
    transform: scale(1.02);
}

.image-caption {
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 15px 20px;
    font-size: 14px;
    font-style: italic;
    text-align: center;
}

/* News Content Body */
.news-content-body {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(192, 57, 43, 0.05);
}

.news-intro {
    margin-bottom: 30px;
}

.lead-text {
    font-size: 18px;
    color: #333;
    line-height: 1.7;
    font-weight: normal;
    margin-bottom: 0;
}

.news-paragraph {
    margin-bottom: 30px;
}

.news-paragraph h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: normal;
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-paragraph p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Benefits List */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid rgba(192, 57, 43, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #ffffff;
    border-color: rgba(192, 57, 43, 0.1);
    transform: translateY(-2px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(192, 57, 43, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 20px;
    color: var(--primary-color);
}

.benefit-content h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: normal;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.benefit-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

/* News Quote */
.news-quote {
    background: linear-gradient(135deg, rgba(192, 57, 43, 0.05), rgba(255, 235, 59, 0.05));
    border-left: 4px solid var(--primary-color);
    padding: 30px;
    margin: 40px 0;
    border-radius: 0 15px 15px 0;
}

.quote-content {
    position: relative;
}

.quote-content i {
    font-size: 40px;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: -10px;
}

.quote-content p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 15px;
    padding-left: 30px;
}

.quote-author {
    text-align: right;
    font-size: 14px;
    color: #666;
    padding-left: 30px;
}

/* Social Sharing */
.social-sharing {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.social-sharing h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: normal;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: normal;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.share-btn.facebook {
    background: #1877f2;
    color: #ffffff;
}

.share-btn.twitter {
    background: #1da1f2;
    color: #ffffff;
}

.share-btn.linkedin {
    background: #0077b5;
    color: #ffffff;
}

.share-btn.whatsapp {
    background: #25d366;
    color: #ffffff;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Related News */
.related-news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-news-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid rgba(192, 57, 43, 0.05);
    transition: all 0.3s ease;
}

.related-news-item:hover {
    background: #ffffff;
    border-color: rgba(192, 57, 43, 0.1);
    transform: translateY(-2px);
}

.related-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.related-content h5 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: normal;
    color: var(--secondary-color);
    margin-bottom: 8px;
    line-height: 1.3;
}

.related-content h5 a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-content h5 a:hover {
    color: var(--primary-color);
}

.related-content p {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 8px;
}

.related-date {
    font-size: 11px;
    color: #999;
}

/* Quick Contact Info */
.quick-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: #ffffff;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(192, 57, 43, 0.1);
    height: 50%;
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.contact-item i {
    width: 20px;
    color: var(--primary-color);
}

/* News Navigation */
.news-navigation-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.nav-previous,
.nav-next {
    height: 100%;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    height: 100%;
}

.nav-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(192, 57, 43, 0.1);
}

.nav-icon {
    width: 50px;
    height: 50px;
    background: rgba(192, 57, 43, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-icon i {
    font-size: 20px;
    color: var(--primary-color);
}

.nav-content {
    flex-grow: 1;
}

.nav-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.nav-content h5 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: normal;
    color: var(--secondary-color);
    margin-bottom: 0;
    line-height: 1.3;
}

.nav-next .nav-link {
    flex-direction: row-reverse;
}

/* Responsive Design for News Details */
@media (max-width: 992px) {
    .news-meta-info {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .news-publish-info {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .news-content-body {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .news-details-section {
        padding: 60px 0;
    }
    
    .featured-image {
        height: 300px;
    }
    
    .news-content-body {
        padding: 20px;
    }
    
    .lead-text {
        font-size: 16px;
    }
    
    .news-paragraph h3 {
        font-size: 18px;
    }
    
    .news-paragraph p {
        font-size: 15px;
    }
    
    .benefit-item {
        padding: 15px;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
    }
    
    .benefit-icon i {
        font-size: 16px;
    }
    
    .news-quote {
        padding: 20px;
    }
    
    .quote-content p {
        font-size: 16px;
    }
    
    .sharing-buttons {
        justify-content: center;
    }
    
    .share-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .nav-link {
        padding: 15px;
    }
    
    .nav-icon {
        width: 40px;
        height: 40px;
    }
    
    .nav-icon i {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .news-details-section {
        padding: 50px 0;
    }
    
    .featured-image {
        height: 250px;
    }
    
    .news-content-body {
        padding: 15px;
    }
    
    .lead-text {
        font-size: 15px;
    }
    
    .news-paragraph h3 {
        font-size: 16px;
    }
    
    .news-paragraph p {
        font-size: 14px;
    }
    
    .benefit-item {
        padding: 12px;
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        align-self: center;
    }
    
    .news-quote {
        padding: 15px;
    }
    
    .quote-content p {
        font-size: 15px;
        padding-left: 20px;
    }
    
    .quote-author {
        padding-left: 20px;
    }
    
    .sharing-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        justify-content: center;
    }
    
    .related-news-item {
        flex-direction: column;
        text-align: center;
    }
    
    .related-image {
        align-self: center;
    }
    
    .nav-link {
        padding: 12px;
    }
    
    .nav-content h5 {
        font-size: 13px;
    }
}

/* Responsive Design for Breadcrumb */
@media (max-width: 768px) {
    .back-to-news {
        text-align: center;
        margin-top: 10px;
    }
    
    .back-to-news .btn {
        padding: 6px 16px;
        font-size: 13px;
    }
}

/* Navbar: disable animations and hover */
.main-navbar,
.logo,
.navbar-nav .nav-link,
.dropdown-item,
.navbar-toggler,
.navbar-toggler-icon {
    transition: none !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #FFFFFF !important;
}

.navbar-nav .nav-link::after,
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after {
    display: none !important;
    width: 0 !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: transparent !important;
    color: #FFFFFF !important;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
    background-color: transparent !important;
    box-shadow: none !important;
}

/* Comprehensive Bootstrap Icons Fix */
@font-face {
    font-family: 'bootstrap-icons';
    src: url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/fonts/bootstrap-icons.woff2') format('woff2'),
         url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/fonts/bootstrap-icons.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

/* Force all Bootstrap Icons to display */
.bi, .bi::before, .bi::after {
    font-family: "bootstrap-icons" !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    line-height: 1 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Specific fix for strength icons */
.strength-icon i {
    font-family: "bootstrap-icons" !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 1.6rem !important;
    color: #B71C1C !important;
    content: "\F4C4" !important;
}

/* Fallback for handshake icon */
.strength-icon i.bi-handshake::before {
    content: "\F4C4" !important;
    font-family: "bootstrap-icons" !important;
    font-size: 1.6rem !important;
    color: #B71C1C !important;
}

/* Specific fix for people-fill icon */
.strength-icon i.bi-people-fill {
    font-family: "bootstrap-icons" !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 1.6rem !important;
    color: #B71C1C !important;
}

.strength-icon i.bi-people-fill::before {
    content: "\F4C5" !important;
    font-family: "bootstrap-icons" !important;
    font-size: 1.6rem !important;
    color: #B71C1C !important;
}

/* Specific fix for point-icon cart-check icon */
.point-icon i.bi-cart-check {
    font-family: "bootstrap-icons" !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 1.3rem !important;
    color: #C0392B !important;
}

.point-icon i.bi-cart-check::before {
    content: "\F4C6" !important;
    font-family: "bootstrap-icons" !important;
    font-size: 1.3rem !important;
    color: #C0392B !important;
}

/* Specific fix for Government Contacts handshake icon */
.strength-card:nth-child(2) .strength-icon i,
.strength-card:nth-child(3) .strength-icon i,
.strength-card:nth-child(4) .strength-icon i {
    font-family: "bootstrap-icons" !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 1.6rem !important;
    color: #B71C1C !important;
    content: "\F4C4" !important; /* handshake icon unicode */
}

/* Alternative approach - use content property */
.strength-card:nth-child(2) .strength-icon i::before {
    content: "\F4C4" !important;
    font-family: "bootstrap-icons" !important;
    font-size: 1.6rem !important;
    color: #B71C1C !important;
    display: inline-block !important;
}

/* ===========================================
   Navigation Dropdown Styles
   =========================================== */
.languagePart.mobileLang {
    display: none;
}
.dropdown-toggle-btn {
    background: none;
    border: none;
    color: inherit;
    padding: 0;
    margin-left: 5px;
    font-size: 0.8rem;
}

.nav-item.dropdown {
    display: flex;
    align-items: center;
}

.nav-item.dropdown .nav-link {
    flex: 1;
}

.dropdown-submenu {
    display: flex;
    align-items: center;
}

.dropdown-submenu .dropdown-item {
    flex: 1;
    padding-left: 14px;
}

.dropdown-submenu .dropdown-toggle-btn {
    margin-left: 5px;
}

/* ===========================================
   Carousel Control Styles
   =========================================== */

/* Hide Bootstrap carousel play/pause buttons */
.carousel-control-pause,
.carousel-control-play,
.carousel-play-pause,
.carousel-control-pause-icon,
.carousel-control-play-icon,
button[data-bs-target="#heroCarousel"][aria-label*="play"],
button[data-bs-target="#heroCarousel"][aria-label*="pause"],
button[data-bs-target="#heroCarousel"][title*="play"],
button[data-bs-target="#heroCarousel"][title*="pause"] {
    display: none !important;
}

/* Hide any play/pause controls that might appear */
.carousel-indicators [data-bs-target*="play"],
.carousel-indicators [data-bs-target*="pause"],
.carousel-indicators button[aria-label*="play"],
.carousel-indicators button[aria-label*="pause"] {
    display: none !important;
}

/* Hide any buttons with play/pause icons */
.carousel button[class*="play"],
.carousel button[class*="pause"],
.carousel button i[class*="play"],
.carousel button i[class*="pause"] {
    display: none !important;
}

/* ===========================================
   Products Page Specific Styles
   =========================================== */

/* Ensure Read More buttons are clickable */
.read-more-btn {
    pointer-events: auto !important;
    z-index: 10 !important;
    position: relative;
}

.product-actions {
    position: relative;
    z-index: 10;
}

.product-card {
    position: relative;
    z-index: 1;
}

/* ===========================================
   Product Details Page Specific Styles
   =========================================== */

.product-details-page body {
    background-color: #f4f6fb;
    font-family: 'Poppins', sans-serif;
    color: #1e2a4a;
}

.product-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0d1b3d;
    margin-top: 0;
}

.main-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.main-img:hover {
    transform: scale(1.02);
}

.thumb-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid lightgray;
    cursor: pointer;
    transition: 0.3s;
}

.thumb-img:hover,
.thumb-img.active {
    border: 2px solid #0d6efd;
    transform: scale(1.05);
}

.spec-table th {
    background-color: #e9edf7;
    width: 45%;
    font-weight: 600;
    color: #0d1b3d;
}

.btn-custom {
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-contact {
    background-color: #0d6efd;
    color: #fff;
}

.btn-contact:hover {
    background-color: #084298;
}

.btn-about {
    background-color: #27304f;
    color: #fff;
}

.btn-about:hover {
    background-color: #1a1f36;
}

.social-icons a {
    font-size: 1.4rem;
    margin: 0 10px;
    color: #27304f;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #0d6efd;
}

#lightbox {
    display: none;
    position: fixed;
    z-index: 1050;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

#lightbox:target {
    display: flex;
}

.product-details-page h4, 
.product-details-page h3 {
    color: #0d1b3d;
}
