:root {
    --primary-color: #f7941d;
    /* Orange from logo */
    --secondary-color: #1a1a3d;
    /* Dark blue/purple from logo */
    --accent-color: #007bff;
    --light-bg: #f8f9fa;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

body {
    font-family: 'Cairo', 'Outfit', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
    background-color: white;
}

/* Glassmorphism utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
}

/* Typography Enhancements */
h1,
h2,
h3,
h4 {
    font-weight: 700;
}

/* Header */
.navbar {
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding: 150px 0 100px;
    background: linear-gradient(rgba(26, 26, 61, 0.8), rgba(26, 26, 61, 0.9)), url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.1;
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), #ffb347);
    border: none;
    box-shadow: 0 4px 15px rgba(247, 148, 29, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 148, 29, 0.4);
}

/* Services Cards */
.service-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #eee;
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    opacity: 0.03;
    transition: all 0.4s;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--light-bg);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: white;
}

/* Counter Section */
.counter-box {
    padding: 30px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.counter-value {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

/* Projects */
.project-card {
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

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

.project-img-wrapper img {
    transition: transform 0.5s;
}

.project-card:hover .project-img-wrapper img {
    transform: scale(1.1);
}

/* Contact Form */
.contact-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.form-control {
    border-radius: 12px;
    padding: 12px 20px;
    border: 1px solid #e0e0e0;
}

.form-control:focus {
    box-shadow: 0 0 0 4px rgba(247, 148, 29, 0.1);
    border-color: var(--primary-color);
}

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* Specialized Sections */
.security-section {
    background: var(--secondary-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.security-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.05;
    filter: blur(80px);
}

.support-section {
    background: #fcfcfc;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Enhanced Hero */
.hero-visual-box {
    position: relative;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    backdrop-filter: blur(20px);
}

.hero-glow-point {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    filter: blur(15px);
    animation: flow-glow 4s infinite alternate;
}

@keyframes flow-glow {
    from {
        transform: translate(0, 0);
        opacity: 0.3;
    }

    to {
        transform: translate(50px, 30px);
        opacity: 0.8;
    }
}

/* Animations upgrade */
[data-aos] {
    transition-duration: 800ms !important;
}

/* Section titles */
.section-title {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-title.text-center::after {
    right: 50%;
    transform: translateX(50%);
}