/* MARDON AI CyberTech - Modern Professional Styling */

/* ===== CSS Variables ===== */
:root {
    --primary-red: #C41E3A;
    --dark-bg: #1a1a1a;
    --darker-bg: #0d0d0d;
    --light-text: #ffffff;
    --gray-text: #b0b0b0;
    --accent-green: #00ff88;
    --accent-gold: #d4af37;
    --card-bg: #252525;
    --border-color: #333;
    --shadow: rgba(196, 30, 58, 0.3);
}

/* ===== Global Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* ===== Navigation ===== */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

#navbar.scrolled {
    background: rgba(13, 13, 13, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

#navbar .logo img {
    height: 75px;
    width: auto;
    max-width: none;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--light-text);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-nav {
    background: var(--primary-red);
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
}

.cta-nav:hover {
    background: #a01830;
    color: var(--light-text);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--light-text);
    transition: all 0.3s ease;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 110px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(196, 30, 58, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(196, 30, 58, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: var(--primary-red);
}

.highlight-green {
    color: var(--accent-green);
}

.hero-subtitle {
    font-size: 24px;
    color: var(--gray-text);
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-description {
    font-size: 18px;
    color: var(--gray-text);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--light-text);
}

.btn-primary:hover {
    background: #a01830;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.hero-image img {
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 24px;
    color: var(--primary-red);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== Section Styles ===== */
section {
    padding: 100px 0;
    position: relative;
}

/* Section divider - decorative element between sections */
section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(196, 30, 58, 0.3) 50%,
        transparent
    );
}

/* Remove divider from last sections */
.cta-section::after,
.footer::after {
    display: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--gray-text);
}

