html, body {
    max-width: 100%;
    overflow-x: hidden; 
    position: relative;
}
:root {
    --primary-color: #0056b3;
    --secondary-color: #ff8c00;
    --text-dark: #222;
    --text-light: #fff;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --transition: all 0.4s ease;
}

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

body {
    background-color: #fff;
}

header {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.nav-container {
    width: 100%;
    max-width: 1500px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.3);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeInRight 1s ease;
}

.main-logo {
    width: 50px;
    height: auto;
    filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.1));
}

.brand-name {
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.brand-name .highlight {
    color: var(--text-dark);
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.desktop-nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
}

.desktop-nav ul li a:hover {
    color: var(--primary-color);
}

.call-btn-header {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.call-btn-header:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
}

.side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: var(--primary-color);
    z-index: 2000;
    transition: 0.5s ease;
    padding: 50px 20px;
}

.side-menu.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

.mobile-nav ul {
    list-style: none;
    margin-top: 50px;
}

.mobile-nav ul li {
    margin: 25px 0;
}

.mobile-nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}
.hero-section {
    height: 100vh;
    background: url('images/bg.png') no-repeat center center/cover; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 86, 179, 0.7), rgba(0, 0, 0, 0.4));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease;
}

.hero-content h2 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 25px;
    animation: fadeInUp 1.2s ease;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 35px;
    line-height: 1.8;
    animation: fadeInUp 1.4s ease;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1.6s ease;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    transform: scale(1.05);
    background: #e67e00;
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

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

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }
    
    .call-btn-header {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
    }
}
:root {
    --deep-bg: #021d44;
    --royal-blue: #034391;
    --gold: #ffb703;
    --ice-blue: #e0f2fe;
}

.about-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(-45deg, #021d44, #034391, #0077b6, #0056b3);
    background-size: 400% 400%;
    animation: gradientBG 12s ease infinite;
    color: white;
    overflow: hidden;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-image-side { flex: 1; min-width: 320px; position: relative; }

.image-frame {
    border: 10px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    overflow: visible;
    position: relative;
}

.main-about-img {
    width: 100%;
    border-radius: 30px;
    display: block;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.experience-badge-premium {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: var(--gold);
    color: var(--deep-bg);
    padding: 20px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(255, 183, 3, 0.4);
    animation: floatBadge 3s ease-in-out infinite;
}

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

.experience-badge-premium .num { display: block; font-size: 2rem; font-weight: 900; }
.experience-badge-premium .txt { font-size: 0.8rem; font-weight: bold; }

.about-text-side { flex: 1.3; min-width: 320px; }
.section-tag { color: var(--gold); font-weight: 700; letter-spacing: 1px; margin-bottom: 10px; display: block; }
.section-title { font-size: 2.8rem; font-weight: 900; line-height: 1.2; margin-bottom: 25px; }
.accent-color { color: var(--gold); }
.about-description { font-size: 1.15rem; line-height: 1.8; opacity: 0.9; margin-bottom: 35px; color: var(--ice-blue); }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; }

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    gap: 15px;
    transition: 0.4s;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    border-color: var(--gold);
}

.f-icon { font-size: 1.5rem; color: var(--gold); }
.f-text h4 { font-size: 1.1rem; margin-bottom: 5px; color: white; }
.f-text p { font-size: 0.85rem; opacity: 0.7; }

.btn-premium {
    display: inline-block;
    padding: 18px 45px;
    background: var(--gold);
    color: var(--deep-bg);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.1rem;
    transition: 0.3s;
}

.btn-premium:hover {
    background: white;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255,255,255,0.2);
}

[data-reveal="right"] { opacity: 0; transform: translateX(50px); transition: 1s ease; }
[data-reveal="left"] { opacity: 0; transform: translateX(-50px); transition: 1s ease; }
.revealed { opacity: 1; transform: translateX(0); }

@media (max-width: 768px) {
    .feature-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 2rem; }
    .about-wrapper { text-align: center; justify-content: center; }
    .feature-card { text-align: right; }
}
.services-section {
    padding: 100px 0;
    background: #f8fbff; 
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header .tag {
    background: rgba(3, 67, 145, 0.1);
    color: var(--royal-blue);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.section-header .main-title {
    font-size: 2.5rem;
    color: #021d44;
    margin-top: 15px;
    font-weight: 900;
}

.section-header .highlight {
    color: var(--royal-blue);
}

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

.service-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 40px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: all 0.5s ease;
    border: 1px solid rgba(0, 86, 179, 0.05);
}

.card-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(0, 119, 182, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.service-card:hover .card-glow {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(3, 67, 145, 0.15);
    border-color: var(--royal-blue);
}
.icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--royal-blue), #00b4d8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    margin-bottom: 25px;
    transition: 0.5s;
}

