:root {
    --primary: #0066ff;
    --secondary: #00d2ff;
    --text: #1d1d1f;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    background: #f8fbff;
    color: var(--text);
    overflow-x: hidden;
}

.main-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(120deg, #a8c6e6 0%, #e5e4e4 100%);
}

.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, rgba(0, 210, 255, 0.05) 50%, transparent 70%);
    filter: blur(60px);
    border-radius: 50%;
    animation: move 20s infinite alternate;
}

.blob:nth-child(1) { top: -10%; left: -10%; animation-duration: 25s; }
.blob:nth-child(2) { bottom: -10%; right: -10%; animation-duration: 30s; animation-delay: -5s; }
.blob:nth-child(3) { top: 40%; left: 30%; width: 400px; height: 400px; animation-duration: 15s; }

@keyframes move {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    100% { transform: translate(200px, 100px) scale(1.2) rotate(360deg); }
}
.navbar {
    position: fixed;
    top: 20px; left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    background: var(--glass);
    backdrop-filter: blur(15px);
    padding: 5px 10px;
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 35px rgba(0, 102, 255, 0.08);
}

.logo { display: flex; align-items: center; gap: 5px; }
.logo-img 
{ height: 70px; 
    width: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 102, 255, 0.2)); 
    transition: transform 0.3s ease;
    cursor: pointer;
 }
.logo-img:hover {
    transform: scale(1.1) rotate(-5deg);
}
.brand { font-weight: 900; font-size: 2rem; color: #003366; }
.blue { color: var(--primary); }

.nav-links { display: flex; list-style: none; gap: 25px; }
.nav-links a {
    text-decoration: none; color: #555;
    font-weight: 700; transition: 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }

.nav-call {
    background: var(--primary);
    color: white; padding: 10px 20px;
    border-radius: 50px; text-decoration: none;
    font-weight: 800; transition: 0.3s;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}

.nav-call:hover { transform: scale(1.05); }
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content { max-width: 900px; }

.badge {
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    margin-bottom: 25px;
    display: inline-block;
}

.hero h1 {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 900;
    color: #002244;
    margin-bottom: 20px;
}

.cursor { color: var(--primary); animation: blink 0.7s infinite; }
@keyframes blink { 50% { opacity: 0; } }

.hero-p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.text-glow {
    color: var(--primary);
    font-weight: 900;
}

.hero-btns {
    display: flex; gap: 20px; justify-content: center;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white; padding: 18px 45px;
    border-radius: 100px; text-decoration: none;
    font-weight: 900; transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--primary); padding: 18px 45px;
    border-radius: 100px; text-decoration: none;
    font-weight: 900; transition: 0.4s;
    border: 2px solid #eee;
}

.btn-primary:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0, 102, 255, 0.5); }
.btn-secondary:hover { border-color: var(--primary); }

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

.toggle-btn span {
    width: 28px; height: 3px; background: var(--primary);
    border-radius: 5px; transition: 0.4s;
}

.mobile-nav {
    position: fixed;
    top: -100%; left: 0; width: 100%;
    z-index: 999; transition: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex; justify-content: center; padding-top: 100px;
}

.mobile-nav.active { top: 0; }

.nav-card {
    background: white;
    width: 85%; max-width: 350px;
    padding: 30px; border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
    text-align: center; display: flex; flex-direction: column; gap: 20px;
}

.nav-card a {
    text-decoration: none; color: #333; font-weight: 800; font-size: 1.2rem;
}

.btn-card-call {
    background: var(--primary) !important; color: white !important;
    padding: 15px; border-radius: 15px; display: block;
}

@media (max-width: 992px) {
    .nav-links, .nav-call { display: none; }
    .toggle-btn { display: flex; }
    .hero-btns { flex-direction: column; align-items: center; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 300px; }
}
.about-soul {
    padding: 120px 5%;
    background-color: #cfdcf4; 
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.moving-blobs .blob-item {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 1;
    animation: drift 15s infinite alternate;
}
.blob-item:nth-child(1) { top: -100px; left: -100px; }
.blob-item:nth-child(2) { bottom: -100px; right: -100px; animation-delay: -5s; }

@keyframes drift {
    from { transform: translate(0,0) scale(1); }
    to { transform: translate(100px, 100px) scale(1.3); }
}

.about-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.about-visual {
    position: relative;
}

.image-mask {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 500px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; 
    overflow: hidden;
    animation: morphing 8s infinite ease-in-out;
    border: 10px solid white;
    box-shadow: 0 25px 50px rgba(0,0,0,0.05);
}

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

@keyframes morphing {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 50% 50% 30% 70% / 50% 70% 30% 50%; }
}
.mini-title {
    color: #0066ff;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.soul-heading {
    font-size: 3rem;
    color: #002244;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 900;
}