/* ===== Problem Section ===== */
.problem-section {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

/* Custom geometric pattern background for Problem section */
.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(30deg, rgba(196, 30, 58, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(196, 30, 58, 0.03) 87.5%, rgba(196, 30, 58, 0.03)),
        linear-gradient(150deg, rgba(196, 30, 58, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(196, 30, 58, 0.03) 87.5%, rgba(196, 30, 58, 0.03)),
        linear-gradient(30deg, rgba(196, 30, 58, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(196, 30, 58, 0.03) 87.5%, rgba(196, 30, 58, 0.03)),
        linear-gradient(150deg, rgba(196, 30, 58, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(196, 30, 58, 0.03) 87.5%, rgba(196, 30, 58, 0.03));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    z-index: 0;
    opacity: 0.5;
}

.problem-section .container {
    position: relative;
    z-index: 1;
}

/* Side-by-side layout: image + cards */
.problem-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.problem-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(196, 30, 58, 0.3);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Circuit board pattern for problem cards */
.problem-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, transparent 30%, rgba(196, 30, 58, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
    z-index: -1;
}

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

.problem-card {
    background: var(--card-bg);
    padding: 25px 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Animated corner accent */
.problem-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 30px 30px 0;
    border-color: transparent var(--primary-red) transparent transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.problem-card:hover::after {
    opacity: 0.3;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px var(--shadow);
}

.problem-card.highlight-card {
    border-color: var(--primary-red);
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, var(--card-bg) 100%);
}

.problem-icon {
    font-size: 36px;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.problem-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 700;
}

.problem-card p {
    color: var(--gray-text);
    line-height: 1.6;
    font-size: 14px;
}

/* ===== Solution Section ===== */
.solution-section {
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

/* Diagonal stripe pattern for Solution section */
.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 100px,
        rgba(0, 255, 136, 0.02) 100px,
        rgba(0, 255, 136, 0.02) 200px
    );
    z-index: 0;
}

.solution-section .container {
    position: relative;
    z-index: 1;
}

/* Glowing effect on solution benefits */
.benefit-item i {
    position: relative;
}

.benefit-item i::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-item:hover i::before {
    opacity: 1;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-image img {
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.solution-text h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.solution-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--gray-text);
}

.solution-description {
    font-size: 18px;
    color: var(--gray-text);
    margin-bottom: 30px;
    line-height: 1.8;
}

.solution-benefits {
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.benefit-item i {
    color: var(--accent-green);
    font-size: 24px;
    flex-shrink: 0;
}

.benefit-item strong {
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

.benefit-item p {
    color: var(--gray-text);
}

/* ===== Services Section ===== */
.services-section {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

/* Hexagon pattern background for Services section */
.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(196, 30, 58, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 10px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Animated gradient line on top */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    transition: left 0.5s ease;
}

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

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px var(--shadow);
}

.service-card.featured {
    border-color: var(--primary-red);
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, var(--card-bg) 100%);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-red);
    color: var(--light-text);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.service-icon.cio {
    background: rgba(100, 149, 237, 0.2);
    color: #6495ED;
}

.service-icon.ciso {
    background: rgba(196, 30, 58, 0.2);
    color: var(--primary-red);
}

.service-icon.cto {
    background: rgba(255, 193, 7, 0.2);
    color: #FFC107;
}

.service-icon.pm {
    background: rgba(138, 43, 226, 0.2);
    color: #8A2BE2;
}

.service-image {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 10px;
    font-weight: 700;
}

.service-card h4 {
    font-size: 16px;
    color: var(--gray-text);
    margin-bottom: 25px;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 10px 0;
    color: var(--gray-text);
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.service-list i {
    color: var(--primary-red);
    margin-top: 3px;
    flex-shrink: 0;
}

/* ===== Combined Services ===== */
.combined-services {
    background: var(--darker-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--accent-gold);
    margin-top: 60px;
}

.combined-header img {
    width: 100%;
    height: auto;
    display: block;
}

.combined-content {
    padding: 40px;
    text-align: center;
}

.combined-description {
    font-size: 18px;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Benefits Section ===== */
.benefits-section {
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

/* Grid pattern background for Benefits section */
.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(196, 30, 58, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(196, 30, 58, 0.05) 1px, transparent 1px);
    background-size: 100px 100px;
    z-index: 0;
}

.benefits-section .container {
    position: relative;
    z-index: 1;
}

.benefits-image {
    max-width: 600px;
    margin: 0 auto;
}

.benefits-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(196, 30, 58, 0.3);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Pulse effect on hover */
.benefit-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.benefit-card:hover::before {
    width: 300px;
    height: 300px;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px var(--shadow);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(196, 30, 58, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--primary-red);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

/* Rotating ring effect */
.benefit-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon::after {
    opacity: 0.5;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-card p {
    color: var(--gray-text);
    line-height: 1.7;
}

/* ===== ROI Section ===== */
.roi-section {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

/* Radial gradient pattern for ROI section */
.roi-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 136, 0.05) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px;
    z-index: 0;
}

.roi-section .container {
    position: relative;
    z-index: 1;
}

.roi-image {
    max-width: 600px;
    margin: 0 auto 50px;
}

.roi-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.3);
}

.roi-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.roi-stat-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.roi-stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.roi-stat-card h3 {
    font-size: 24px;
    color: var(--accent-green);
    margin-bottom: 15px;
    font-weight: 800;
}

.roi-stat-card p {
    color: var(--gray-text);
    line-height: 1.7;
    font-size: 16px;
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.roi-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Shine effect on hover */
.roi-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(0, 255, 136, 0.1) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.roi-card:hover::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.roi-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.roi-icon {
    font-size: 48px;
    color: var(--accent-green);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    z-index: 1;
}

/* Glow effect */
.roi-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.roi-card:hover .roi-icon::before {
    opacity: 1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.roi-stat {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-green);
    margin-bottom: 15px;
}

.roi-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.roi-card p {
    color: var(--gray-text);
    line-height: 1.7;
}

.roi-additional {
    background: var(--darker-bg);
    padding: 50px 40px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.roi-additional h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 800;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.value-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.value-item i {
    color: var(--accent-green);
    font-size: 20px;
    margin-top: 3px;
    flex-shrink: 0;
}

.value-item span {
    color: var(--gray-text);
    font-size: 16px;
    line-height: 1.6;
}

.value-item strong {
    color: var(--light-text);
    font-weight: 700;
}

/* ===== About Section ===== */
.about-section {
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

/* Subtle wave pattern for About section */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(196, 30, 58, 0.02) 50px,
            rgba(196, 30, 58, 0.02) 51px
        );
    z-index: 0;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.about-text .title {
    color: var(--primary-red);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-text .description {
    font-size: 18px;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 30px;
}

.credentials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.credential-item {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 15px;
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Slide in effect on hover */
.credential-item::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(196, 30, 58, 0.1), transparent);
    transition: left 0.5s ease;
}

.credential-item:hover::before {
    left: 100%;
}

.credential-item:hover {
    transform: translateX(5px);
    border-color: var(--primary-red);
}

.credential-item i {
    color: var(--primary-red);
    font-size: 24px;
}

.credential-item span {
    font-size: 14px;
    font-weight: 600;
}

.location {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 16px;
    color: var(--gray-text);
}

.location i {
    color: var(--primary-red);
}

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

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, #8B1529 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-tagline {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--accent-green);
}

.cta-description {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.contact-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.contact-options .btn-primary {
    background: var(--darker-bg);
}

.contact-options .btn-primary:hover {
    background: var(--dark-bg);
}

.contact-options .btn-secondary {
    border-color: var(--light-text);
}

.contact-options .btn-secondary:hover {
    background: var(--light-text);
    color: var(--primary-red);
}

.social-links {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.social-link {
    font-size: 18px;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 5px;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ===== Footer ===== */
.footer {
    background: var(--darker-bg);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 75px;
    width: auto;
    max-width: none;
    margin-bottom: 15px;
}

.footer-logo p {
    color: var(--gray-text);
    font-size: 14px;
}

.footer-links h4 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: var(--gray-text);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-red);
}

.footer-contact h4 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
}

.footer-contact p {
    color: var(--gray-text);
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-contact i {
    color: var(--primary-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--gray-text);
    font-size: 14px;
    margin-bottom: 5px;
}

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .problem-content {
        grid-template-columns: 1fr;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .credentials {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    #navbar .logo img {
        height: 60px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--darker-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .social-links {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}