.service-card:hover .icon-box {
    transform: rotateY(180deg);
    background: var(--accent-gold);
    color: #021d44;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #021d44;
    margin-bottom: 15px;
    font-weight: 800;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.service-list {
    list-style: none;
    margin-bottom: 30px;
}

.service-list li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list li i {
    color: var(--royal-blue);
    font-size: 0.8rem;
}

.service-btn {
    display: block;
    text-align: center;
    padding: 15px;
    background: #f0f7ff;
    color: var(--royal-blue);
    text-decoration: none;
    border-radius: 15px;
    font-weight: 700;
    transition: 0.3s;
}

.service-card:hover .service-btn {
    background: var(--royal-blue);
    color: white;
}

.service-card.featured {
    border-top: 5px solid var(--royal-blue);
}

[data-reveal="up"] {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.revealed {
    opacity: 1;
    transform: translateY(0);
}
.gallery-section {
    padding: 100px 0;
    background: #ffffff; 
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px; 
    margin-top: 40px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    background: #000; 
}

.media-container {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.gallery-item img, 
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.6s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(3, 67, 145, 0.2);
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.1);
    opacity: 0.8;
}

.overlay-zoom {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: white;
    font-size: 2rem;
    transition: 0.4s;
    z-index: 2;
}

.gallery-item:hover .overlay-zoom {
    transform: translate(-50%, -50%) scale(1);
}
.play-button {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    background: var(--accent-gold);
    color: var(--deep-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 2;
    box-shadow: 0 0 20px rgba(255, 183, 3, 0.5);
}

.video-item:hover .play-button {
    background: white;
    transform: translate(-50%, -50%) scale(1.2);
}

.gallery-footer {
    text-align: center;
    margin-top: 60px;
}

.gallery-footer p {
    font-size: 1.3rem;
    color: #444;
    margin-bottom: 20px;
}

.btn-call-now {
    display: inline-block;
    padding: 15px 40px;
    background: var(--royal-blue);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-call-now:hover {
    background: var(--accent-gold);
    color: var(--deep-blue);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr; 
        padding: 0 10px;
    }
    .gallery-item {
        height: 250px;
    }
}
.why-us-section {
    padding: 100px 0;
    background: #e6e6e7;
    position: relative;
}

.why-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 30px;
}

.feature-box {
    background: #fff;
    padding: 50px 30px;
    border-radius: 40px;
    position: relative;
    border: 1px solid #eee;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 100%; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--royal-blue), #00b4d8);
    transition: all 0.5s ease;
    z-index: -1;
}

.feature-box:hover::before {
    top: 0;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(3, 67, 145, 0.15);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: #f0f7ff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--royal-blue);
    margin-bottom: 25px;
    transition: 0.4s;
}

.feature-box:hover .icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: scale(1.1) rotate(10deg);
}

.feature-box h3 {
    font-size: 1.4rem;
    color: var(--deep-blue);
    margin-bottom: 15px;
    font-weight: 800;
    transition: 0.4s;
}

.feature-box p {
    color: #666;
    line-height: 1.7;
    transition: 0.4s;
}

.feature-box:hover h3, 
.feature-box:hover p {
    color: white;
}

.box-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
    transition: 0.4s;
}

.feature-box:hover .box-number {
    color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .feature-box {
        text-align: center;
    }
    .icon-wrapper {
        margin: 0 auto 25px;
    }
}
.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #021d44 0%, #034391 35%, #00b4d8 70%, #00d4ff 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 183, 3, 0.15);
    filter: blur(100px);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.text-white { color: white !important; }
.tag-white { 
    background: rgba(255, 255, 255, 0.2); 
    color: white; 
    padding: 8px 20px; 
    border-radius: 50px; 
    font-weight: bold;
}

.contact-cards-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 50px; 
    margin-top: 60px;
    flex-wrap: wrap; 
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    padding: 50px 40px;
    width: 450px;
    max-width: 100%;
    text-align: center;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.glass-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-gold);
}

