/* Global Styles */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; scroll-behavior: smooth;}
body { background-color: #0d0d0d; color: #ffffff; overflow-x: hidden; }

/* SPA Toggle Classes */
.page-section { display: none; }
.page-section.active { display: block; animation: fadeIn 0.4s ease-in-out; }

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

/* Header */
header {
    position: fixed; top: 20px; left: 50%; transform: translateX(-50%); width: 90%;
    background: rgba(25, 25, 25, 0.8); backdrop-filter: blur(10px); display: flex;
    justify-content: space-between; align-items: center; padding: 15px 30px;
    border-radius: 50px; z-index: 1000; border: 1px solid rgba(255, 255, 255, 0.1);
}
.logo { font-size: 24px; font-weight: 700; color: #fff; cursor: pointer; transition: 0.3s; }
.logo:hover { color: #00e5ff; }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { color: #ccc; text-decoration: none; font-weight: 400; cursor: pointer; transition: 0.3s; }
.nav-links a:hover { color: #fff; }
.contact-btn {
    background: #fff; color: #000; padding: 10px 20px; border-radius: 30px; 
    text-decoration: none; font-weight: 600; display: flex; align-items: center; gap: 8px; transition: 0.3s;
}
.contact-btn:hover { background: #00e5ff; color: #000; }

/* Buttons */
.btn-primary { background: #00e5ff; color: #000; padding: 15px 30px; border: none; border-radius: 30px; font-weight: 600; font-size: 1rem; cursor: pointer; transition: 0.3s; }
.btn-primary:hover { background: #fff; }
.btn-secondary { background: transparent; color: #fff; padding: 15px 30px; border: 1px solid #fff; border-radius: 30px; font-weight: 600; font-size: 1rem; cursor: pointer; transition: 0.3s; }
.btn-secondary:hover { background: #333; }

/* Hero Section */
.hero { height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 20px; }
.hero h1 { font-size: 4rem; max-width: 900px; line-height: 1.2; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; max-width: 700px; color: #a0a0a0; margin-bottom: 40px; }
.hero-btns { display: flex; gap: 20px; }

/* Video Section */
.video-section { width: 100%; height: 100vh; background: #1a1a1a; display: flex; justify-content: center; align-items: center; }
.video-section video { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }

/* Short About */
.short-about { padding: 100px 20px; text-align: center; background: #111; }
.short-about h2 { font-size: 3rem; color: #00e5ff; margin-bottom: 20px; }
.short-about p { font-size: 1.2rem; color: #ccc; max-width: 800px; margin: 0 auto 30px auto; line-height: 1.8; }

/* Services Split Layout (Used on Home Page) */
.services-split { display: flex; padding: 100px 5%; min-height: 100vh; gap: 50px; }
.services-left { flex: 1; position: sticky; top: 120px; height: fit-content; }
.services-left h2 { font-size: 3.5rem; margin-bottom: 20px; color: #00e5ff; }
.services-left p { font-size: 1.2rem; color: #ccc; line-height: 1.6; }
.services-right { flex: 1; display: flex; flex-direction: column; gap: 30px; }
.service-card { background: #151515; border: 1px solid #333; padding: 40px; border-radius: 20px; transition: 0.3s; }
.service-card:hover { transform: translateY(-10px); border-color: #00e5ff; background: #1a1a1a;}
.service-card h3 { font-size: 1.8rem; margin-bottom: 15px; color:#fff; }
.service-card p { color: #a0a0a0; font-size: 1.1rem;}

/* Horizontal Scroll Products (Used on Home Page) */
.horizontal-products { padding: 100px 0; background: #111; }
.horizontal-products h2 { text-align: center; font-size: 3.5rem; color: #fff; margin-bottom: 40px;}
.scroll-container { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 30px; padding: 20px 5%; scrollbar-width: none; }
.scroll-container::-webkit-scrollbar { display: none; }
.h-card { min-width: 80vw; height: 70vh; background: linear-gradient(135deg, #1a1a1a, #0d0d0d); border-radius: 20px; scroll-snap-align: center; display: flex; justify-content: center; align-items: center; font-size: 3rem; font-weight: bold; border: 1px solid #333; transition: 0.3s; }
.h-card:hover { border-color: #00e5ff; }

/* Testimonials */
.testimonials { padding: 100px 20px; text-align: center; }
.testimonials h2 { font-size: 2.5rem; margin-bottom: 40px; }
.test-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.test-card { background: #151515; padding: 40px; width: 350px; border-radius: 15px; font-style: italic; color: #ccc; }

/* =========================================
   FULL DETAILED PAGES STYLES
========================================= */
.page-hero { text-align: center; padding: 180px 20px 80px 20px; }
.page-hero h1 { font-size: 4.5rem; color: #00e5ff; margin-bottom: 20px; }
.page-hero p { font-size: 1.5rem; color: #a0a0a0; max-width: 800px; margin: auto; }

.page-content { max-width: 1100px; margin: auto; padding: 0 20px 100px 20px; }
.content-box { margin-bottom: 40px; background: #151515; padding: 50px; border-radius: 20px; border-left: 5px solid #00e5ff; }
.content-box h2 { font-size: 2.5rem; margin-bottom: 20px; }
.content-box p { font-size: 1.1rem; line-height: 1.8; color: #ccc; }

/* Grid layout for Full Services Page */
.full-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

/* Big Cards for Full Products Page */
.product-full-card { background: #111; border: 1px solid #333; padding: 50px; border-radius: 20px; margin-bottom: 30px; transition: 0.3s; }
.product-full-card:hover { border-color: #00e5ff; }
.product-full-card h2 { font-size: 2.5rem; margin-bottom: 15px; color: #fff; }
.product-full-card p { font-size: 1.2rem; color: #a0a0a0; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .services-split { flex-direction: column; }
    .services-left { position: relative; top: 0; margin-bottom: 30px; }
    .page-hero h1 { font-size: 3rem; }
    .content-box, .product-full-card { padding: 30px; }
    .h-card { min-width: 90vw; height: 50vh; font-size: 2rem;}
}

/* =========================================
   PORTFOLIO STYLES
========================================= */

/* Portfolio Preview (On Home Page) */
.portfolio-preview { padding: 100px 20px; background: #0d0d0d; }
.portfolio-preview h2 { text-align: center; font-size: 3.5rem; color: #00e5ff; }
.port-grid-preview { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1000px; margin: auto; }
.port-card { height: 300px; background: #151515; border: 1px solid #333; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #fff; transition: 0.3s; }
.port-card:hover { border-color: #00e5ff; transform: translateY(-5px); }

/* Full Portfolio Page Grid */
.port-grid-full { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; }
.port-card-large { height: 400px; background: #111; border: 1px solid #333; border-radius: 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; transition: 0.3s; padding: 20px;}
.port-card-large:hover { border-color: #00e5ff; background: #1a1a1a; }
.port-card-large h3 { font-size: 2rem; color: #fff; margin-bottom: 10px; }
.port-card-large p { color: #a0a0a0; font-size: 1.2rem; }


/* =========================================
   FOOTER STYLES
========================================= */
.footer {
    background-color: #111; /* Dark background matching image */
    padding: 80px 5% 20px;
    border-top: 1px solid #222;
    color: #a0a0a0;
    margin-top: 50px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr; /* Matches the 4-column layout of your image */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-col p {
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}
.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    transition: 0.3s;
    border: 1px solid #333;
}
.social-links a:hover {
    background-color: #00e5ff;
    color: #000;
    border-color: #00e5ff;
}

/* Links & Policies */
.links-col ul, .contact-col ul {
    list-style: none;
}
.links-col ul li {
    margin-bottom: 15px;
}
.links-col ul li a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}
.links-col ul li a:hover {
    color: #00e5ff;
}

/* Contact Info */
.contact-col ul li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}
.contact-col ul li span {
    font-size: 1.2rem;
}
.contact-col ul li p, .contact-col ul li a {
    color: #a0a0a0;
    font-size: 0.95rem;
    text-decoration: none;
    line-height: 1.6;
    transition: 0.3s;
}
.contact-col ul li a:hover {
    color: #00e5ff;
}

/* Newsletter Section */
.newsletter-form {
    display: flex;
    background: #000;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}
.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
}
.newsletter-form button {
    background: #fff;
    color: #000;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.newsletter-form button:hover {
    background: #00e5ff;
}
.newsletter-text {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 50px;
    border-top: 1px solid #222;
    font-size: 0.9rem;
}

/* Adjusting Responsive Section for Footer */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr; /* 2 columns on tablets */
    }
}
@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr; /* 1 column on mobile phones */
    }
    .footer-col {
        margin-bottom: 30px;
    }
}

/* =========================================
   LARGE PREMIUM ABOUT US PAGE
========================================= */
.about-hero-large {
    text-align: center;
    padding: 200px 20px 100px 20px;
    background: radial-gradient(circle at top, #1a1a1a, #0d0d0d);
}
.about-hero-large h1 {
    font-size: 5rem;
    color: #00e5ff;
    margin-bottom: 25px;
    letter-spacing: -1px;
}
.about-hero-large p {
    font-size: 1.5rem;
    color: #a0a0a0;
    max-width: 900px;
    margin: auto;
    line-height: 1.6;
}

.about-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 5% 100px 5%;
}

/* Mission & Stats */
.about-mission-stats {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 120px;
    background: #111;
    padding: 60px;
    border-radius: 30px;
    border: 1px solid #222;
}
.mission-text {
    flex: 1.5;
}
.mission-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}
.mission-text p {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.8;
}
.stats-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.stat-box {
    background: #1a1a1a;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #333;
}
.stat-box h3 {
    font-size: 2.5rem;
    color: #00e5ff;
    margin-bottom: 10px;
}
.stat-box p {
    color: #888;
    font-size: 1rem;
    font-weight: 600;
}

/* Photo Gallery */
.about-gallery-section {
    margin-bottom: 150px;
}
.about-gallery-section h2 {
    font-size: 3.5rem;
    color: #fff;
    text-align: center;
}
.gallery-subtext {
    text-align: center;
    color: #a0a0a0;
    font-size: 1.2rem;
    margin-bottom: 50px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.gallery-item {
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    background: #222;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.8;
}
.gallery-item:hover img {
    transform: scale(1.1);
    opacity: 1;
}

/* Meet The Founder (Full Screen Card) */
.founder-section {
    margin-bottom: 50px;
}
.founder-card {
    display: flex;
    background: #111;
    border: 1px solid #333;
    border-radius: 40px;
    overflow: hidden;
    min-height: 75vh; /* Makes it almost full screen */
}
.founder-img {
    flex: 1;
    background: #222;
}
.founder-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.founder-info {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.founder-role {
    color: #00e5ff;
    letter-spacing: 2px;
    font-size: 1rem;
    margin-bottom: 10px;
}
.founder-name {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 40px;
}
.founder-words p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #ccc;
    font-style: italic;
    border-left: 4px solid #333;
    padding-left: 20px;
}

/* Mobile Responsiveness Updates */
@media (max-width: 900px) {
    .about-hero-large h1 { font-size: 3.5rem; }
    .about-mission-stats { flex-direction: column; padding: 40px 20px; }
    .stats-grid { grid-template-columns: 1fr; width: 100%; }
    .founder-card { flex-direction: column; }
    .founder-img { height: 400px; }
    .founder-info { padding: 40px 20px; }
    .founder-name { font-size: 3rem; }
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px; /* Logo aur Name ke beech perfect space */
}

.brand-logo {
    width: 35px; /* Size bada kiya taaki clear dikhe */
    height: auto;
    display: block;
}

.brand-name {
    font-size: 24px; /* Text bada kiya */
    font-weight: 800; /* Extra bold for startup vibe */
    color: #ffffff;
    letter-spacing: -0.5px;
    font-family: 'Inter', sans-serif; /* Modern font use karna */
}

/* =========================================
   CONTACT POPUP MODAL STYLES
========================================= */
.contact-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px); /* Piche ka background blur karega */
    z-index: 9999;
    display: none; /* Default hidden */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-modal-overlay.show {
    display: flex;
    opacity: 1;
}

.contact-modal {
    background: #111;
    width: 90%;
    max-width: 1000px;
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    position: relative;
    border: 1px solid #333;
    transform: translateY(50px);
    transition: transform 0.4s ease;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.contact-modal-overlay.show .contact-modal {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px; right: 25px;
    background: transparent;
    border: none;
    color: #888;
    font-size: 2rem;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}
.close-modal:hover { color: #fff; transform: scale(1.1); }

/* Left Side - Text */
.modal-left {
    flex: 1;
    background: #151515;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.modal-logo-box {
    background: #000;
    color: #fff;
    width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; font-weight: bold;
    border-radius: 10px;
    border: 1px solid #333;
    margin-bottom: 40px;
}
.modal-left h2 {
    font-size: 4rem;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
}
.modal-left .text-gray { color: #555; }
.modal-left p {
    font-size: 1.2rem;
    color: #888;
    line-height: 1.6;
}

/* Right Side - Form */
.modal-right {
    flex: 1;
    padding: 60px;
    background: #0d0d0d;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    background: #151515;
    border: 1px solid #333;
    color: #fff;
    padding: 18px;
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
}
.contact-form input:focus, .contact-form textarea:focus {
    border-color: #00e5ff;
    background: #1a1a1a;
}
.contact-form textarea {
    resize: vertical;
}
.submit-btn {
    background: #fff;
    color: #000;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.submit-btn:hover {
    background: #00e5ff;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .contact-modal { flex-direction: column; max-height: 90vh; overflow-y: auto; }
    .modal-left, .modal-right { padding: 40px 20px; }
    .modal-left h2 { font-size: 2.5rem; }
}

/* =========================================
   3D ANIMATED SCROLL SECTION STYLES
========================================= */
.animated-intro {
    padding: 150px 5%;
    background: #0d0d0d;
    overflow: hidden; /* Taaki bahar udte hue elements page ka scroll kharab na karein */
    position: relative;
}

.intro-container {
    display: flex;
    max-width: 1200px;
    margin: auto;
    align-items: center;
    position: relative;
}

/* Left Side Styling */
.intro-left {
    flex: 1;
    z-index: 10;
}
.greeting { color: #00e5ff; font-size: 1.5rem; font-weight: 600; margin-bottom: 10px; }
.massive-text { font-size: 4.5rem; color: #fff; line-height: 1.1; margin-bottom: 20px; font-weight: 700; }
.sub-text { color: #a0a0a0; font-size: 1.2rem; max-width: 500px; margin-bottom: 30px; line-height: 1.6; }
.mt-20 { margin-top: 20px; }

/* Floating Review Card */
.floating-review {
    background: rgba(25, 25, 25, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid #333;
    padding: 20px;
    border-radius: 20px;
    max-width: 350px;
    margin-top: 50px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.floating-review p { color: #ccc; font-style: italic; margin-bottom: 15px; }
.reviewer { display: flex; gap: 15px; align-items: center; }
.r-avatar { width: 40px; height: 40px; background: #00e5ff; color: #000; display: flex; justify-content: center; align-items: center; border-radius: 50%; font-weight: bold; }
.reviewer h4 { color: #fff; font-size: 1rem; }
.reviewer p { color: #888; font-size: 0.8rem; margin: 0; font-style: normal;}

/* Right Side (3D Character & Icons) */
.intro-right {
    flex: 1;
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-3d-char {
    width: 450px; /* Apni image ke hisaab se adjust kar lena */
    z-index: 5;
    filter: drop-shadow(0px 20px 30px rgba(0, 229, 255, 0.2));
}

/* Floating Icons Absolute Positioning */
.float-icon {
    position: absolute;
    width: 80px;
    z-index: 6;
    filter: drop-shadow(0px 10px 15px rgba(0,0,0,0.6));
    /* Continuous floating animation after they fly in */
    animation: continuousFloat 4s ease-in-out infinite alternate;
}
.icon-1 { top: 50px; left: 0; animation-delay: 0s;}
.icon-2 { top: 100px; right: 0; width: 60px; animation-delay: 1s;}
.icon-3 { bottom: 80px; left: 50px; width: 70px; animation-delay: 2s;}
.icon-bolt { top: -20px; right: -50px; width: 150px; z-index: 4; animation-delay: 0.5s; }

/* Continuous Float Animation (Up and Down) */
@keyframes continuousFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(5deg); }
}


/* =========================================
   ANIMATION INITIAL STATES (Hidden)
========================================= */
.slide-left { opacity: 0; transform: translateX(-100px); }
.pop-up { opacity: 0; transform: translateY(150px) scale(0.5); }
.slide-down-right { opacity: 0; transform: translate(-100px, -100px) rotate(-45deg); }
.slide-down-left { opacity: 0; transform: translate(100px, -100px) rotate(45deg); }
.slide-up-right { opacity: 0; transform: translate(-100px, 100px) rotate(-20deg); }
.slide-right { opacity: 0; transform: translateX(200px) scale(0.5); }
.fade-up { opacity: 0; transform: translateY(50px); }

/* =========================================
   ANIMATION ACTIVE STATES (Triggered by JS)
========================================= */
.animate-on-scroll .slide-left { opacity: 1; transform: translateX(0); transition: all 1s cubic-bezier(0.25, 1, 0.5, 1) 0.2s; }
.animate-on-scroll .pop-up { opacity: 1; transform: translateY(0) scale(1); transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s; }
.animate-on-scroll .slide-down-right { opacity: 1; transform: translate(0, 0) rotate(0deg); transition: all 1s cubic-bezier(0.25, 1, 0.5, 1) 0.6s; }
.animate-on-scroll .slide-down-left { opacity: 1; transform: translate(0, 0) rotate(0deg); transition: all 1s cubic-bezier(0.25, 1, 0.5, 1) 0.8s; }
.animate-on-scroll .slide-up-right { opacity: 1; transform: translate(0, 0) rotate(0deg); transition: all 1s cubic-bezier(0.25, 1, 0.5, 1) 1s; }
.animate-on-scroll .slide-right { opacity: 1; transform: translateX(0) scale(1); transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s; }
.animate-on-scroll .fade-up { opacity: 1; transform: translateY(0); transition: all 1s ease 1.2s; }

/* Responsive */
@media (max-width: 900px) {
    .intro-container { flex-direction: column; text-align: center; }
    .intro-left { display: flex; flex-direction: column; align-items: center; }
    .massive-text { font-size: 3rem; }
    .main-3d-char { width: 300px; margin-top: 50px; }
    .icon-bolt { display: none; /* Hide huge elements on mobile */ }
}

/* Force Visibility CSS */
.main-3d-char, .float-icon {
    display: block !important;
    opacity: 1 !important; /* Image ko visible karega */
    visibility: visible !important;
    transform: none !important; /* Animation hata dega taaki troubleshoot kar saken */
    transition: none !important;
}



.btn-primary:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
}