.soul-heading span {
    color: #0066ff;
    background: linear-gradient(90deg, #0066ff, #00d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.soul-text p {
    color: #556677;
    line-height: 2;
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease-out;
}

.soul-text p.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-soul {
    display: inline-block;
    padding: 18px 45px;
    background: #0066ff;
    color: white;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 900;
    box-shadow: 0 15px 35px rgba(0, 102, 255, 0.2);
    transition: 0.4s;
}

.btn-soul:hover {
    transform: scale(1.05) translateX(-10px);
    box-shadow: 0 20px 45px rgba(0, 102, 255, 0.4);
}
@media (max-width: 992px) {
    .about-layout { grid-template-columns: 1fr; text-align: center; gap: 50px; }
    .image-mask { margin: 0 auto; width: 300px; height: 350px; }
    .soul-heading { font-size: 2.2rem; }
}
.services-creative {
    padding: 100px 5%;
    background: #eae9e9; 
    position: relative;
    overflow: hidden;
}

.services-bg .light-spot {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
    animation: moveSpot 20s infinite alternate;
}
.light-spot:nth-child(1) { top: -100px; right: -100px; }
.light-spot:nth-child(2) { bottom: -100px; left: -100px; background: rgba(0, 210, 255, 0.05); }

@keyframes moveSpot { to { transform: translate(100px, 100px) scale(1.2); } }

.services-container {
    max-width: 1250px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.services-header {
    text-align: center;
    margin-bottom: 70px;
}

.mini-label { color: #0066ff; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; }

.main-title {
    font-size: 3.2rem;
    color: #002244;
    margin: 15px 0;
    font-weight: 900;
}

.gradient-blue {
    background: linear-gradient(90deg, #0066ff, #00d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc { color: #778899; font-size: 1.2rem; max-width: 600px; margin: 0 auto; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0f4f8;
    box-shadow: 0 15px 35px rgba(0, 102, 255, 0.03);
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: #0066ff;
    box-shadow: 0 30px 60px rgba(0, 102, 255, 0.1);
}
.card-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 102, 255, 0.05), transparent);
    opacity: 0;
    transition: 0.5s;
}
.service-card:hover .card-glow { opacity: 1; }

.icon-box {
    width: 80px;
    height: 80px;
    background: #f0f7ff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0066ff;
    margin-bottom: 25px;
    transition: 0.5s;
}

.service-card:hover .icon-box {
    background: #0066ff;
    color: white;
    transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 1.6rem;
    color: #002244;
    margin-bottom: 20px;
    font-weight: 800;
}

.service-card p {
    color: #556677;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.feat-list {
    list-style: none;
    text-align: right;
}

.feat-list li {
    font-size: 0.95rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feat-list li i {
    color: #00d2ff;
    font-size: 0.8rem;
}

.animate-card {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.8s ease-out;
}

.animate-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

@media (max-width: 768px) {
    .main-title { font-size: 2.2rem; }
    .service-card { padding: 35px 25px; }
}
.why-us {
    padding: 100px 5%;
    background: #dae7f4;
    position: relative;
}

.why-container {
    max-width: 1100px;
    margin: 0 auto;
}

.why-header {
    text-align: center;
    margin-bottom: 80px;
}

.why-title {
    font-size: 3rem;
    font-weight: 900;
    color: #002244;
}

.blue-glow {
    color: #0066ff;
    text-shadow: 0 0 20px rgba(0, 102, 255, 0.2);
}
.pyramid-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.pyramid-row {
    display: flex;
    gap: 30px;
    width: 100%;
    justify-content: center;
}

.pyramid-item {
    background: white;
    border-radius: 35px;
    padding: 40px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f4f8;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
}
.pyramid-item.top {
    width: 50%; 
    background: linear-gradient(145deg, #ffffff, #f0f7ff);
    border-bottom: 4px solid #0066ff;
}

.pyramid-item:not(.top) {
    width: 45%;
}

.pyramid-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 102, 255, 0.1);
    border-color: #0066ff;
}
.card-icon-hex {
    width: 70px;
    height: 70px;
    background: #0066ff;
    color: white;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation: rotateIcon 6s infinite linear;
}

.pyramid-item h3 {
    font-size: 1.5rem;
    color: #002244;
    margin-bottom: 15px;
    font-weight: 800;
}

.pyramid-item p {
    color: #667788;
    line-height: 1.8;
}

@keyframes rotateIcon {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}
@media (max-width: 992px) {
    .pyramid-row {
        flex-direction: column;
        align-items: center;
    }
    
    .pyramid-item.top, .pyramid-item:not(.top) {
        width: 100%;
        max-width: 450px;
    }

    .why-title {
        font-size: 2.2rem;
    }
}

.animate-up { opacity: 0; transform: translateY(50px); transition: 1s; }
.animate-right { opacity: 0; transform: translateX(50px); transition: 1s; }
.animate-left { opacity: 0; transform: translateX(-50px); transition: 1s; }

.visible { opacity: 1; transform: translate(0); }
.contact-final {
    padding: 100px 5%;
    background-color: #0a1125; 
    position: relative;
    overflow: hidden;
    color: white;
}
.dark-bg-animation {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.glowing-orb-contact {
    position: absolute;
    top: 20%; left: 30%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    animation: moveOrb 15s infinite alternate;
}

@keyframes moveOrb { to { transform: translate(100px, 50px); } }

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.contact-header { text-align: center; margin-bottom: 60px; }
.contact-title { font-size: 3rem; font-weight: 900; margin-bottom: 15px; }
.blue-text { color: #00d2ff; }

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}
.contact-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.4s;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #00d2ff;
    transform: translateY(-5px);
}

.card-tag {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(0, 210, 255, 0.1);
    color: #00d2ff;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-card h3 { font-size: 1.8rem; margin-bottom: 25px; font-weight: 800; }
.service-form { display: flex; flex-direction: column; gap: 20px; }

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group i {
    position: absolute;
    right: 20px;
    color: #00d2ff;
}

.input-group input, .input-group select, .input-group textarea {
    width: 100%;
    padding: 15px 50px 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: white;
    font-size: 1rem;
    transition: 0.3s;
}
.input-group select{
    color: rgb(195, 194, 194);

}

.input-group input:focus, .input-group select:focus {
    border-color: #00d2ff;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
}

.submit-btn {
    padding: 18px;
    background: linear-gradient(90deg, #0066ff, #00d2ff);
    color: white;
    border: none;
    border-radius: 15px;
    font-weight: 900;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.4s;
}

.submit-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.4);
}

.method-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    margin-bottom: 20px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.method-item.call:hover { background: rgba(0, 102, 255, 0.2); }
.method-item.whatsapp:hover { background: rgba(37, 211, 102, 0.2); }

.method-icon {
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: #00d2ff;
}

.method-text span { display: block; font-size: 0.8rem; opacity: 0.7; }
.method-text strong { font-size: 1.2rem; }

.location-info {
    margin-top: 30px;
    display: flex; align-items: center; gap: 10px;
    color: #888; font-size: 0.9rem;
}

@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-title { font-size: 2.2rem; }
}