.card-icon-top {
    width: 80px;
    height: 80px;
    background: var(--accent-gold);
    color: var(--deep-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(255, 183, 3, 0.3);
}

.glass-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.glass-card p {
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-direct-order {
    display: inline-block;
    padding: 15px 40px;
    background: #25d366; 
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.1rem;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-direct-order:hover {
    background: white;
    color: #25d366;
    transform: scale(1.05);
}
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: right;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-number {
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.action-links {
    display: flex;
    gap: 15px;
}

.action-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.link-call { background: #0077b6; }
.link-wa { background: #25d366; }

.action-links a:hover {
    transform: scale(1.2) rotate(10deg);
    filter: brightness(1.2);
}

.location-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
    padding: 0 10px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.location-item i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .contact-cards-container {
        gap: 30px;
    }
    .glass-card {
        padding: 40px 20px;
    }
    .contact-item {
        flex-direction: column;
        gap: 15px;
    }
}
.main-footer {
    background: #011633; 
    color: white;
    padding: 80px 0 20px;
    border-top: 4px solid var(--accent-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr; 
    gap: 40px;
    margin-bottom: 50px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 60px;
    height: auto;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-gold);
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 25px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--accent-gold);
    color: #011633;
    transform: translateY(-5px);
}
.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-gold);
}
.links-col ul {
    list-style: none;
}

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

.links-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.links-col ul li a:hover {
    color: var(--accent-gold);
    padding-right: 10px;
}
.contact-info .info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #cbd5e1;
}

.info-item i {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-top: 5px;
}

.info-item a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

.info-item a:hover {
    color: white;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer-bottom span {
    color: white;
    font-weight: bold;
}

.developer a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.developer a:hover {
    text-decoration: underline;
}
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-logo, .footer-col h4::after, .social-links {
        justify-content: center;
    }
    .footer-col h4::after {
        right: 50%;
        transform: translateX(50%);
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999; 
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 25px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: floatAnimation 3s ease-in-out infinite;
}
.call-float {
    background: #0077b6;
}

.whatsapp-float {
    background: #25d366;
    animation-delay: 0.5s; 
}
.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
    color: white;
}

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

.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25d366;
    opacity: 0.5;
    z-index: -1;
    animation: pulseEffect 2s infinite;
}

@keyframes pulseEffect {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}
@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}
.desktop-nav ul li a.active-link {
    color: var(--royal-blue) !important;
    font-weight: 900;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 5px;
}
.mobile-nav ul li a.active-link {
    color: var(--accent-gold) !important;
    font-weight: 900;
    padding-right: 10px;
    border-right: 3px solid var(--accent-gold);
}
@media (max-width: 768px) {
    header {
        top: 0;
        padding: 5px;
    }
    
    .nav-container {
        width: 100%;
        border-radius: 0; 
        top: 0;
    }

    .hero-content h1 {
        font-size: 1.8rem; 
        margin-top: 50px; 
    }

    .hero-content h2 {
        font-size: 1.1rem;
    }

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

    .btn {
        width: 100%; 
        padding: 12px;
    }
    .side-menu {
        width: 100%; 
    }
}
header {
    position: fixed;
    top: 10px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    width: 100%;
}

.nav-container {
    width: 95%; 
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 8px 15px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.main-logo {
    width: 35px; 
    height: auto;
}

.brand-name {
    font-size: 0.9rem; 
    white-space: nowrap; 
}
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    header {
        top: 0;
        padding: 5px 0;
    }

    .nav-container {
        width: 98%;
        padding: 8px 12px;
        border-radius: 25px; 
    }

    .brand-name {
        font-size: 0.85rem;
    }
    .hero-section {
        padding-top: 100px; 
        height: auto;
        min-height: 100vh;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero-content h2 {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    .services-grid {
        grid-template-columns: 1fr !important; 
        gap: 20px;
        padding: 0 10px;
    }

    .service-card {
        width: 100%;
        padding: 30px 20px;
        margin-bottom: 10px;
    }
    .about-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .about-image-side, .about-text-side {
        width: 100%;
        min-width: 100%;
    }
    .why-grid-v2 {
        grid-template-columns: 1fr !important;
    }
    .contact-cards-container {
        flex-direction: column;
        align-items: center;
    }

    .glass-card {
        width: 100%;
    }
}