:root {
    --primary-blue: #003366;
    --secondary-blue: #00aeff;
    --cyan: #00d2ff;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --dark-footer: #051a2e;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--white);
    color: var(--primary-blue);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

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

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

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

/* Header */
.main-header {
    background: rgba(255, 255, 255, 0.98);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 28px;
    color: var(--secondary-blue);
}

.logo-text h1 {
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
}

.logo-text span {
    font-size: 11px;
    color: var(--secondary-blue);
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-blue);
}

.nav-call-btn {
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-blue);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1525183995014-bd94c0750cd5?q=80&w=2000') center/cover;
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 51, 102, 0.7), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.badge {
    background: var(--secondary-blue);
    padding: 5px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    display: inline-block;
    font-weight: bold;
    font-size: 14px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.cyan-text {
    color: var(--cyan);
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn-main {
    background: #fff;
    color: var(--primary-blue);
    padding: 15px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s;
}

.btn-wa {
    background: #25d366;
    color: #fff;
    padding: 15px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s;
}

.btn-main:hover,
.btn-wa:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Sections Styling */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.align-center {
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.exp-box {
    background: var(--primary-blue);
    color: #fff;
    padding: 15px 25px;
    border-radius: 15px;
    display: inline-block;
    margin-top: -30px;
    position: relative;
}

.check-list {
    list-style: none;
    margin-top: 20px;
}

.check-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.check-list i {
    color: var(--secondary-blue);
    font-size: 20px;
}

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

.process-item {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
}

.p-num {
    width: 60px;
    height: 60px;
    background: var(--secondary-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-weight: 900;
    font-size: 24px;
}

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

.f-card {
    text-align: center;
    padding: 40px;
    background: var(--light-bg);
    border-radius: 20px;
    transition: 0.3s;
}

.f-card i {
    font-size: 45px;
    color: var(--secondary-blue);
    margin-bottom: 20px;
}

.f-card:hover {
    background: var(--primary-blue);
    color: #fff;
    transform: translateY(-10px);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.faq-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #eee;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s all ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
.footer {
    background: var(--dark-footer);
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer h3 {
    color: var(--secondary-blue);
    margin-bottom: 20px;
}

.footer h4 {
    margin-bottom: 20px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 40px;
    padding-top: 20px;
    font-size: 13px;
    color: #666;
}

/* Floating Buttons */
.floating-actions {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 3000;
}

.float-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.whatsapp {
    background: #25d366;
}

.phone {
    background: var(--secondary-blue);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Mobile Menu */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 100px 30px;
        transition: 0.4s;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }
}

@media (max-width: 768px) {

    .grid-2,
    .footer-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-btns {
        flex-direction: column;
        padding: 0 20px;
    }
}

.badge-glow {
    background: rgba(0, 174, 255, 0.2);
    border: 2px solid var(--secondary-blue);
    color: #fff;
    padding: 8px 25px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    margin-bottom: 25px;
    box-shadow: 0 0 15px rgba(0, 174, 255, 0.5);
    animation: neonBreath 2s infinite ease-in-out;
}

@keyframes neonBreath {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(0, 174, 255, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 25px rgba(0, 174, 255, 0.8);
        transform: scale(1.05);
    }
}

.dot-pulse {
    width: 10px;
    height: 10px;
    background: #39ff14;
    border-radius: 50%;
    position: relative;
}

.dot-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #39ff14;
    border-radius: 50%;
    animation: dotRipple 1.5s infinite;
}

@keyframes dotRipple {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.stats-section {
    background: var(--primary-blue);
    color: white;
    padding: 40px 0;
    margin-top: -50px;
    position: relative;
    z-index: 100;
    border-radius: 20px 20px 0 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.stat-item h3 {
    font-size: 35px;
    color: var(--accent-cyan);
    font-weight: 900;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.use-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #eee;
    transition: 0.3s;
    text-align: center;
}

.use-card i {
    font-size: 40px;
    color: var(--secondary-blue);
    margin-bottom: 15px;
}

.use-card:hover {
    border-color: var(--secondary-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.areas-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.areas-flex span {
    background: #fff;
    border: 1px solid var(--secondary-blue);
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s;
}

.areas-flex span:hover {
    background: var(--secondary-blue);
    color: #fff;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.mobile-only-item {
    display: none;
}

.desktop-only-btn {
    display: flex !important;
    align-items: center;
    gap: 8px;
    background: var(--primary-blue);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
}

@media (max-width: 768px) {
    
    .desktop-only-btn {
        display: none !important;
    }

    .mobile-only-item {
        display: block !important;
        margin-top: 20px; 
    }

    .nav-call-btn-mobile {
        background: var(--secondary-blue) !important;
        color: white !important;
        text-align: center;
        padding: 15px !important;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-weight: 800;
        box-shadow: 0 4px 15px rgba(0, 174, 255, 0.2);
    }

   
}
.seo-detailed-section {
    background-color: #f4f8fb; 
}

.seo-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 5px solid #007bff; 
}

.seo-header {
    margin-bottom: 30px;
    text-align: center;
}

.seo-badge {
    display: inline-block;
    background: #e7f1ff;
    color: #007bff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.seo-header h2 {
    font-size: 28px;
    color: #333;
}

.seo-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

.seo-text-block p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    font-size: 17px;
}

.highlight {
    color: #007bff;
    font-weight: 700;
}

.seo-features-mini {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 15px;
}

.mini-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
}

.mini-feature:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.mini-feature i {
    color: #007bff;
    font-size: 20px;
}

.mini-feature span {
    font-size: 15px;
    font-weight: 600;
    color: #444;
}

.seo-footer-text {
    margin-top: 20px;
    padding-top: 25px;
    border-top: 1px solid #eee;
    text-align: center;
}

.btn-outline-call {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    border: 2px solid #007bff;
    color: #007bff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-outline-call:hover {
    background: #007bff;
    color: #fff;
}

@media (max-width: 768px) {
    .seo-content-grid {
        grid-template-columns: 1fr;
    }
    
    .seo-card {
        padding: 20px;
    }

    .seo-header h2 {
        font-size: 22px;
    }
}
.main-footer {
    background-color: #0b1622; 
    color: #fff;
    padding-top: 60px;
    margin-top: 50px;
    border-top: 4px solid #007bff;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 30px;
    color: #00d4ff;
}

.footer-logo h3 {
    font-size: 24px;
    font-weight: 900;
}

.about-col p {
    line-height: 1.8;
    color: #abb8c3;
    font-size: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: #1d2b3a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
}

.social-links a:hover {
    background: #007bff;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: #007bff;
}

.links-col ul {
    list-style: none;
    padding: 0;
}

.links-col ul li {
    margin-bottom: 12px;
}

.links-col ul li a {
    color: #abb8c3;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.links-col ul li a i {
    font-size: 10px;
    margin-left: 5px;
}

.links-col ul li a:hover {
    color: #00d4ff;
    padding-right: 5px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #abb8c3;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.contact-item i {
    color: #00d4ff;
    font-size: 18px;
}

.contact-item:hover {
    color: #fff;
}

.footer-bottom {
    background: #060e16;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #7d8a95;
}

.gmt-credit a {
    color: #ffc107;
    text-decoration: none;
    font-weight: bold;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo, .social-links, .footer-col h4::after {
        justify-content: center;
        right: 50%;
        transform: translateX(50%);
    }

    .contact-item {
        justify-content: center;
    }

    .bottom-flex {
        flex-direction: column;
        gap: 10px;
    }
}
