/* ============================================
   SAFHAT ALIMDAD - MAIN STYLESHEET
   Navy/Dark Blue Theme matching brand identity
   ============================================ */

/* CSS Variables - Navy/Dark Blue Theme */
:root {
    --primary: #1a3a5c;
    --primary-dark: #0f2744;
    --primary-light: #2a5a8a;
    --accent: #1e6f9e;
    --accent-light: #3a9bd4;
    --accent-gold: #c9a84c;
    --accent-gold-light: #e0c06e;
    --dark: #0a1929;
    --dark-light: #122a42;
    --text: #1a2a3a;
    --text-light: #4a5a6a;
    --text-muted: #7a8a9a;
    --white: #ffffff;
    --light-bg: #f0f4f8;
    --border: #d0d8e0;
    --shadow: 0 4px 20px rgba(10, 25, 41, 0.08);
    --shadow-lg: 0 10px 40px rgba(10, 25, 41, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* Utility Classes */
.text-accent { color: var(--accent-light) !important; }
.bg-accent { background-color: var(--accent) !important; }
.z-2 { z-index: 2; position: relative; }

/* ============================================
   NAVIGATION
   ============================================ */
#mainNav {
    padding: 0.75rem 0;
    transition: var(--transition);
    background: transparent;
    z-index: 1030;
}

#mainNav.scrolled {
    background: rgba(10, 25, 41, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
    padding: 0.5rem 0;
}

#mainNav .navbar-brand {
    padding: 0;
}

.logo-img {
    height: 55px;
    width: auto;
    transition: var(--transition);
    filter: brightness(1.1);
}

#mainNav.scrolled .logo-img {
    height: 45px;
}

#mainNav .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition);
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
    color: var(--white) !important;
}

#mainNav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after {
    transform: scaleX(1);
}

#mainNav .btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
}

#mainNav .btn-primary:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-2px);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

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

.navbar-toggler i {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

/* When menu is open, ensure navbar stays dark */
#mainNav.scrolled,
#mainNav:has(.navbar-collapse.show) {
    background: rgba(10, 25, 41, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
    padding: 0.5rem 0;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../img/hero-bg.jpeg') center center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(10, 25, 41, 0.92) 0%, 
        rgba(15, 39, 68, 0.85) 40%,
        rgba(26, 58, 92, 0.75) 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(30, 111, 158, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201, 168, 76, 0.1) 0%, transparent 50%);
}

.hero-content {
    padding-top: 80px;
    position: relative;
    z-index: 2;
}

.badge-wrapper .badge {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    background: rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    color: var(--white) !important;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-title .text-accent {
    color: var(--accent-gold-light) !important;
    text-shadow: 0 0 40px rgba(201, 168, 76, 0.3);
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 600px;
    color: rgba(255,255,255,0.8);
}

.hero-buttons .btn {
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-buttons .btn-primary {
    background: var(--accent);
    border-color: var(--accent);
}

.hero-buttons .btn-primary:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
}

.hero-stats {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-gold-light);
    margin-bottom: 0.25rem;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Device */
.hero-device {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.device-float {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.device-img {
    max-height: 450px;
    width: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
    border-radius: var(--radius-lg);
}

.device-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(30, 111, 158, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
    z-index: -1;
}

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

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition);
}

.scroll-link:hover {
    color: var(--white);
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid currentColor;
    border-radius: 20px;
    position: relative;
    margin-bottom: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: currentColor;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s ease-in-out infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.categories-section {
    padding: 5rem 0;
    background: var(--white);
}

.category-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.category-icon {
    padding: 2rem;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    text-align: center;
    min-height: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.category-img {
    max-height: 160px;
    width: auto;
    transition: var(--transition);
    object-fit: cover;
}

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

.category-content {
    padding: 1.5rem;
}

.category-label {
    display: block;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.category-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.category-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.category-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.category-link:hover {
    color: var(--accent);
    gap: 0.75rem;
}

/* ============================================
   WHY SECTION
   ============================================ */
.why-section {
    padding: 5rem 0;
}

.why-content {
    padding-right: 2rem;
}

.features-grid {
    margin-top: 2rem;
}

.feature-item {
    padding: 1.25rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 1.25rem;
}

.feature-item h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--dark);
}

/* Why Image Wrapper */
.why-image-wrapper {
    position: relative;
    padding: 2rem;
}

.image-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.main-image {
    position: relative;
    z-index: 2;
}

.main-image img {
    width: 100%;
    display: block;
    border-radius: var(--radius-lg);
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    animation: float 5s ease-in-out infinite;
    border: 1px solid var(--border);
}

.card-1 {
    top: 10%;
    right: 0;
    animation-delay: 0s;
}

.card-2 {
    bottom: 15%;
    left: -10%;
    animation-delay: 2.5s;
}

.floating-content i {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
    padding: 5rem 0;
    background: var(--white);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.product-card.featured {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(30, 111, 158, 0.15);
}

.product-image {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    text-align: center;
    min-height: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    max-height: 200px;
    width: auto;
    transition: var(--transition);
    object-fit: contain;
}

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

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.bg-warning {
    background: var(--accent-gold) !important;
    color: var(--dark);
}

.product-badge.bg-success {
    background: var(--accent) !important;
}

.product-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.product-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex: 1;
}

.product-uses {
    margin-bottom: 1.5rem;
}

.product-uses li {
    padding: 0.35rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-uses li i {
    color: var(--accent);
    font-size: 1rem;
}

.product-content .btn {
    margin-top: auto;
    font-weight: 600;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/hero-bg.jpeg') center center / cover no-repeat;
    opacity: 0.05;
}

.service-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
    height: 100%;
    position: relative;
    z-index: 1;
}

.service-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(30, 111, 158, 0.3);
}

.service-icon img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.service-title {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.service-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
    padding: 5rem 0;
    background: var(--white);
}

.benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(30, 111, 158, 0.2);
}