.ultra-footer {
    background-color: #010409;  
    color: #ffffff;
    position: relative;
    padding-top: 0;
}
.footer-main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 5% 0;
}

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

.f-brand img { height: 60px; margin-bottom: 15px; }
.f-brand h2 { font-size: 1.8rem; font-weight: 900; }
.f-brand h2 span { color: #00d2ff; }
.f-brand p { color: #8b949e; line-height: 1.8; margin-top: 15px; }
.footer-block h3 { color: #00d2ff; margin-bottom: 25px; font-size: 1.2rem; }
.f-links { list-style: none; }
.f-links li { margin-bottom: 12px; }
.f-links a { color: #8b949e; text-decoration: none; transition: 0.3s; }
.f-links a:hover { color: #ffffff; padding-right: 10px; }
.f-contact p { color: #8b949e; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.f-contact i { color: #00d2ff; }
.huge-map-section {
    width: 100%;
    height: 350px;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 40px;
}

.huge-map-section iframe {
    width: 100%;
    height: 100%;
    filter: invert(90%) hue-rotate(180deg); 
}

.copy-bar {
    background: #000000;
    text-align: center;
    padding: 25px 5%;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.copy-bar p { color: #484f58; font-size: 0.9rem; margin-bottom: 8px; }
.copy-bar span { color: #00d2ff; font-weight: 800; }
.gmt-credit { font-weight: 700; }
.gmt-credit a { color: #ffffff; text-decoration: none; border-bottom: 1px solid #00d2ff; transition: 0.3s; }
.gmt-credit a:hover { color: #00d2ff; }
.floating-actions { position: fixed; bottom: 30px; left: 30px; display: flex; flex-direction: column; gap: 15px; z-index: 10000; }
.floating-btn { width: 55px; height: 55px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; box-shadow: 0 10px 20px rgba(0,0,0,0.5); transition: 0.3s; text-decoration: none; }
.whatsapp-btn { background: #25d366; }
.call-btn { background: #0066ff; }
.floating-btn:hover { transform: scale(1.1); }
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .f-contact p { justify-content: center; }
    .footer-main-content { padding-top: 20px; }
    .waves-container { height: 60px; margin-top: -60px; }
    .huge-map-section { height: 250px; }
}
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr !important; 
        gap: 20px; 
    }

    .service-card {
        padding: 30px 20px;
        text-align: center; 
    }

    .feat-list {
        display: inline-block;
        text-align: right;
    }
    
    .feat-list li {
        justify-content: flex-start;
    }
    .service-card h3 {
        font-size: 1.4rem;
    }
}
html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}
@media (max-width: 768px) {
    .hero {
        padding-top: 100px; 
        height: auto;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .hero h1 {
        font-size: 1.8rem !important; 
        line-height: 1.4;
        margin-bottom: 15px;
        padding: 0 10px;
    }
    .hero-p {
        font-size: 1rem !important;
        padding: 0 15px;
        margin-bottom: 25px;
    }
    .badge {
        font-size: 0.8rem !important;
        padding: 6px 15px !important;
        margin-bottom: 15px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        padding: 0 30px;
    }

    .btn-primary, .btn-secondary {
        width: 100% !important;
        padding: 12px !important;
        font-size: 0.95rem !important;
    }
    .logo-img {
        height: 45px !important;
    }
    .brand {
        font-size: 1.2rem !important;
    }
        .main-bg, .animated-bg, #particles-container {
        position: absolute;
        width: 100%;
        height: 100%;
        overflow: hidden; 
    }
}

.animate-reveal, .animate-up {
    transform: translateY(20px); 
}
.seo-keywords-section {
    padding: 60px 5%;
    background-color: #f0f7ff; 
    text-align: center;
    overflow: hidden; 
}

.keywords-title {
    font-size: 1.5rem;
    color: #002244;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
}

.keywords-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

.keyword-tag {
    background: #ffffff;
    color: #0066ff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(0, 102, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    white-space: nowrap; 
}
.keyword-tag:hover {
    background: #0066ff;
    color: #ffffff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.2);
    border-color: #0066ff;
}
@media (max-width: 768px) {
    .seo-keywords-section {
        padding: 40px 15px;
    }
    
    .keyword-tag {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .keywords-title {
        font-size: 1.2rem;
    }
}
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden; 
    background-color: #000; 
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(218, 217, 217, 0.85) 0%, 
        rgba(240, 247, 255, 0.75) 100%
    );
    z-index: 2;
}

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

.hero h1 {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    font-weight: 900;
    color: #002244;
    line-height: 1.4;
    margin: 20px 0;
}

.hero-subtext {
    font-size: 1.5rem;
    color: #0066ff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #00d2ff;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 120px;
    }
    .hero-bg-animated {
        animation: kenBurnsMobile 15s infinite alternate ease-in-out;
    }
    .hero h1 { font-size: 1.7rem; }
    .hero-subtext { font-size: 1.1rem; gap: 8px; }
    
    @keyframes kenBurnsMobile {
        0% { transform: scale(1.1); } 
        100% { transform: scale(1.25); }
    }
}
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #000;
}
.hero-bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/Gemini_Generated_Image_uie4h0uie4h0uie4.png'); 
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: brightness(0.9) contrast(1.1); 
    animation: fastZoomOut 6s infinite alternate cubic-bezier(0.45, 0.05, 0.55, 0.95);
    will-change: transform;
}

@keyframes fastZoomOut {
    0% {
        transform: scale(1.4); 
    }
    100% {
        transform: scale(1); 
    }
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(255, 255, 255, 0.4) 0%, 
        rgba(240, 247, 255, 0.3) 100%
    );
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 10;
    text-shadow: 0px 2px 15px rgba(255, 255, 255, 0.9), 0px 0px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .hero-bg-animated {
        animation: fastZoomOut 5s infinite alternate ease-in-out;
    }
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column; 
    justify-content: center;
}
.brand {
    font-size: 1.6rem; 
    font-weight: 900;
    color: #002244;
    line-height: 1;
    white-space: nowrap;
}

.brand .blue {
    color: #0066ff;
}
.brand-tagline {
    font-size: 0.75rem; 
    color: #667788;
    font-weight: 700;
    margin-top: 2px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .brand {
        font-size: 1.3rem;
    }
    .brand-tagline {
        font-size: 0.65rem;
    }
    .logo-img {
        height: 45px; 
    }
}