/* ===================================
   Car Rental & Services Website
   Modern Color Scheme & Animations
   =================================== */

:root {
    --primary-color: #FF6B35;
    --secondary-color: #004E89;
    --accent-color: #F7B801;
    --dark-bg: #1A1A2E;
    --light-bg: #F5F5F5;
    --text-dark: #2C3E50;
    --text-light: #ECF0F1;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.2);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ===================================
   NAVIGATION BAR
   =================================== */

.navbar {
    background-color: rgba(14, 13, 13,0.1);
    color: var(--text-light);
    padding: 10px !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(11, 10, 10, 0.1);
    transition: all 0.3s ease;
    padding: 0.5rem 2rem;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand i {
    color: var(--accent-color);
    margin-right: 10px;
}

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


.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover {
    color: #fff !important;
}

/* ===================================
   HERO SECTION
   =================================== */

   .heros-section {
    position: relative;
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.heros-section::before {            
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   
}

.hero-section {
    position: relative;
    height: 100vh;
    background: linear-gradient(135deg, #04045b 0%, #2e67de 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    animation: wave 15s ease-in-out infinite;
    z-index: 2;
}

@keyframes wave {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-50px); }
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    z-index: 3;
    margin-top: 180px;
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease;
}

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

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-hero {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    margin: 10px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border: none;
    color: white;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary-custom:hover {
    background-color: #ff5722;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

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

.btn-outline-custom:hover {
    background-color: white;
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}


.btn-primary {
            background: var(--primary-red);
            transition: transform 0.2s ease, box-shadow 0.3s ease;
        }

        .btn-primary:hover {
            box-shadow: 0 0 25px var(--primary-red);
        }

        .progress-line { height: 2px; background: #333; position: relative; width: 100%; }
        .progress-fill { height: 100%; background: var(--primary-red); width: 0; transition: width 1.5s ease-in-out; }

/* ===================================
   SECTIONS
   =================================== */

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 3rem;
    font-family: monospace;
    font-weight: 700;
    color: #c24e4e;
    margin-bottom: 15px;
    animation: fadeIn 1s ease;
}

.section-title p {
    font-size: 1.2rem;
    color: #446a88;
    max-width: 600px;
    margin: 0 auto;
}

.section-title::after {
    content: '';
    width: 100px;
    height: 4px;
    background: var(--gradient-1);
    display: block;
    margin: 20px auto 0;
    border-radius: 2px;
}

/* ===================================
   FEATURES / SERVICES
   =================================== */

.feature-card {
    background: aliceblue;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    height: 100%;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature-card p {
    color: #000000;
    line-height: 1.8;
}

/* ===================================
   ABOUT SECTION
   =================================== */

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

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
    animation: float 6s ease-in-out infinite;
}

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

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    color: #7F8C8D;
    line-height: 1.8;
    margin-bottom: 20px;
}

.stats-container {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    color: #7F8C8D;
    font-weight: 500;
}

/* ===================================
   GALLERY
   =================================== */

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
    cursor: pointer;
    height: 300px;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: white;
}

/* ===================================
   CONTACT FORM
   =================================== */

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-control {
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    padding: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    background: var(--gradient-1);
    border: none;
    border-radius: 10px;
    color: white;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* ===================================
   FOOTER
   =================================== */

footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p,
.footer-section a {
    color: #B0B0B0;
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

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

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

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

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #7F8C8D;
}

/* ===================================
   ANIMATIONS
   =================================== */

.fade-in {
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-in-left {
    animation: slideInLeft 1s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 1s ease;
}

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

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .about-content {
        flex-direction: column;
    }

    .stats-container {
        flex-direction: column;
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        padding: 30px 20px;
    }

    .nav-link {
        margin: 10px 0;
    }
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.show {
    display: flex;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}




  /* Page Loader Styles */
        #pageLoader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #38216b;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        #pageLoader.hide {
            opacity: 0;
            pointer-events: none;
        }

        /* Saturn Loader Styles */
        body .scene_saturn__ring .layer_part, body .scene_saturn__ring .small_part, body .scene_saturn__ring .small, body .scene_saturn__ring, body .scene_saturn__sparks .spark, body .scene_saturn__sparks, body .scene_saturn__face .face_clip .mouth, body .scene_saturn__face, body .scene_saturn__shadowRing, body .scene_saturn__shadow, body .scene_saturn, body .scene_titan, body .scene_titanShadow, body .scene, body .scene_saturn__face .face_clip .eye, body .scene_titan .eyes .eye {
            position: absolute;
            left: 0;
            right: 0;
            margin: auto;
            top: 50%;
            transform: translateY(-50%);
        }

        body .scene_saturn__face .face_clip .eye, body .scene_titan .eyes .eye {
            width: 6px;
            height: 6px;
            background: #53487a;
            border-radius: 10px;
            bottom: 34px;
            animation: blink 1s 0s infinite linear;
        }
        body .scene_saturn__face .face_clip .eye--left.eye, body .scene_titan .eyes .eye--left.eye {
            left: -80px;
        }
        body .scene_saturn__face .face_clip .eye--right.eye, body .scene_titan .eyes .eye--right.eye {
            left: 80px;
        }

        body .scene {
            perspective: 2600px;
            width: 500px;
            height: 500px;
        }
        body .scene_titanShadow {
            width: 84px;
            height: 21px;
            border-radius: 100%;
            transform-style: preserve-3d;
            box-shadow: 0px 200px 20px #291863;
            animation: titan 6s infinite ease;
            bottom: 400px;
        }
        body .scene .t_wrap {
            animation: titanWrap 6s infinite ease;
        }
        body .scene_titan {
            width: 84px;
            height: 84px;
            border-radius: 42px;
            background: #a5c6ff;
            transform-style: preserve-3d;
            box-shadow: 0px 0px 0px 4px rgba(169, 187, 236, 0.3882352941) inset, -30px -20px 50px #637bff inset;
            animation: titan 6s infinite ease;
            top: -220px;
        }
        body .scene_titan .eyes {
            animation: titan_eye 6s infinite ease;
        }
        body .scene_titan .eyes .eye.eye--left {
            left: -34px;
            bottom: -120px;
        }
        body .scene_titan .eyes .eye.eye--right {
            left: 34px;
            bottom: -120px;
        }
        body .scene_saturn {
            width: 152px;
            height: 152px;
            border-radius: 76px;
            background: white;
            transform-style: preserve-3d;
            box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 0.3294117647) inset, -30px -20px 50px #a5adff inset;
            animation: saturn 0.6s infinite linear;
        }
        body .scene_saturn__shadow {
            width: 152px;
            height: 38px;
            border-radius: 100%;
            box-shadow: 0 150px 40px #291863;
        }
        body .scene_saturn__shadowRing {
            width: 330px;
            height: 19px;
            border-radius: 100%;
            box-shadow: 0 150px 40px #291863;
            left: -100px;
            animation: ringShadow 0.6s infinite linear;
        }
        body .scene_saturn__face {
            width: 152px;
            height: 152px;
            border-radius: 76px;
            overflow: hidden;
        }
        body .scene_saturn__face .face_clip {
            position: relative;
            top: 95px;
            left: 14px;
            transform: rotate(8deg);
            animation: face 3.6s infinite linear, faceTilt 0.9s infinite linear;
        }
        body .scene_saturn__face .face_clip .mouth {
            width: 15px;
            height: 10px;
            top: -5px;
            background: #ea0e61;
            border-bottom-right-radius: 10px;
            border-bottom-left-radius: 10px;
            box-shadow: 0 6px 0px #53487a inset;
        }
        body .scene_saturn__sparks {
            transform: translateZ(-100px);
        }
        body .scene_saturn__sparks .spark {
            width: 20px;
            height: 20px;
            border-radius: 10px;
            background: #00f7ff;
        }
        body .scene_saturn__sparks .spark:nth-of-type(odd) {
            background: white;
        }

        @keyframes spark--1 { from { transform: scale(1); } to { left: -115px; top: 95px; transform: scale(0); } }
        body .scene_saturn__sparks .spark:nth-of-type(1) { animation: spark--1 1s 0.1s infinite; }
        @keyframes spark--2 { from { transform: scale(1); } to { left: 108px; top: -64px; transform: scale(0); } }
        body .scene_saturn__sparks .spark:nth-of-type(2) { animation: spark--2 1s 0.2s infinite; }
        @keyframes spark--3 { from { transform: scale(1); } to { left: 193px; top: 104px; transform: scale(0); } }
        body .scene_saturn__sparks .spark:nth-of-type(3) { animation: spark--3 1s 0.3s infinite; }
        @keyframes spark--4 { from { transform: scale(1); } to { left: 98px; top: -88px; transform: scale(0); } }
        body .scene_saturn__sparks .spark:nth-of-type(4) { animation: spark--4 1s 0.4s infinite; }
        @keyframes spark--5 { from { transform: scale(1); } to { left: -9px; top: 131px; transform: scale(0); } }
        body .scene_saturn__sparks .spark:nth-of-type(5) { animation: spark--5 1s 0.5s infinite; }
        @keyframes spark--6 { from { transform: scale(1); } to { left: -85px; top: 186px; transform: scale(0); } }
        body .scene_saturn__sparks .spark:nth-of-type(6) { animation: spark--6 1s 0.6s infinite; }
        @keyframes spark--7 { from { transform: scale(1); } to { left: 48px; top: -20px; transform: scale(0); } }
        body .scene_saturn__sparks .spark:nth-of-type(7) { animation: spark--7 1s 0.7s infinite; }
        @keyframes spark--8 { from { transform: scale(1); } to { left: -160px; top: -132px; transform: scale(0); } }
        body .scene_saturn__sparks .spark:nth-of-type(8) { animation: spark--8 1s 0.8s infinite; }
        @keyframes spark--9 { from { transform: scale(1); } to { left: 116px; top: -9px; transform: scale(0); } }
        body .scene_saturn__sparks .spark:nth-of-type(9) { animation: spark--9 1s 0.9s infinite; }
        @keyframes spark--10 { from { transform: scale(1); } to { left: -179px; top: -76px; transform: scale(0); } }
        body .scene_saturn__sparks .spark:nth-of-type(10) { animation: spark--10 1s 1s infinite; }
        @keyframes spark--11 { from { transform: scale(1); } to { left: 199px; top: -63px; transform: scale(0); } }
        body .scene_saturn__sparks .spark:nth-of-type(11) { animation: spark--11 1s 1.1s infinite; }
        @keyframes spark--12 { from { transform: scale(1); } to { left: 191px; top: -57px; transform: scale(0); } }
        body .scene_saturn__sparks .spark:nth-of-type(12) { animation: spark--12 1s 1.2s infinite; }
        @keyframes spark--13 { from { transform: scale(1); } to { left: -173px; top: -130px; transform: scale(0); } }
        body .scene_saturn__sparks .spark:nth-of-type(13) { animation: spark--13 1s 1.3s infinite; }
        @keyframes spark--14 { from { transform: scale(1); } to { left: 47px; top: -116px; transform: scale(0); } }
        body .scene_saturn__sparks .spark:nth-of-type(14) { animation: spark--14 1s 1.4s infinite; }
        @keyframes spark--15 { from { transform: scale(1); } to { left: -164px; top: 47px; transform: scale(0); } }
        body .scene_saturn__sparks .spark:nth-of-type(15) { animation: spark--15 1s 1.5s infinite; }
        @keyframes spark--16 { from { transform: scale(1); } to { left: -122px; top: -186px; transform: scale(0); } }
        body .scene_saturn__sparks .spark:nth-of-type(16) { animation: spark--16 1s 1.6s infinite; }
        @keyframes spark--17 { from { transform: scale(1); } to { left: -154px; top: -149px; transform: scale(0); } }
        body .scene_saturn__sparks .spark:nth-of-type(17) { animation: spark--17 1s 1.7s infinite; }
        @keyframes spark--18 { from { transform: scale(1); } to { left: 68px; top: -82px; transform: scale(0); } }
        body .scene_saturn__sparks .spark:nth-of-type(18) { animation: spark--18 1s 1.8s infinite; }
        @keyframes spark--19 { from { transform: scale(1); } to { left: -176px; top: -169px; transform: scale(0); } }
        body .scene_saturn__sparks .spark:nth-of-type(19) { animation: spark--19 1s 1.9s infinite; }
        @keyframes spark--20 { from { transform: scale(1); } to { left: -151px; top: -137px; transform: scale(0); } }
        body .scene_saturn__sparks .spark:nth-of-type(20) { animation: spark--20 1s 2s infinite; }

        body .scene_saturn__ring {
            transform: rotateX(84deg) rotateY(8deg);
            transform-origin: 50% 165px;
            animation: ring 0.6s infinite linear;
            top: -80px;
        }
        body .scene_saturn__ring .small {
            animation: spin 0.6s infinite linear;
            transform-origin: 50% 195px;
            top: -50px;
        }
        body .scene_saturn__ring .small_part {
            width: 30px;
            background: #08f7ff;
            transform-origin: 50% 195px;
        }
        body .scene_saturn__ring .small_part:nth-of-type(1) { transform: rotate(2deg); height: 9.75px; }
        body .scene_saturn__ring .small_part:nth-of-type(2) { transform: rotate(4deg); height: 9.5px; }
        body .scene_saturn__ring .small_part:nth-of-type(3) { transform: rotate(6deg); height: 9.25px; }
        body .scene_saturn__ring .small_part:nth-of-type(4) { transform: rotate(8deg); height: 9px; }
        body .scene_saturn__ring .small_part:nth-of-type(5) { transform: rotate(10deg); height: 8.75px; }
        body .scene_saturn__ring .small_part:nth-of-type(6) { transform: rotate(12deg); height: 8.5px; }
        body .scene_saturn__ring .small_part:nth-of-type(7) { transform: rotate(14deg); height: 8.25px; }
        body .scene_saturn__ring .small_part:nth-of-type(8) { transform: rotate(16deg); height: 8px; }
        body .scene_saturn__ring .small_part:nth-of-type(9) { transform: rotate(18deg); height: 7.75px; }
        body .scene_saturn__ring .small_part:nth-of-type(10) { transform: rotate(20deg); height: 7.5px; }

        body .scene_saturn__ring .layer {
            position: relative;
        }
        body .scene_saturn__ring .layer:nth-of-type(1) .layer_part { background: #08ffff; }
        body .scene_saturn__ring .layer:nth-of-type(2) .layer_part { background: #08ffff; }
        body .scene_saturn__ring .layer:nth-of-type(2) { top: 6px; }
        body .scene_saturn__ring .layer:nth-of-type(3) { top: -6px; }
        body .scene_saturn__ring .layer:nth-of-type(4) { top: -18px; }
        body .scene_saturn__ring .layer_part {
            width: 20px;
            height: 50px;
            background: #21ced2;
            transform-origin: 50% 165px;
        }
        body .scene_saturn__ring .layer_part:nth-of-type(1) { transform: translateY(-50%) rotate(7.2deg); }
        body .scene_saturn__ring .layer_part:nth-of-type(2) { transform: translateY(-50%) rotate(14.4deg); }
        body .scene_saturn__ring .layer_part:nth-of-type(3) { transform: translateY(-50%) rotate(21.6deg); }
        body .scene_saturn__ring .layer_part:nth-of-type(4) { transform: translateY(-50%) rotate(28.8deg); }
        body .scene_saturn__ring .layer_part:nth-of-type(5) { transform: translateY(-50%) rotate(36deg); }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        @keyframes saturn {
            0% { left: 0; }
            25% { left: -40px; }
            50% { left: 0px; }
            75% { left: 40px; }
        }
        @keyframes ring {
            0% { left: 0; transform: rotateX(84deg) rotateY(8deg); }
            25% { left: 70px; }
            50% { left: 0px; transform: rotateX(80deg) rotateY(-8deg); }
            75% { left: -70px; }
            100% { left: 0px; transform: rotateX(84deg) rotateY(8deg); }
        }
        @keyframes ringShadow {
            0% { left: -100px; }
            25% { left: -40px; }
            50% { left: -100px; }
            75% { left: -140px; }
            100% { left: -100px; }
        }
        @keyframes face {
            from { left: -200px; }
            to { left: 200px; }
        }
        @keyframes faceTilt {
            0% { transform: rotate(12deg); }
            50% { transform: rotate(-12deg); }
            100% { transform: rotate(12deg); }
        }
        @keyframes blink {
            0% { height: 6px; }
            40% { height: 6px; }
            50% { height: 0px; }
            60% { height: 6px; }
            100% { height: 6px; }
        }
        @keyframes titanWrap {
            0% { transform: translateY(370px); }
            33% { transform: translateY(370px); }
            38% { transform: translateY(400px); }
            43% { transform: translateY(370px); }
            73% { transform: translateY(370px); }
            78% { transform: translateY(400px); }
            83% { transform: translateY(370px); }
            100% { transform: translateY(370px); }
        }
        @keyframes titan {
            0% { left: -400px; }
            33% { left: -400px; }
            43% { left: 400px; }
            73% { left: 400px; }
            83% { left: -400px; }
            100% { left: -400px; }
        }
        @keyframes titan_eye {
            0% { transform: rotate(-10deg); }
            33% { transform: rotate(-10deg); }
            43% { transform: rotate(10deg); }
            73% { transform: rotate(10deg); }
            83% { transform: rotate(-10deg); }
            100% { transform: rotate(-10deg); }
        }

        /* Main content styles */
        .main-content {
            padding: 40px;
            text-align: center;
        }
        .main-content h1 {
            color: #667eea;
            margin-bottom: 20px;
        }







/* Floating Buttons Container */
.floating-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn {
    background-color: #25d366;
}

.phone-btn {
    background-color: #007bff;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Adjust Scroll to Top button so it doesn't overlap */
#scrollToTop {
    bottom: 170px !important; /* Moves it above the floating buttons */
}












        /* section: Hero Section
        /* ===================================
   ENHANCED ANIMATIONS & GRAPHICS
   Add this to the END of your style.css
   =================================== */

/* Animated Background Particles */
.particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    animation: float-particle 20s infinite ease-in-out;
}

.particle:nth-child(2n) {
    background: rgba(118, 75, 162, 0.3);
    animation-duration: 25s;
}

.particle:nth-child(3n) {
    background: rgba(255, 107, 53, 0.3);
    animation-duration: 30s;
}

@keyframes float-particle {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(100vw, -100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Glowing Cards Effect */
.feature-card {
    position: relative;
    overflow: visible !important;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #667eea);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-size: 300% 300%;
    animation: gradient-shift 3s ease infinite;
}

.feature-card:hover::after {
    opacity: 0.7;
}

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

/* Pulse Animation for Icons */
.feature-icon {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    50% {
        box-shadow: 0 0 20px 10px rgba(102, 126, 234, 0);
    }
}

/* Floating Elements */
.float-element {
    animation: float-smooth 6s ease-in-out infinite;
}

@keyframes float-smooth {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(2deg);
    }
    50% {
        transform: translateY(-40px) rotate(0deg);
    }
    75% {
        transform: translateY(-20px) rotate(-2deg);
    }
}

/* Text Gradient Animation */
.gradient-text {
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-gradient 3s linear infinite;
}

@keyframes text-gradient {
    to {
        background-position: 200% center;
    }
}

/* Shiny Button Effect */
.btn-hero {
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-hero:hover::before {
    left: 100%;
}

/* Morphing Background Shapes */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    animation: morph 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    bottom: -250px;
    right: -250px;
    animation-delay: 5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes morph {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        border-radius: 50%;
    }
    33% {
        transform: translate(100px, -100px) scale(1.2);
        border-radius: 40% 60% 50% 50%;
    }
    66% {
        transform: translate(-100px, 100px) scale(0.8);
        border-radius: 60% 40% 60% 40%;
    }
}

/* Tilt Effect on Hover */
.tilt-card {
    transition: transform 0.3s ease;
}

.tilt-card:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
}

/* Ripple Effect */
.ripple-effect {
    position: relative;
    overflow: hidden;
}

.ripple-effect::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple-effect:active::after {
    width: 300px;
    height: 300px;
}

/* Shimmer Effect for Stats */
.stat-number {
    position: relative;
    display: inline-block;
}

.stat-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* Parallax Scroll Effect */
.parallax-element {
    transition: transform 0.3s ease-out;
}

/* Glitch Effect for Titles */
.glitch {
    position: relative;
    color: #004E89;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch::before {
    color: #ff00ff;
    animation: glitch-1 2s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.glitch::after {
    color: #00ffff;
    animation: glitch-2 2s infinite;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(2px, 2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(-2px, 2px); }
}

/* Neon Glow Effect */
.neon-glow {
    text-shadow: 
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px #667eea,
        0 0 40px #667eea,
        0 0 80px #667eea;
    animation: neon-flicker 1.5s infinite alternate;
}

@keyframes neon-flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow: 
            0 0 5px #fff,
            0 0 10px #fff,
            0 0 20px #667eea,
            0 0 40px #667eea,
            0 0 80px #667eea;
    }
    20%, 24%, 55% {
        text-shadow: none;
    }
}

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

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

/* 3D Card Flip */
.flip-card {
    perspective: 1000px;
}

.flip-card-inner {
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    backface-visibility: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
}

/* Image Zoom on Hover */
.zoom-hover {
    overflow: hidden;
    position: relative;
}

.zoom-hover img {
    transition: transform 0.5s ease;
}

.zoom-hover:hover img {
    transform: scale(1.2) rotate(5deg);
}

/* Loading Bar Animation */
.progress-bar-animated {
    position: relative;
    overflow: hidden;
}

.progress-bar-animated::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading-bar 1.5s infinite;
}

@keyframes loading-bar {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Typewriter Effect */
.typewriter {
    overflow: hidden;
    border-right: 2px solid #667eea;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #667eea; }
}

/* Pulsing Circle */
.pulse-circle {
    position: relative;
}

.pulse-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    transform: translate(-50%, -50%);
    animation: pulse-ring 2s infinite;
}

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

/* Sliding Underline */
.slide-underline {
    position: relative;
    display: inline-block;
}

.slide-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.slide-underline:hover::after {
    width: 100%;
}

/* Rotate on Hover */
.rotate-hover {
    transition: transform 0.3s ease;
}

.rotate-hover:hover {
    transform: rotate(360deg);
}

/* Scale Pulse */
.scale-pulse {
    animation: scale-pulse-anim 2s infinite;
}

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

/* Staggered Fade In */
.stagger-fade-in > * {
    opacity: 0;
    animation: fade-in-up 0.6s forwards;
}

.stagger-fade-in > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-fade-in > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-fade-in > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-fade-in > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-fade-in > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-fade-in > *:nth-child(6) { animation-delay: 0.6s; }

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}