.benefit-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--dark);
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
    padding: 5rem 0;
}

.process-timeline {
    position: relative;
}

.process-line {
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    z-index: 0;
    display: none;
}

@media (min-width: 992px) {
    .process-line {
        display: block;
    }
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    background: var(--white);
    border: 2px solid var(--accent);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(30, 111, 158, 0.2);
}

.process-step h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--dark);
}

.process-step p {
    color: var(--text-light);
    max-width: 200px;
    margin: 0 auto;
}

/* Custom 5-column grid */
.col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
}

@media (max-width: 991.98px) {
    .col-lg-2-4 {
        width: 33.333333%;
    }
}

@media (max-width: 575.98px) {
    .col-lg-2-4 {
        width: 50%;
    }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.stars {
    color: var(--accent-gold);
    font-size: 1.5rem;
    letter-spacing: 4px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-image {
    height: 200px;
    overflow: hidden;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.testimonial-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-category {
    display: inline-block;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.testimonial-content blockquote {
    font-style: italic;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    border-left: 3px solid var(--accent);
    padding-left: 1rem;
    flex: 1;
}

.testimonial-author {
    font-size: 0.9rem;
    color: var(--text-light);
}

.testimonial-author strong {
    color: var(--dark);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a1929 0%, #122a42 100%);
    overflow: hidden;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/hero-bg.jpeg') center center / cover no-repeat;
    opacity: 0.05;
}

.about-images {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-main {
    position: relative;
    z-index: 3;
    max-width: 280px;
}

.about-image-main img {
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
    border-radius: var(--radius-lg);
}

.about-image-secondary {
    position: absolute;
    top: 10%;
    right: 10%;
    z-index: 2;
    max-width: 220px;
    opacity: 0.7;
    transform: rotate(5deg);
}

.about-image-tertiary {
    position: absolute;
    bottom: 10%;
    left: 5%;
    z-index: 1;
    max-width: 200px;
    opacity: 0.5;
    transform: rotate(-5deg);
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-content .lead {
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
}

.about-content p {
    color: rgba(255,255,255,0.7);
}

.about-cta .btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    font-weight: 600;
}

.about-cta .btn-primary:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
}

/* ============================================
   PARTNERS SECTION
   ============================================ */
.partners-section {
    padding: 3rem 0;
    background: var(--light-bg);
    overflow: hidden;
}

.partners-swiper {
    padding: 1rem 0;
}

.partner-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.partner-slide img {
    max-height: 80px;
    max-width: 150px;
    width: auto;
    object-fit: contain;
    filter: grayscale(40%) opacity(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-slide:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* ============================================
   NEWS SECTION
   ============================================ */
.news-section {
    padding: 5rem 0;
    background: var(--white);
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--light-bg);
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.news-date {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--accent);
    color: var(--white);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.news-content {
    padding: 1.5rem;
}

.news-content h4 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.news-content h4 a {
    color: var(--dark);
}

.news-content h4 a:hover {
    color: var(--accent);
}

.news-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    color: var(--accent);
    gap: 0.75rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 3rem 0;
    background: var(--light-bg);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/hero-bg.jpeg') center center / cover no-repeat;
    opacity: 0.1;
}

.cta-title {
    color: var(--white);
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    color: rgba(255,255,255,0.85);
    position: relative;
    z-index: 1;
}

.cta-buttons {
    position: relative;
    z-index: 1;
}

.cta-buttons .btn {
    font-weight: 600;
    transition: var(--transition);
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark) !important;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/hero-bg.jpeg') center center / cover no-repeat;
    opacity: 0.03;
}

.footer-brand {
    max-width: 300px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    max-height: 55px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 1;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
    position: relative;
    z-index: 1;
}

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

.footer-contact li {
    margin-bottom: 0.75rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

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

.footer-bottom {
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
}

/* ============================================
   BANNER CONTEXT SECTION (NEW)
   ============================================ */
.banner-context-section {
    padding: 0;
    background: var(--white);
}

.banner-context-section img {
    width: 100%;
    display: block;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content {
        padding-top: 100px;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

    .why-content {
        padding-right: 0;
        text-align: center;
    }

    .features-grid {
        max-width: 500px;
        margin: 2rem auto 0;
    }

    .about-images {
        height: 350px;
        margin-bottom: 2rem;
    }

    .about-image-main {
        max-width: 220px;
    }

    .about-image-secondary {
        max-width: 180px;
    }

    .about-image-tertiary {
        max-width: 160px;
    }

    .floating-card {
        display: none;
    }
.navbar-collapse {
 
    height: 100vh;
}
   
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .category-card,
    .product-card,
    .testimonial-card,
    .news-card {
        margin-bottom: 1rem;
    }

    .process-line {
        display: none !important;
    }

    .process-step {
        margin-bottom: 2rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .footer-brand {
        text-align: center;
        margin-bottom: 2rem;
    }

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

    .logo-img {
        height: 45px;
    }
      .partner-slide {
        height: 70px;
    }
    .partner-slide img {
        max-height: 60px;
        max-width: 120px;
    }
}

@media (max-width: 575.98px) {
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-right: 0 !important;
    }

    .hero-stats .col-4 {
        padding: 0 5px;
    }

    .stat-label {
        font-size: 0.7rem;
    }
.feature-icon {
    margin-inline: auto;
}
    .partner-slide {
        height: 60px;
    }
    .partner-slide img {
        max-height: 60px;
        max-width: 100px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
} */

/* Smooth scroll offset for fixed nav */
html {
    scroll-padding-top: 80px;
}

/* Selection color */
::selection {
    background: var(--accent);
    color: var(--white);
}

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

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}
